Lines Matching defs:src
22 rte_mov16(uint8_t *dst, const uint8_t *src)
24 memcpy(dst, src, 16);
28 rte_mov32(uint8_t *dst, const uint8_t *src)
30 memcpy(dst, src, 32);
34 rte_mov48(uint8_t *dst, const uint8_t *src)
36 memcpy(dst, src, 48);
40 rte_mov64(uint8_t *dst, const uint8_t *src)
42 memcpy(dst, src, 64);
46 rte_mov128(uint8_t *dst, const uint8_t *src)
48 memcpy(dst, src, 128);
52 rte_mov256(uint8_t *dst, const uint8_t *src)
54 memcpy(dst, src, 256);