Lines Matching refs:off_dst
47 test_single_memcpy(unsigned int off_src, unsigned int off_dst, size_t size) in test_single_memcpy() argument
61 ret = rte_memcpy(dest + off_dst, src + off_src, size); in test_single_memcpy()
62 if (ret != (dest + off_dst)) { in test_single_memcpy()
64 ret, dest + off_dst); in test_single_memcpy()
68 for (i = 0; i < off_dst; i++) { in test_single_memcpy()
72 (unsigned)size, off_src, off_dst); in test_single_memcpy()
79 if (dest[i + off_dst] != src[i + off_src]) { in test_single_memcpy()
82 (unsigned)size, off_src, off_dst, i); in test_single_memcpy()
89 if (dest[i + off_dst] != 0) { in test_single_memcpy()
92 (unsigned)size, off_src, off_dst); in test_single_memcpy()
105 unsigned int off_src, off_dst, i; in func_test() local
109 for (off_dst = 0; off_dst < ALIGNMENT_UNIT; off_dst++) { in func_test()
111 ret = test_single_memcpy(off_src, off_dst, in func_test()