/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/bison/lib/ |
mbrtowc.c | 39 mbrtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps) 45 pwc = NULL; 100 int res = mbtowc (pwc, p, m); 104 if (pwc != NULL && ((*pwc == 0) != (res == 0))) 329 rpl_mbrtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps) 334 pwc = NULL; 364 if (pwc != NULL) 365 *pwc = wc; 381 if (pwc != NULL [all...] |
stdlib.in.h | 301 _GL_FUNCDECL_RPL (mbtowc, int, (wchar_t *pwc, const char *s, size_t n)); 302 _GL_CXXALIAS_RPL (mbtowc, int, (wchar_t *pwc, const char *s, size_t n)); 304 _GL_CXXALIAS_SYS (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));
|
wchar.in.h | 223 (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps)); 225 (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps)); 229 (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps)); 232 (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps)); [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/ |
wmesa.c | 257 WMesaContext pwc = wmesa_context(ctx); local 278 pwc->clearColorRef = RGB(col[0], col[1], col[2]); 279 DeleteObject(pwc->clearPen); 280 DeleteObject(pwc->clearBrush); 281 pwc->clearPen = CreatePen(PS_SOLID, 1, pwc->clearColorRef); 282 pwc->clearBrush = CreateSolidBrush(pwc->clearColorRef); 305 bColor = BGR8(GetRValue(pwc->clearColorRef), 306 GetGValue(pwc->clearColorRef), 440 WMesaContext pwc = wmesa_context(ctx); local 524 WMesaContext pwc = wmesa_context(ctx); local 542 WMesaContext pwc = wmesa_context(ctx); local 563 WMesaContext pwc = wmesa_context(ctx); local 1184 WMesaContext pwc = wmesa_context(ctx); local 1237 WMesaContext pwc = wmesa_context(ctx); local [all...] |
/external/mesa3d/src/mesa/drivers/windows/gdi/ |
wmesa.c | 257 WMesaContext pwc = wmesa_context(ctx); local 278 pwc->clearColorRef = RGB(col[0], col[1], col[2]); 279 DeleteObject(pwc->clearPen); 280 DeleteObject(pwc->clearBrush); 281 pwc->clearPen = CreatePen(PS_SOLID, 1, pwc->clearColorRef); 282 pwc->clearBrush = CreateSolidBrush(pwc->clearColorRef); 305 bColor = BGR8(GetRValue(pwc->clearColorRef), 306 GetGValue(pwc->clearColorRef), 440 WMesaContext pwc = wmesa_context(ctx); local 524 WMesaContext pwc = wmesa_context(ctx); local 542 WMesaContext pwc = wmesa_context(ctx); local 563 WMesaContext pwc = wmesa_context(ctx); local 1184 WMesaContext pwc = wmesa_context(ctx); local 1237 WMesaContext pwc = wmesa_context(ctx); local [all...] |
/ndk/sources/host-tools/sed-4.2.1/lib/ |
mbrtowc.c | 39 mbrtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps) 48 pwc = NULL; 99 int res = mbtowc (pwc, p, m); 103 if (pwc != NULL && ((*pwc == 0) != (res == 0))) 322 rpl_mbrtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps) 327 pwc = NULL; 357 if (pwc != NULL) 358 *pwc = wc; 374 if (pwc != NULL [all...] |
wchar.in.h | 166 extern size_t mbrtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps);
|
/ndk/sources/android/support/include/ |
stdlib.h | 44 int mbtowc(wchar_t *pwc, const char *pmb, size_t max);
|
/prebuilts/ndk/9/sources/android/support/include/ |
stdlib.h | 44 int mbtowc(wchar_t *pwc, const char *pmb, size_t max);
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
sed.h | 248 #define MBRTOWC(pwc, s, n, ps) \ 250 (*(pwc) = btowc (*(unsigned char *) (s)), 1) : \ 251 mbrtowc ((pwc), (s), (n), (ps))) 258 #define MBRTOWC(pwc, s, n, ps) \ 259 mbrtowc ((pwc), (s), (n), (ps))
|
/external/libcxx/src/support/win32/ |
locale_win32.cpp | 54 size_t mbrtowc_l( wchar_t *__restrict pwc, const char *__restrict s, 58 return mbrtowc( pwc, s, n, ps );
|