Lines Matching refs:s1
9 int test_memcmp(const void *s1, const void *s2, size_t n);
12 static void test_one(char *s1, char *s2) in test_one() argument
21 y = memcmp(s1+offset, s2+offset, size); in test_one()
22 x = test_memcmp(s1+offset, s2+offset, size); in test_one()
29 printf("%02x ", s1[i]); in test_one()
43 char *s1; in testcase() local
47 s1 = memalign(128, SIZE); in testcase()
48 if (!s1) { in testcase()
66 s1[j] = random(); in testcase()
68 memcpy(s2, s1, SIZE); in testcase()
74 test_one(s1, s2); in testcase()
84 s1[j] = random(); in testcase()
86 memcpy(s2, s1, SIZE); in testcase()
94 test_one(s1, s2); in testcase()