HomeSort by: relevance | last modified time | path
    Searched refs:mbstowcs (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/external/gpl3/gcc/dist/gcc/
intl.cc 100 size_t nwcs = mbstowcs (0, msgstr, 0);
103 mbstowcs (wmsgstr, msgstr, nwcs + 1);
  /src/external/gpl3/gcc.old/dist/gcc/
intl.cc 100 size_t nwcs = mbstowcs (0, msgstr, 0);
103 mbstowcs (wmsgstr, msgstr, nwcs + 1);
  /src/usr.bin/grep/
fastgrep.c 302 if ((size = mbstowcs(NULL, (const char *)data, 0)) ==
308 if (mbstowcs(wdata, (const char *)data, size) ==
312 if ((size = mbstowcs(NULL, (const char *)pat, 0)) ==
318 if (mbstowcs(wpat, (const char *)pat, size) == ((size_t) - 1))
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
stdlib.h 71 using std::mbstowcs;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/
stdlib.h 68 using std::mbstowcs;
  /src/external/cddl/osnet/lib/libzfs/
mkdirp.c 177 if ((wcPathlen = mbstowcs(wcPath, mbPath, mbPathlen)) == (size_t)-1) {
  /src/lib/libedit/
chartype.c 130 len = mbstowcs(NULL, s, (size_t)0);
138 mbstowcs(conv->wbuff, s, conv->wsize);
165 if (!argv[i]) { /* don't pass null pointers to mbstowcs */
170 bytes = (ssize_t)mbstowcs(p, argv[i], bufspace);
vi.c 1055 len = mbstowcs(el->el_line.buffer, cp, len);
  /src/lib/libcurses/EXAMPLES/
ex1.c 87 if (( wslen = mbstowcs( &cc.vals[ 0 ], mbs, strlen( mbs ))) < 0 ) {
88 fprintf( stderr, "mbstowcs() failed\n" );
104 if (( wslen = mbstowcs( wstr, mbstr, strlen( mbstr ))) < 0 ) {
105 fprintf( stderr, "mbstowcs() failed\n" );
  /src/lib/libc/locale/
multibyte_c90.c 84 mbstowcs(wchar_t *pwcs, const char *s, size_t n) function
  /src/tests/lib/libc/locale/
t_mbstowcs.c 210 REQUIRE_ERRNO((ssize_t)mbstowcs(wbuf, t->data, SIZE-1), -1);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/
stdlib.d 218 size_t mbstowcs(scope wchar_t* pwcs, scope const char* s, size_t n);
  /src/include/
stdlib.h 132 size_t mbstowcs(wchar_t * __restrict, const char * __restrict, size_t);
  /src/lib/libedit/TEST/
wtc1.c 91 mbstowcs(dir, &dp->d_name[mblen],
  /src/external/bsd/openldap/dist/libraries/libldap/
utf-8-conv.c 52 #include <ac/stdlib.h> /* For wctomb, wcstombs, mbtowc, mbstowcs */
468 f_mbstowcs = mbstowcs; /* use the local ANSI C function */
  /src/usr.bin/xlint/llib/
llib-lstdc 213 size_t (mbstowcs)(wchar_t *pwcs, const char *s, size_t n);
llib-lposix 192 size_t (mbstowcs)(wchar_t *pwcs, const char *s, size_t n);
  /src/external/bsd/libarchive/dist/libarchive/test/
test_acl_text.c 242 assert(mbstowcs(ws, s, len) != (size_t)-1);
  /src/external/gpl3/gdb.old/dist/gdb/
windows-nat.c 2222 len = mbstowcs (NULL, env[i], 0) + 1;
2224 mbstowcs (copy, env[i], len);
2607 len = mbstowcs (NULL, allargs, 0) + 1;
2611 mbstowcs (cygallargs, allargs, len);
2618 len = sizeof (L" -c 'exec '") + mbstowcs (NULL, exec_file, 0)
2619 + mbstowcs (NULL, allargs, 0) + 2;
  /src/external/gpl3/gdb/dist/gdb/
windows-nat.c 2225 len = mbstowcs (NULL, env[i], 0) + 1;
2227 mbstowcs (copy, env[i], len);
2610 len = mbstowcs (NULL, allargs, 0) + 1;
2614 mbstowcs (cygallargs, allargs, len);
2621 len = sizeof (L" -c 'exec '") + mbstowcs (NULL, exec_file, 0)
2622 + mbstowcs (NULL, allargs, 0) + 2;
  /src/external/bsd/unbound/dist/pythonmod/
pythonmod.c 341 mbstowcs(progname, "unbound", 8);
  /src/external/bsd/libarchive/dist/libarchive/
archive_windows.c 131 ll = mbstowcs(wn, name, ll);
  /src/external/gpl3/gcc/dist/gcc/cp/
cfns.h 583 {"mbstowcs", 89},
  /src/external/gpl3/gcc.old/dist/gcc/cp/
cfns.h 583 {"mbstowcs", 89},
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/
msan_test.cc 2066 TEST(MemorySanitizer, mbstowcs) {
2069 int res = mbstowcs(buff, x, 2);
2074 res = mbstowcs(buff, x, 10);

Completed in 79 milliseconds

1 2