Lines Matching refs:s2
29 int test_memcmp(const void *s1, const void *s2, size_t n);
32 static void test_one(char *s1, char *s2, unsigned long max_offset, in test_one() argument
42 y = memcmp(s1+offset, s2+offset, size); in test_one()
43 x = test_memcmp(s1+offset, s2+offset, size); in test_one()
54 printf("%02x ", s2[i]); in test_one()
61 offset, size, s1, s2, vmx_count); in test_one()
72 char *s2; in testcase() local
85 s2 = memalign(128, alloc_size); in testcase()
86 if (!s2) { in testcase()
97 char *rand_s2 = s2; in testcase()
123 char *rand_s2 = s2; in testcase()
135 s2[change] = random() & 0xff; in testcase()