Home
last modified time | relevance | path

Searched refs:res (Results 1 – 20 of 20) sorted by relevance

/string/
A Dtst-strxfrm2.c10 int res = 0; in do_test() local
19 res = 1; in do_test()
26 res = 1; in do_test()
34 res = 1; in do_test()
40 res = 1; in do_test()
46 res = 1; in do_test()
56 res = 1; in do_test()
63 res = 1; in do_test()
71 res = 1; in do_test()
77 res = 1; in do_test()
[all …]
A Dtst-svc2.c32 int res = 0; in do_test() local
38 res = 1; in do_test()
43 res = 1; in do_test()
49 res = 1; in do_test()
55 res = 1; in do_test()
58 return res; in do_test()
A Dmemcmp.c307 op_t res; in MEMCMP() local
319 res = a0 - b0; in MEMCMP()
320 if (res != 0) in MEMCMP()
321 return res; in MEMCMP()
330 res = memcmp_common_alignment (srcp1, srcp2, len / OPSIZ); in MEMCMP()
332 res = memcmp_not_common_alignment (srcp1, srcp2, len / OPSIZ); in MEMCMP()
333 if (res != 0) in MEMCMP()
334 return res; in MEMCMP()
349 res = a0 - b0; in MEMCMP()
350 if (res != 0) in MEMCMP()
[all …]
A Dstrerror_l.c29 const char *res = _(str); in translate() local
31 return res; in translate()
A Dtest-memmem.c63 void *res; in check_result() local
65 res = CALL (impl, haystack, haystack_len, needle, needle_len); in check_result()
66 if (res != expected) in check_result()
69 res, expected); in check_result()
A Dtest-memset.c123 CHAR *res = CALL (impl, s, c, n); in do_one_test()
124 if (res != s in do_one_test()
154 UCHAR *p, *res; in do_random_tests() local
200 res = (UCHAR *) CALL (impl, (CHAR *) p + align, c, len); in do_random_tests()
201 if (res != p + align) in do_random_tests()
204 n, impl->name, align, c, len, res, p + align); in do_random_tests()
A Dtest-rawmemchr.c43 char *res = CALL (impl, s, c); in do_one_test() local
44 if (res != exp_res) in do_one_test()
47 res, exp_res); in do_one_test()
A Dtest-memcpy.c28 unsigned char *res; in do_random_tests() local
94 res = (unsigned char *)CALL (impl, (char *)(p2 + align2), in do_random_tests()
96 if (res != MEMCPY_RESULT (p2 + align2, len)) in do_random_tests()
101 n, impl->name, align1, align2, len, res, in do_random_tests()
A Dtest-memmove.c76 char *res; in do_one_test() local
78 res = CALL (impl, dst, src, len); in do_one_test()
79 if (res != dst) in do_one_test()
82 res, dst); in do_one_test()
129 unsigned char *res; in do_random_tests() local
188 res = (unsigned char *) CALL (impl, in do_random_tests()
191 if (res != p2 + align2) in do_random_tests()
194 n, impl->name, align1, align2, len, res, p2 + align2); in do_random_tests()
A Dtest-strcpy.c128 UCHAR *res; in do_random_tests() local
167 res = (UCHAR *) CALL (impl, (CHAR *) (p2 + align2), (CHAR *) (p1 + align1)); in do_random_tests()
168 if (res != STRCPY_RESULT (p2 + align2, len)) in do_random_tests()
171 n, impl->name, align1, align2, len, res, in do_random_tests()
A Dtest-memrchr.c42 char *res = CALL (impl, s, c, n); in do_one_test() local
43 if (res != exp_res) in do_one_test()
46 res, exp_res); in do_one_test()
A Dtest-memccpy.c116 unsigned char *res, c; in do_random_tests() local
184 res = CALL (impl, p2 + align2, p1 + align1, (char) c, size); in do_random_tests()
190 if (res != expect) in do_random_tests()
193 n, impl->name, align1, align2, len, size, c, res, expect); in do_random_tests()
A Dtest-strcat.c131 UCHAR *res; in do_random_tests() local
186 res = (UCHAR *) CALL (impl, (CHAR *) (p2 + align2), in do_random_tests()
188 if (res != p2 + align2) in do_random_tests()
191 n, impl->name, align1, align2, len1, len2, res, in do_random_tests()
A Dtest-strrchr.c65 CHAR *res = CALL (impl, s, c); in do_one_test() local
66 if (res != exp_res) in do_one_test()
69 res, exp_res); in do_one_test()
A Dtest-strncpy.c197 UCHAR *res; in do_random_tests() local
267 res = (UCHAR *) CALL (impl, (CHAR *) (p2 + align2), in do_random_tests()
269 if (res != STRNCPY_RESULT (p2 + align2, len, size)) in do_random_tests()
272 n, impl->name, align1, align2, len, res, in do_random_tests()
A Dtest-strspn.c95 size_t res = CALL (impl, s, acc); in do_one_test() local
96 if (res != exp_res) in do_one_test()
99 (void *) res, (void *) exp_res); in do_one_test()
A Dtest-memchr.c64 CHAR *res = CALL (impl, s, c, n); in do_one_test() local
65 if (res != exp_res) in do_one_test()
68 impl->name, s, c, n, res, exp_res); in do_one_test()
A Dtest-strchr.c104 CHAR *res = CALL (impl, s, c); in check_result() local
105 if (res != exp_res) in check_result()
108 c, res, exp_res); in check_result()
A Dtest-strpbrk.c96 RES_TYPE res = CALL (impl, s, rej); in do_one_test() local
97 if (res != exp_res) in do_one_test()
100 (void *) res, (void *) exp_res); in do_one_test()
A Dtest-strncat.c203 UCHAR *res; in do_random_tests() local
260 res = (UCHAR *) CALL (impl, (CHAR *) (p2 + align2), in do_random_tests()
262 if (res != p2 + align2) in do_random_tests()
267 res, p2 + align2); in do_random_tests()

Completed in 32 milliseconds