/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdio/ |
A D | fgetws.c | 14 wchar_t *fgetws_unlocked(wchar_t *__restrict ws, int n, in fgetws_unlocked() argument 17 register wchar_t *p = ws; in fgetws_unlocked() 28 if (p == ws) { in fgetws_unlocked() 36 return ws; in fgetws_unlocked() 46 wchar_t *fgetws(wchar_t *__restrict ws, int n, FILE *__restrict stream) 53 retval = fgetws_unlocked(ws, n, stream);
|
A D | fputws.c | 14 int fputws_unlocked(const wchar_t *__restrict ws, in fputws_unlocked() argument 17 size_t n = wcslen(ws); in fputws_unlocked() 19 return (_wstdio_fwrite(ws, n, stream) == n) ? 0 : -1; in fputws_unlocked() 30 int fputws(const wchar_t *__restrict ws, register FILE *__restrict stream) 37 retval = fputws_unlocked(ws, stream);
|
A D | _wfwrite.c | 20 size_t attribute_hidden _wstdio_fwrite(const wchar_t *__restrict ws, size_t n, in _wstdio_fwrite() argument 38 wmemcpy((wchar_t *)(stream->__bufpos), ws, count); in _wstdio_fwrite() 52 pw = ws; in _wstdio_fwrite() 58 pw = ws + count + r; /* pw was set to NULL, so correct. */ in _wstdio_fwrite() 61 count = pw - ws; in _wstdio_fwrite()
|
A D | _vfprintf.c | 1416 const wchar_t *ws = NULL; in _do_one_spec() local 1598 ws = *((const wchar_t **) *argptr); in _do_one_spec() 1599 if (!ws) { in _do_one_spec() 1607 slen = wcsrtombs((char *) &ws, &ws, /* Use awful hack! */ in _do_one_spec() 1655 ws = *((wchar_t **) (*argptr)); in _do_one_spec() 1656 if (!ws) { in _do_one_spec() 1664 ws = wbuf; in _do_one_spec() 1776 if (!ws) { in _do_one_spec() 1786 t = wcsrtombs(buf, &ws, t, &mbstate); in _do_one_spec() 1802 if (!ws) { in _do_one_spec() [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/test/locale-mbwc/ |
A D | tst_wcslen.c | 14 wchar_t *ws; in tst_wcslen() local 22 ws = TST_INPUT (wcslen).ws; in tst_wcslen() 23 ret = wcslen (ws); in tst_wcslen()
|
A D | tst_wcswidth.c | 14 wchar_t *ws; in tst_wcswidth() local 23 ws = TST_INPUT (wcswidth).ws; in tst_wcswidth() 25 ret = wcswidth (ws, n); in tst_wcswidth()
|
A D | tst_wcstok.c | 16 wchar_t *ws; in tst_wcstok() local 30 ws = (w_flg) ? TST_INPUT_SEQ (wcstok).ws : NULL; in tst_wcstok() 33 ret = wcstok (ws, dt, &pt); in tst_wcstok() 52 ws_ex = TST_EXPECT_SEQ (wcstok).ws; in tst_wcstok()
|
A D | tst_mbstowcs.c | 17 wchar_t ws[WCSSIZE], *ws_ex, *wp; in tst_mbstowcs() local 46 wp = (wchar_t *) ((w_flg == 0) ? NULL : ws); in tst_mbstowcs() 66 ws_ex = TST_EXPECT_SEQ (mbstowcs).ws; in tst_mbstowcs() 74 i, (unsigned long int) ws[i], in tst_mbstowcs() 78 if (ws[i] != ws_ex[i]) in tst_mbstowcs()
|
A D | tst_types.h | 191 wchar_t ws[WCSSIZE]; member 303 wchar_t ws[WCSSIZE * 3]; member 378 wchar_t ws[WCSSIZE]; member 391 wchar_t ws[WCSSIZE]; member 429 wchar_t ws[WCSSIZE]; /* ws2: original string */ member 489 wchar_t ws[WCSSIZE]; /* ws2: original string */ member 523 wchar_t ws[WCSSIZE]; member 589 wchar_t ws[WCSSIZE]; member 601 wchar_t ws[WCSSIZE]; member 618 wchar_t ws[WCSSIZE]; member
|
A D | tst_wcschr.c | 14 wchar_t *ws, wc; in tst_wcschr() local 22 ws = TST_INPUT (wcschr).ws; /* external value: size WCSSIZE */ in tst_wcschr() 24 ret = wcschr (ws, wc); in tst_wcschr()
|
A D | tst_mbsrtowcs.c | 21 wchar_t ws[WCSSIZE], *ws_ex, *wp; in tst_mbsrtowcs() local 46 wp = (w_flg == 0) ? NULL : ws; in tst_mbsrtowcs() 78 ws_ex = TST_EXPECT_SEQ (mbsrtowcs).ws; in tst_mbsrtowcs() 85 i, (unsigned long int) ws[i], in tst_mbsrtowcs() 89 if (ws[i] != ws_ex[i]) in tst_mbsrtowcs()
|
A D | tst_swscanf.c | 14 wchar_t *ws; in tst_swscanf() local 30 ws = TST_INPUT (swscanf).ws; in tst_swscanf() 40 ret = swscanf (ws, fmt, val_S); in tst_swscanf() 45 swscanf (ws, fmt, &val_int1, &val_int2, &val_flt, &val_c, val_s); in tst_swscanf()
|
A D | tst_wcstombs.c | 17 wchar_t *ws; in tst_wcstombs() local 32 ws = TST_INPUT (wcstombs).ws; in tst_wcstombs() 36 ret = wcstombs (s_in, ws, n); in tst_wcstombs()
|
A D | tst_wcsrtombs.c | 18 const wchar_t *ws, *wp; in tst_wcsrtombs() local 36 wp = ws = TST_INPUT (wcsrtombs).ws; in tst_wcsrtombs()
|
A D | tst_wcscpy.c | 22 ws2 = TST_INPUT (wcscpy).ws; /* external value: size WCSSIZE */ in tst_wcscpy() 41 ws_ex = TST_EXPECT (wcscpy).ws; in tst_wcscpy()
|
A D | tst_wcsncpy.c | 35 ws2 = TST_INPUT (wcsncpy).ws; /* external value: size WCSSIZE */ in tst_wcsncpy() 60 ws_ex = TST_EXPECT (wcsncpy).ws; in tst_wcsncpy()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/ |
A D | _collate.c | 504 col_state_t ws[2]; in __XL_NPP() local 517 init_col_state(ws, s0); in __XL_NPP() 518 init_col_state(ws+1, s1); in __XL_NPP() 521 next_weight(ws, pass __LOCALE_ARG ); in __XL_NPP() 522 next_weight(ws+1, pass __LOCALE_ARG ); in __XL_NPP() 524 (unsigned long) ws[0].weight, in __XL_NPP() 525 (unsigned long) ws[1].weight)); in __XL_NPP() 527 if (ws[0].weight != ws[1].weight) { in __XL_NPP() 528 return ws[0].weight - ws[1].weight; in __XL_NPP() 530 } while (ws[0].weight); in __XL_NPP()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/src/c++11/ |
A D | istream-inst.cc | 37 template istream& ws(istream&); 68 template wistream& ws(wistream&);
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/src/c++98/ |
A D | istream-inst.cc | 37 template istream& ws(istream&); 68 template wistream& ws(wistream&);
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/src/c++11/ |
A D | istream-inst.cc | 37 template istream& ws(istream&); 68 template wistream& ws(wistream&);
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/src/c++11/ |
A D | istream-inst.cc | 37 template istream& ws(istream&); 68 template wistream& ws(wistream&);
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/src/c++11/ |
A D | istream-inst.cc | 37 template istream& ws(istream&); 68 template wistream& ws(wistream&);
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/src/c++11/ |
A D | istream-inst.cc | 37 template istream& ws(istream&); 68 template wistream& ws(wistream&);
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/src/c++11/ |
A D | istream-inst.cc | 37 template istream& ws(istream&); 68 template wistream& ws(wistream&);
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++11/ |
A D | istream-inst.cc | 37 template istream& ws(istream&); 72 template wistream& ws(wistream&);
|