Home
last modified time | relevance | path

Searched refs:c (Results 1 – 11 of 11) sorted by relevance

/wcsmbs/
A Dtst-btowc.c91 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()
110 for (c = 0; c < 256; ++c) in do_test()
111 result |= ok_test (c, c); in do_test()
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()
160 for (c = 0; c < 161; ++c) in do_test()
161 result |= ok_test (c, c); in do_test()
[all …]
A Dwmemset.c25 __wmemset (wchar_t *s, wchar_t c, size_t n) in __wmemset() argument
31 wp[0] = c; in __wmemset()
32 wp[1] = c; in __wmemset()
33 wp[2] = c; in __wmemset()
34 wp[3] = c; in __wmemset()
41 wp[0] = c; in __wmemset()
45 wp[1] = c; in __wmemset()
48 wp[2] = c; in __wmemset()
A Dwmemchr.c25 __wmemchr (const wchar_t *s, wchar_t c, size_t n) in __wmemchr() argument
30 if (s[0] == c) in __wmemchr()
32 if (s[1] == c) in __wmemchr()
34 if (s[2] == c) in __wmemchr()
36 if (s[3] == c) in __wmemchr()
44 if (*s == c) in __wmemchr()
51 if (*s == c) in __wmemchr()
57 if (*s == c) in __wmemchr()
A Dbtowc.c31 __btowc (int c) in __btowc() argument
37 if (c < SCHAR_MIN || c > UCHAR_MAX || c == EOF) in __btowc()
42 if (isascii (c)) in __btowc()
43 return (wint_t) c; in __btowc()
57 return DL_CALL_FCT (btowc_fct, (fcts->towc, (unsigned char) c)); in __btowc()
81 inbuf[0] = c; in __btowc()
A DMakefile79 CFLAGS-wcwidth.c += -I../wctype
80 CFLAGS-wcswidth.c += -I../wctype
83 CFLAGS-wcstol.c += $(strtox-CFLAGS)
84 CFLAGS-wcstoul.c += $(strtox-CFLAGS)
85 CFLAGS-wcstoll.c += $(strtox-CFLAGS)
86 CFLAGS-wcstoull.c += $(strtox-CFLAGS)
87 CFLAGS-wcstod.c += $(strtox-CFLAGS)
88 CFLAGS-wcstold.c += $(strtox-CFLAGS)
90 CFLAGS-wcstof.c += $(strtox-CFLAGS)
91 CFLAGS-wcstol_l.c += $(strtox-CFLAGS)
[all …]
A Dwctob.c29 wctob (wint_t c) in wctob() argument
39 if (c == WEOF) in wctob()
44 if (c >= L'\0' && c <= L'\x7f') in wctob()
45 return (int) c; in wctob()
62 inbuf[0] = c; in wctob()
A Dwcscpy.c40 wchar_t c = *src++; \ in __wcscpy()
41 *wcp++ = c; \ in __wcscpy()
42 c != L'\0'; \ in __wcscpy()
A Dwcsstr.c34 wchar_t b, c; in wcsstr() local
40 if ((c = *++haystack) == L'\0') in wcsstr()
42 while (c != b); in wcsstr()
44 if (!(c = *++needle)) in wcsstr()
69 if (a != c) in wcsstr()
A Dtst-c16-surrogate.c33 for (char32_t c = 0x10000; c <= 0x10ffff; c += 0x123) in do_test() local
35 char32_t c_pos = c - 0x10000; in do_test()
39 (unsigned int) c, (unsigned int) c_hi, (unsigned int) c_lo); in do_test()
48 TEST_COMPARE (wc, (wchar_t) c); in do_test()
A Dtst-mbrtowc.c177 int c; in check_ascii() local
182 for (c = 0; c <= 127; ++c) in check_ascii()
190 buf[i] = c + i; in check_ascii()
197 printf ("%s: '\\x%x': encoding error\n", locname, c); in check_ascii()
205 else if (n == 0 && c != 0) in check_ascii()
207 printf ("%s: '\\x%x': 0 returned\n", locname, c); in check_ascii()
210 else if (n != 0 && c == 0) in check_ascii()
212 printf ("%s: '\\x%x': not 0 returned\n", locname, c); in check_ascii()
215 else if (c != 0 && n != 1) in check_ascii()
220 else if (wc != (wchar_t) c) in check_ascii()
[all …]
A Dwcsatcliff.c4 #define L(c) L##c argument

Completed in 13 milliseconds