Home
last modified time | relevance | path

Searched refs:ws (Results 1 – 25 of 45) sorted by relevance

12

/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdio/
A Dfgetws.c14 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 Dfputws.c14 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.c20 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.c1416 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 Dtst_wcslen.c14 wchar_t *ws; in tst_wcslen() local
22 ws = TST_INPUT (wcslen).ws; in tst_wcslen()
23 ret = wcslen (ws); in tst_wcslen()
A Dtst_wcswidth.c14 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 Dtst_wcstok.c16 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 Dtst_mbstowcs.c17 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 Dtst_types.h191 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 Dtst_wcschr.c14 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 Dtst_mbsrtowcs.c21 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 Dtst_swscanf.c14 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 Dtst_wcstombs.c17 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 Dtst_wcsrtombs.c18 const wchar_t *ws, *wp; in tst_wcsrtombs() local
36 wp = ws = TST_INPUT (wcsrtombs).ws; in tst_wcsrtombs()
A Dtst_wcscpy.c22 ws2 = TST_INPUT (wcscpy).ws; /* external value: size WCSSIZE */ in tst_wcscpy()
41 ws_ex = TST_EXPECT (wcscpy).ws; in tst_wcscpy()
A Dtst_wcsncpy.c35 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.c504 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 Distream-inst.cc37 template istream& ws(istream&);
68 template wistream& ws(wistream&);
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/src/c++98/
A Distream-inst.cc37 template istream& ws(istream&);
68 template wistream& ws(wistream&);
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/src/c++11/
A Distream-inst.cc37 template istream& ws(istream&);
68 template wistream& ws(wistream&);
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/src/c++11/
A Distream-inst.cc37 template istream& ws(istream&);
68 template wistream& ws(wistream&);
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/src/c++11/
A Distream-inst.cc37 template istream& ws(istream&);
68 template wistream& ws(wistream&);
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/src/c++11/
A Distream-inst.cc37 template istream& ws(istream&);
68 template wistream& ws(wistream&);
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/src/c++11/
A Distream-inst.cc37 template istream& ws(istream&);
68 template wistream& ws(wistream&);
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++11/
A Distream-inst.cc37 template istream& ws(istream&);
72 template wistream& ws(wistream&);

Completed in 26 milliseconds

12