HomeSort by: relevance | last modified time | path
    Searched refs:ws (Results 1 - 25 of 360) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/zstd/dist/lib/compress/
zstd_cwksp.h 175 MEM_STATIC size_t ZSTD_cwksp_available_space(ZSTD_cwksp* ws);
176 MEM_STATIC void* ZSTD_cwksp_initialAllocStart(ZSTD_cwksp* ws);
178 MEM_STATIC void ZSTD_cwksp_assert_internal_consistency(ZSTD_cwksp* ws) {
179 (void)ws;
180 assert(ws->workspace <= ws->objectEnd);
181 assert(ws->objectEnd <= ws->tableEnd);
182 assert(ws->objectEnd <= ws->tableValidEnd)
    [all...]
  /src/external/gpl3/gcc/dist/libgomp/
work.c 41 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->next_free = NULL
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...]
iter.c 43 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->next + s) / ws->incr
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...]
iter_ull.c 44 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->incr_ull - 1) / ws->incr_ull
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...]
  /src/external/gpl3/gcc.old/dist/libgomp/
work.c 41 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->next_free = NULL
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...]
iter.c 43 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->next + s) / ws->incr
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...]
iter_ull.c 44 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->incr_ull - 1) / ws->incr_ull
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...]
  /src/external/bsd/flex/dist/examples/fastwc/
wc3.l 3 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;
wc5.l 3 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;
wc2.l 3 ws [ \t]
5 word {ws}*{nonws}+
11 {word}{ws}* cc += yyleng; ++wc;
12 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
14 {ws}+ cc += yyleng;
wc4.l 3 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}* wc += 4; cc += yyleng
    [all...]
wc1.l 3 ws [ \t]
12 {ws}+ cc += yyleng;
  /src/external/lgpl3/gmp/dist/mpn/generic/
sqr.c 52 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 = TMP_SALLOC_LIMBS (mpn_toom6_sqr_itch (n))
85 mp_ptr ws; local
    [all...]
mul_n.c 49 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 = TMP_SALLOC_LIMBS (mpn_toom6_mul_n_itch (n))
83 mp_ptr ws; local
    [all...]
toom_eval_pm2rexp.c 41 #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)
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,n+1,ap+n*q,t))
    [all...]
  /src/lib/libc/stdio/
fputws.c 45 fputws(const wchar_t * __restrict ws, FILE * __restrict fp)
48 _DIAGASSERT(ws != NULL);
53 while (*ws != '\0') {
54 if (__fputwc_unlock(*ws++, fp) == WEOF) {
fgetws.c 46 fgetws(wchar_t * __restrict ws, int n, FILE * __restrict fp)
52 _DIAGASSERT(ws != NULL);
62 wsp = ws;
68 if (wsp == ws) {
83 return ws;
  /src/external/mit/xorg/server/drivers/xf86-input-ws/
Makefile 5 DRIVER= xf86-input-ws
8 SRCS= ws.c emumb.c
9 MAN= ws.4
  /src/usr.bin/resize/
resize.h 59 #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).ws_xpixel = xpixel,
    [all...]
  /src/lib/libc/termios/
tcgetwinsize.c 45 tcgetwinsize(int fd, struct winsize *ws)
47 return ioctl(fd, TIOCGWINSZ, ws);
tcsetwinsize.c 45 tcsetwinsize(int fd, const struct winsize *ws)
47 return ioctl(fd, TIOCSWINSZ, ws);
  /src/external/bsd/tmux/dist/compat/
fdforkpty.c 31 struct winsize *ws)
33 return (forkpty(master, name, tio, ws));
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/
amd64-gs_base.exp 37 set ws "\[\t \]+"
39 "fs_base${ws}0x2${ws}2"\
40 "gs_base${ws}0x3${ws}3" ]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
amd64-gs_base.exp 37 set ws "\[\t \]+"
39 "fs_base${ws}0x2${ws}2"\
40 "gs_base${ws}0x3${ws}3" ]
  /src/external/bsd/kyua-atf-compat/dist/
atf-run.sh 66 local ws='[ ]*' # That's a space and a tab.
69 local vars="$(grep "^${ws}${name}${ws}=" "${file}" | \
71 -e "s,^${ws}\(${name}\)${ws}=${ws}'\([^']*\)'${ws}$,${repl}," \
72 -e "s,^${ws}\(${name}\)${ws}=${ws}\"\([^\"]*\)\"${ws}$,${repl},"
    [all...]

Completed in 30 milliseconds

1 2 3 4 5 6 7 8 91011>>