Lines Matching refs:c
29 ok_test (int c, wint_t expwc) in ok_test() argument
31 wint_t wc = btowc (c); in ok_test()
36 current_locale, c, wc, expwc); in ok_test()
45 fail_test (int c) in fail_test() argument
47 wint_t wc = btowc (c); in fail_test()
52 current_locale, c, wc); in fail_test()
89 int c; in do_test() local
91 for (c = 0; c < 128; ++c) in do_test()
92 result |= ok_test (c, c); in do_test()
94 for (c = 128; c < 256; ++c) in do_test()
95 result |= fail_test (c); in do_test()
108 int c; in do_test() local
110 for (c = 0; c < 256; ++c) in do_test()
111 result |= ok_test (c, c); in do_test()
124 int c; in do_test() local
126 for (c = 0; c < 128; ++c) in do_test()
127 result |= ok_test (c, c); in do_test()
129 for (c = 128; c < 256; ++c) in do_test()
130 result |= fail_test (c); in do_test()
158 int c; in do_test() local
160 for (c = 0; c < 161; ++c) in do_test()
161 result |= ok_test (c, c); in do_test()
163 for (c = 161; c < 256; ++c) in do_test()
164 result |= ok_test (c, upper_half[c - 161]); in do_test()