HomeSort by relevance Sort by last modified time
    Searched refs:pwc (Results 1 - 12 of 12) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/locale/
mbtowc.c 36 mbtowc(wchar_t * __restrict pwc, const char * __restrict s, size_t n)
46 rval = mbrtowc(pwc, s, n, &mbs);
  /external/libcxx/include/
__bsd_locale_defaults.h 28 #define __libcpp_mbrtowc_l(pwc, s, n, ps, l) mbrtowc_l(pwc, s, n, ps, l)
29 #define __libcpp_mbtowc_l(pwc, pmb, max, l) mbtowc_l(pwc, pmb, max, l)
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
multibyte_sb.c 93 wchar_t *pwc,
100 /* pwc may be NULL */
108 if (pwc)
109 *pwc = (wchar_t) *s;
115 wchar_t *pwc,
121 /* pwc may be NULL */
124 return (int)mbrtowc(pwc, s, n, NULL);
multibyte_Utf8.c 518 In this case, the values of the parameters pwc and n are ignored.
524 corresponding wide character and then, if pwc is not a null pointer, stores that value in
525 the object pointed to by pwc. If the corresponding wide character is the null wide
528 @param[out] pwc Pointer to where the resulting wide character is to be stored.
553 wchar_t *pwc,
561 RetVal = DecodeOneStateful(pwc, s, (ssize_t)n, ps);
572 character and then, if Pwc is not a null pointer, stores that value in
573 the object pointed to by Pwc. If the corresponding wide character is the
576 @param[out] Pwc Pointer to a wide-character object to receive the converted character.
596 wchar_t *pwc,
    [all...]
  /external/libcxx/src/support/win32/
locale_win32.cpp 60 size_t mbrtowc_l( wchar_t *__restrict pwc, const char *__restrict s,
64 return mbrtowc( pwc, s, n, ps );
  /external/libcxx/test/std/depr/depr.c.headers/
stdlib_h.pass.cpp 113 const wchar_t* pwc = 0; local
119 static_assert((std::is_same<decltype(wcstombs(pc,pwc,0)), size_t>::value), "");
  /external/openssh/openbsd-compat/
bsd-misc.c 291 mbtowc(wchar_t *pwc, const char *s, size_t n)
299 if (pwc != NULL)
300 *pwc = *s;
  /bionic/libc/bionic/
wchar.cpp 60 size_t mbrtowc(wchar_t* pwc, const char* s, size_t n, mbstate_t* ps) {
65 return mbrtoc32(reinterpret_cast<char32_t*>(pwc), s, n, state);
  /external/libcxx/test/std/language.support/support.runtime/
cstdlib.pass.cpp 105 const wchar_t* pwc = 0; local
111 static_assert((std::is_same<decltype(std::wcstombs(pc,pwc,0)), std::size_t>::value), "");
  /device/linaro/bootloader/edk2/StdLib/Include/
wchar.h 135 size_t mbrtowc (wchar_t * __restrict pwc, const char * __restrict S,
    [all...]
  /external/libcxx/include/support/win32/
locale_win32.h 120 size_t mbrtowc_l( wchar_t *__restrict pwc, const char *__restrict s,
  /external/python/cpython3/Tools/msi/bundle/bootstrap/
PythonBootstrapperApplication.cpp 1526 const wchar_t* pwc = wcschr(argv[i], L'='); local
    [all...]

Completed in 352 milliseconds