Searched refs:iswhite (Results 1 – 15 of 15) sorted by relevance
/freebsd/usr.bin/ctags/ |
H A D | C.c | 298 while (GETC(!=, EOF) && iswhite(c)) in func_entry() 363 if (iswhite(c)) in hash_entry() 377 if (!iswhite(c)) in hash_entry() 420 while (iswhite(c)) in str_entry() 445 if (!iswhite(c)) in str_entry()
|
H A D | ctags.h | 51 #define iswhite(arg) _wht[arg & 0xff] /* T if char is white */ 52 #define iswhite( global() macro
|
H A D | yacc.c | 96 while (iswhite(c)) { in y_entries()
|
H A D | ctags.c | 292 if (!iswhite(c)) { in find_entries()
|
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lgc.h | 99 #define iswhite(x) testbits((x)->gch.marked, WHITEBITS) macro 117 #define valiswhite(x) (iscollectable(x) && iswhite(gcvalue(x))) 134 { if (iswhite(obj2gco(o)) && isblack(obj2gco(p))) \ 138 { if (iswhite(obj2gco(o)) && isblack(obj2gco(p))) luaC_barrierback_(L,p); }
|
H A D | lgc.c | 76 #define markobject(g,t) { if ((t) && iswhite(obj2gco(t))) \ 125 else return iswhite(gcvalue(o)); in iscleared() 135 lua_assert(isblack(o) && iswhite(v) && !isdead(g, v) && !isdead(g, o)); in luaC_barrier_() 457 if (f->cache && iswhite(obj2gco(f->cache))) in traverseproto() 854 if (!(iswhite(curr) || all)) /* not being collected? */ in separatetobefnz() 1001 lua_assert(!iswhite(obj2gco(g->mainthread))); in atomic()
|
/freebsd/contrib/lua/src/ |
H A D | lgc.h | 87 #define iswhite(x) testbits((x)->marked, WHITEBITS) macro 100 check_exp(!iswhite(x), l_setbit((x)->marked, BLACKBIT)) 176 (isblack(p) && iswhite(o)) ? \ 183 (isblack(p) && iswhite(o)) ? luaC_barrierback_(L,p) : cast_void(0))
|
H A D | lgc.c | 83 #define valiswhite(x) (iscollectable(x) && iswhite(gcvalue(x))) 85 #define keyiswhite(n) (keyiscollectable(n) && iswhite(gckey(n))) 99 #define markobject(g,t) { if (iswhite(t)) reallymarkobject(g, obj2gco(t)); } 191 else return iswhite(o); in iscleared() 210 lua_assert(isblack(o) && iswhite(v) && !isdead(g, v) && !isdead(g, o)); in luaC_barrier_() 373 if (!iswhite(thread) && thread->openupval != NULL) in remarkupvals() 383 if (!iswhite(uv)) { /* upvalue already visited? */ in remarkupvals() 978 if (!(iswhite(curr) || all)) /* not being collected? */ in separatetobefnz() 1081 if (iswhite(curr)) { /* is 'curr' dead? */ in sweep2old() 1127 if (iswhite(curr)) { /* is 'curr' dead? */ in sweepgen() [all …]
|
H A D | ltests.c | 301 return !(isblack(f) && iswhite(t)); /* basic incremental invariant */ in testobjref1() 316 isdead(g,o) ? 'd' : isblack(o) ? 'b' : iswhite(o) ? 'w' : 'g', in printobj() 517 assert(g->gcstate != GCSpause || iswhite(o)); in checkobject() 520 assert(!iswhite(o) || !isold(o)); in checkobject() 632 assert(!iswhite(g->mainthread)); in lua_checkmemory() 633 assert(!iswhite(gcvalue(&g->l_registry))); in lua_checkmemory() 899 iswhite(obj) ? "white" : in gc_color()
|
H A D | lstring.c | 114 if (iswhite(g->strcache[i][j])) /* will entry be collected? */ in luaS_clearcache()
|
H A D | lfunc.c | 202 if (!iswhite(uv)) { /* neither white nor dead? */ in luaF_closeupval()
|
H A D | lapi.c | 595 lua_assert(iswhite(cl)); in lua_pushcclosure()
|
/freebsd/contrib/ncurses/ncurses/tinfo/ |
H A D | comp_scan.c | 64 #define iswhite(ch) (ch == ' ' || ch == '\t') macro 263 while (iswhite(*bufptr)) { in next_char() 334 while ((ch = next_char()) == '\n' || iswhite(ch)) { in eat_escaped_newline() 438 while ((ch = next_char()) == '\n' || iswhite(ch)) { in _nc_get_token() 465 while ((ch = next_char()) == '.' || iswhite(ch)) { in _nc_get_token() 607 iswhite(*tok_ptr) || *tok_ptr == ','; in _nc_get_token()
|
/freebsd/usr.bin/m4/ |
H A D | stdd.h | 45 #define iswhite(c) ((c) == ' ' || (c) == '\t') macro
|
/freebsd/crypto/heimdal/lib/roken/ |
H A D | vis.c | 124 #define iswhite(c) (c == ' ' || c == '\t' || c == '\n') macro 179 if (!isextra && isascii(c) && (isgraph(c) || iswhite(c) || in do_svis()
|