HomeSort by: relevance | last modified time | path
    Searched refs:mbtowc (Results 1 - 10 of 10) sorted by relevancy

  /src/tests/lib/libc/locale/
t_mbtowc.c 118 ret = mbtowc(NULL, NULL, 0);
124 ret = mbtowc(NULL, illegal, strlen(illegal));
125 (void)printf("mbtowc() returned: %zd\n", ret);
136 mbtowc(NULL, NULL, 0);
144 ret = mbtowc(NULL, legal, strlen(legal));
145 (void)printf("mbtowc() returned: %zd\n", ret);
156 atf_tc_set_md_var(tc, "descr", "A basic test of mbtowc(3)");
173 atf_tc_set_md_var(tc, "descr", "Test mbtowc(3) sign conversion");
185 ret = mbtowc(&wc, "\xe4", 1);
186 (void)printf("mbtowc(): %d\n", ret)
    [all...]
  /src/lib/libc/locale/
multibyte_c90.c 103 mbtowc(wchar_t *pw, const char *s, size_t n) function in typeref:typename:int
  /src/include/
stdlib.h 134 int mbtowc(wchar_t * __restrict, const char * __restrict, size_t);
  /src/bin/sh/
histedit.c 236 mbtowc(&wc, NULL, 1); /* state init */
239 if (mbtowc(&wc, lit_ch, strlen(lit_ch)) <= 0)
  /src/usr.bin/xlint/llib/
llib-lstdc 211 int (mbtowc)(wchar_t *PWC, const char *s, size_t n);
llib-lposix 193 int (mbtowc)(wchar_t *pwc, const char *s, size_t n);
  /src/usr.bin/xlint/lint1/
lex.c 1008 (void)mbtowc(NULL, NULL, 0);
1009 if (mbtowc(&wc, wbuf, nmax) < 0)
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_interceptors.cc 540 INTERCEPTOR(int, mbtowc, wchar_t *dest, const char *src, SIZE_T n) {
542 int res = REAL(mbtowc)(dest, src, n);
1648 INTERCEPT_FUNCTION(mbtowc);
  /src/lib/libc/citrus/
citrus_ctype_template.h 86 * mbtowc
711 psenc = &_CEI_TO_STATE(_TO_CEI(cl), mbtowc);
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/
msan_test.cc 2137 TEST(MemorySanitizer, mbtowc) {
2140 int res = mbtowc(&wx, x, 3);

Completed in 23 milliseconds