Lines Matching refs:s1
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()
50 printf("%02x ", s1[i]); in test_one()
61 offset, size, s1, s2, vmx_count); in test_one()
71 char *s1; in testcase() local
79 s1 = memalign(128, alloc_size); in testcase()
80 if (!s1) { in testcase()
96 char *rand_s1 = s1; in testcase()
100 s1[j] = random(); in testcase()
122 char *rand_s1 = s1; in testcase()
126 s1[j] = random(); in testcase()