Lines Matching refs:c
78 simple_STRCHR (const CHAR *s, int c) in simple_STRCHR() argument
80 for (; *s != (CHAR) c; ++s) in simple_STRCHR()
87 stupid_STRCHR (const CHAR *s, int c) in stupid_STRCHR() argument
92 if (*s++ == (CHAR) c) in stupid_STRCHR()
102 check_result (impl_t *impl, const CHAR *s, int c, const CHAR *exp_res) in check_result() argument
104 CHAR *res = CALL (impl, s, c); in check_result()
108 c, res, exp_res); in check_result()
116 do_one_test (impl_t *impl, const CHAR *s, int c, const CHAR *exp_res) in do_one_test() argument
118 if (check_result (impl, s, c, exp_res) < 0) in do_one_test()
233 CHAR c = L ('\xfe'); in check1() local
234 CHAR *exp_result = stupid_STRCHR (s, c); in check1()
237 check_result (impl, s, c, exp_result); in check1()