Searched refs:ws (Results 1 - 25 of 394) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb.old/dist/gdb/unittests/basic_string_view/range_access/wchar_t/
H A D1.cc28 std::wstring_view ws(L"Hello, World!");
29 std::begin(ws);
30 std::end(ws);
31 std::rbegin(ws);
32 std::rend(ws);
38 constexpr std::wstring_view ws(L"Hello, World!");
39 [[maybe_unused]] constexpr auto b = std::begin(ws);
40 [[maybe_unused]] constexpr auto e = std::end(ws);
41 [[maybe_unused]] constexpr auto cb = std::cbegin(ws);
42 [[maybe_unused]] constexpr auto ce = std::cend(ws);
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/unittests/basic_string_view/range_access/wchar_t/
H A D1.cc28 std::wstring_view ws(L"Hello, World!");
29 std::begin(ws);
30 std::end(ws);
31 std::rbegin(ws);
32 std::rend(ws);
38 constexpr std::wstring_view ws(L"Hello, World!");
39 [[maybe_unused]] constexpr auto b = std::begin(ws);
40 [[maybe_unused]] constexpr auto e = std::end(ws);
41 [[maybe_unused]] constexpr auto cb = std::cbegin(ws);
42 [[maybe_unused]] constexpr auto ce = std::cend(ws);
[all...]
/netbsd-current/external/gpl3/gcc/dist/libgomp/
H A Dwork.c41 struct gomp_work_share *ws; local
47 ws = team->work_share_list_alloc;
48 team->work_share_list_alloc = ws->next_free;
49 return ws;
53 ws = team->work_share_list_free;
56 __asm ("" : "+r" (ws));
58 if (ws && ws->next_free)
60 struct gomp_work_share *next = ws->next_free;
61 ws
101 gomp_init_work_share(struct gomp_work_share *ws, size_t ordered, unsigned nthreads) argument
143 gomp_fini_work_share(struct gomp_work_share *ws) argument
155 free_work_share(struct gomp_team *team, struct gomp_work_share *ws) argument
191 struct gomp_work_share *ws; local
213 struct gomp_work_share *ws = alloc_work_share (team); local
292 struct gomp_work_share *ws = thr->ts.work_share; local
[all...]
H A Diter.c43 struct gomp_work_share *ws = thr->ts.work_share; local
52 *pstart = ws->next;
53 *pend = ws->end;
55 return ws->next == ws->end;
61 if (ws->chunk_size == 0)
71 s = ws->incr + (ws->incr > 0 ? -1 : 1);
72 n = (ws->end - ws
151 struct gomp_work_share *ws = thr->ts.work_share; local
187 struct gomp_work_share *ws = thr->ts.work_share; local
264 struct gomp_work_share *ws = thr->ts.work_share; local
298 struct gomp_work_share *ws = thr->ts.work_share; local
[all...]
H A Diter_ull.c44 struct gomp_work_share *ws = thr->ts.work_share; local
53 *pstart = ws->next_ull;
54 *pend = ws->end_ull;
56 return ws->next_ull == ws->end_ull;
62 if (ws->chunk_size_ull == 0)
70 if (__builtin_expect (ws->mode, 0) == 0)
71 n = (ws->end_ull - ws->next_ull + ws
153 struct gomp_work_share *ws = thr->ts.work_share; local
189 struct gomp_work_share *ws = thr->ts.work_share; local
265 struct gomp_work_share *ws = thr->ts.work_share; local
302 struct gomp_work_share *ws = thr->ts.work_share; local
[all...]
/netbsd-current/external/bsd/flex/dist/examples/fastwc/
H A Dwc3.l3 ws [ \t]
5 word {ws}*{nonws}+
6 words {word}{ws}+
12 {word}{ws}* cc += yyleng; ++wc;
13 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
14 {words}{word}{ws}* cc += yyleng; wc += 2;
15 {words}{2}{word}{ws}* cc += yyleng; wc += 3;
16 {words}{3}{word}{ws}* cc += yyleng; wc += 4;
18 {ws}+ cc += yyleng;
H A Dwc5.l3 ws [ \t]
5 word {ws}*{nonws}+
6 words {word}{ws}+
12 {word}{ws}* cc += yyleng; ++wc;
13 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
15 {words}{2}{word}{ws}* cc += yyleng; wc += 3;
16 {words}{3}{word}{ws}* cc += yyleng; wc += 4;
18 {ws}+ cc += yyleng;
H A Dwc2.l3 ws [ \t]
5 word {ws}*{nonws}+
11 {word}{ws}* cc += yyleng; ++wc;
12 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
14 {ws}+ cc += yyleng;
H A Dwc4.l3 ws [ \t]
5 word {ws}*{nonws}+
6 words {word}{ws}+
12 {word}{ws}* ++wc; cc += yyleng;
13 {word}{ws}*\n ++wc; cc += yyleng; ++lc;
14 {words}{word}{ws}* wc += 2; cc += yyleng;
15 {words}{word}{ws}*\n wc += 2; cc += yyleng; ++lc;
16 {words}{2}{word}{ws}* wc += 3; cc += yyleng;
17 {words}{2}{word}{ws}*\n wc += 3; cc += yyleng; ++lc;
18 {words}{3}{word}{ws}* w
[all...]
H A Dwc1.l3 ws [ \t]
12 {ws}+ cc += yyleng;
/netbsd-current/external/gpl3/gcc.old/dist/libgomp/
H A Dwork.c41 struct gomp_work_share *ws; local
47 ws = team->work_share_list_alloc;
48 team->work_share_list_alloc = ws->next_free;
49 return ws;
53 ws = team->work_share_list_free;
56 __asm ("" : "+r" (ws));
58 if (ws && ws->next_free)
60 struct gomp_work_share *next = ws->next_free;
61 ws
101 gomp_init_work_share(struct gomp_work_share *ws, size_t ordered, unsigned nthreads) argument
141 gomp_fini_work_share(struct gomp_work_share *ws) argument
153 free_work_share(struct gomp_team *team, struct gomp_work_share *ws) argument
189 struct gomp_work_share *ws; local
206 struct gomp_work_share *ws = alloc_work_share (team); local
285 struct gomp_work_share *ws = thr->ts.work_share; local
[all...]
H A Diter.c43 struct gomp_work_share *ws = thr->ts.work_share; local
52 *pstart = ws->next;
53 *pend = ws->end;
55 return ws->next == ws->end;
61 if (ws->chunk_size == 0)
71 s = ws->incr + (ws->incr > 0 ? -1 : 1);
72 n = (ws->end - ws
151 struct gomp_work_share *ws = thr->ts.work_share; local
187 struct gomp_work_share *ws = thr->ts.work_share; local
264 struct gomp_work_share *ws = thr->ts.work_share; local
298 struct gomp_work_share *ws = thr->ts.work_share; local
[all...]
H A Diter_ull.c44 struct gomp_work_share *ws = thr->ts.work_share; local
53 *pstart = ws->next_ull;
54 *pend = ws->end_ull;
56 return ws->next_ull == ws->end_ull;
62 if (ws->chunk_size_ull == 0)
70 if (__builtin_expect (ws->mode, 0) == 0)
71 n = (ws->end_ull - ws->next_ull + ws
153 struct gomp_work_share *ws = thr->ts.work_share; local
189 struct gomp_work_share *ws = thr->ts.work_share; local
265 struct gomp_work_share *ws = thr->ts.work_share; local
302 struct gomp_work_share *ws = thr->ts.work_share; local
[all...]
/netbsd-current/external/lgpl3/gmp/dist/mpn/generic/
H A Dsqr.c52 mp_limb_t ws[mpn_toom2_sqr_itch (SQR_TOOM3_THRESHOLD_LIMIT-1)]; local
54 mpn_toom2_sqr (p, a, n, ws);
58 mp_ptr ws; local
61 ws = TMP_SALLOC_LIMBS (mpn_toom3_sqr_itch (n));
62 mpn_toom3_sqr (p, a, n, ws);
67 mp_ptr ws; local
70 ws = TMP_SALLOC_LIMBS (mpn_toom4_sqr_itch (n));
71 mpn_toom4_sqr (p, a, n, ws);
76 mp_ptr ws; local
79 ws
85 mp_ptr ws; local
[all...]
H A Dmul_n.c49 mp_limb_t ws[mpn_toom22_mul_itch (MUL_TOOM33_THRESHOLD_LIMIT-1, local
52 mpn_toom22_mul (p, a, n, b, n, ws);
56 mp_ptr ws; local
59 ws = TMP_SALLOC_LIMBS (mpn_toom33_mul_itch (n, n));
60 mpn_toom33_mul (p, a, n, b, n, ws);
65 mp_ptr ws; local
68 ws = TMP_SALLOC_LIMBS (mpn_toom44_mul_itch (n, n));
69 mpn_toom44_mul (p, a, n, b, n, ws);
74 mp_ptr ws; local
77 ws
83 mp_ptr ws; local
[all...]
H A Dtoom_eval_pm2rexp.c41 #define DO_mpn_addlsh_n(dst,src,n,s,ws) mpn_addlsh_n(dst,dst,src,n,s)
44 DO_mpn_addlsh_n(mp_ptr dst, mp_srcptr src, mp_size_t n, unsigned int s, mp_ptr ws) argument
50 __cy = mpn_lshift(ws,src,n,s);
51 return __cy + mpn_add_n(dst,dst,ws,n);
60 unsigned int s, mp_ptr ws)
64 /* {ap,q*n+t} -> {rp,n+1} {rm,n+1} , with {ws, n+1}*/
70 ws[n] = mpn_lshift(ws, ap+n, n, s*(q-1));
72 ASSERT_NOCARRY(mpn_add(ws,ws,
58 mpn_toom_eval_pm2rexp(mp_ptr rp, mp_ptr rm, unsigned int q, mp_srcptr ap, mp_size_t n, mp_size_t t, unsigned int s, mp_ptr ws) argument
[all...]
/netbsd-current/lib/libc/stdio/
H A Dfputws.c45 fputws(const wchar_t * __restrict ws, FILE * __restrict fp) argument
48 _DIAGASSERT(ws != NULL);
53 while (*ws != '\0') {
54 if (__fputwc_unlock(*ws++, fp) == WEOF) {
H A Dfgetws.c46 fgetws(wchar_t * __restrict ws, int n, FILE * __restrict fp) argument
52 _DIAGASSERT(ws != NULL);
62 wsp = ws;
68 if (wsp == ws) {
83 return ws;
/netbsd-current/external/gpl3/gdb.old/dist/gdb/target/
H A Dwaitstatus.c26 target_waitstatus_to_string (const struct target_waitstatus *ws) argument
30 switch (ws->kind)
34 kind_str, ws->value.integer);
38 gdb_signal_to_symbol_string (ws->value.sig));
42 gdb_signal_to_symbol_string (ws->value.sig));
69 kind_str, ws->value.integer);
/netbsd-current/external/mit/xorg/server/drivers/xf86-input-ws/
H A DMakefile5 DRIVER= xf86-input-ws
8 SRCS= ws.c emumb.c
9 MAN= ws.4
/netbsd-current/usr.bin/resize/
H A Dresize.h59 #define TTYSIZE_ROWS(ws) (ws).ws_row
60 #define TTYSIZE_COLS(ws) (ws).ws_col
61 #define SET_TTYSIZE(fd, ws) ioctl((fd), TIOCSWINSZ, &(ws))
81 #define setup_winsize(ws, row, col, xpixel, ypixel) \
82 (void)((ws).ws_row = row, \
83 (ws).ws_col = col, \
84 (ws)
[all...]
/netbsd-current/external/bsd/tmux/dist/compat/
H A Dfdforkpty.c31 struct winsize *ws)
33 return (forkpty(master, name, tio, ws));
30 fdforkpty(__unused int ptmfd, int *master, char *name, struct termios *tio, struct winsize *ws) argument
/netbsd-current/lib/libc/termios/
H A Dtcgetwinsize.c45 tcgetwinsize(int fd, struct winsize *ws) argument
47 return ioctl(fd, TIOCGWINSZ, ws);
H A Dtcsetwinsize.c45 tcsetwinsize(int fd, const struct winsize *ws) argument
47 return ioctl(fd, TIOCSWINSZ, ws);
/netbsd-current/external/bsd/libarchive/dist/libarchive/test/
H A Dtest_acl_text.c238 wchar_t *ws = NULL; local
242 ws = malloc(len * sizeof(wchar_t));
243 assert(mbstowcs(ws, s, len) != (size_t)-1);
246 return (ws);
254 wchar_t *ws; local
257 ws = convert_s_to_ws(s);
264 assertEqualWString(wtext, ws);
270 free(ws);
276 wchar_t *ws = NULL; local
301 ws
[all...]

Completed in 181 milliseconds

1234567891011>>