Home
last modified time | relevance | path

Searched refs:gch (Results 1 – 10 of 10) sorted by relevance

/freebsd/usr.bin/tip/tip/
H A Dtip.c373 int gch; in tipin() local
389 gch = getchar(); in tipin()
390 if (gch == EOF) in tipin()
392 gch = gch & STRIP_PAR; in tipin()
393 if ((gch == character(value(ESCAPE))) && bol) { in tipin()
395 gch = escape(); in tipin()
396 if (gch == EOF) in tipin()
398 if (gch == 0) in tipin()
401 } else if (!cumode && gch == character(value(RAISECHAR))) { in tipin()
404 } else if (gch == '\r') { in tipin()
[all …]
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlstate.h188 GCheader gch; /* common header */ member
199 #define gch(o) (&(o)->gch) macro
203 check_exp(novariant((o)->gch.tt) == LUA_TSTRING, &((o)->ts))
205 #define rawgco2u(o) check_exp((o)->gch.tt == LUA_TUSERDATA, &((o)->u))
207 #define gco2lcl(o) check_exp((o)->gch.tt == LUA_TLCL, &((o)->cl.l))
208 #define gco2ccl(o) check_exp((o)->gch.tt == LUA_TCCL, &((o)->cl.c))
210 check_exp(novariant((o)->gch.tt) == LUA_TFUNCTION, &((o)->cl))
211 #define gco2t(o) check_exp((o)->gch.tt == LUA_TTABLE, &((o)->h))
212 #define gco2p(o) check_exp((o)->gch.tt == LUA_TPROTO, &((o)->p))
213 #define gco2uv(o) check_exp((o)->gch.tt == LUA_TUPVAL, &((o)->uv))
[all …]
H A Dlgc.h100 #define iswhite(x) testbits((x)->gch.marked, WHITEBITS)
101 #define isblack(x) testbit((x)->gch.marked, BLACKBIT)
103 (!testbits((x)->gch.marked, WHITEBITS | bitmask(BLACKBIT)))
105 #define isold(x) testbit((x)->gch.marked, OLDBIT)
109 #define resetoldbit(o) resetbit((o)->gch.marked, OLDBIT)
113 #define isdead(g,v) isdeadm(otherwhite(g), (v)->gch.marked)
115 #define changewhite(x) ((x)->gch.marked ^= WHITEBITS)
116 #define gray2black(x) l_setbit((x)->gch.marked, BLACKBIT)
H A Dlgc.c59 (gch(x)->marked = cast_byte((gch(x)->marked & maskcolors) | luaC_white(g)))
61 #define white2gray(x) resetbits(gch(x)->marked, WHITEBITS)
62 #define black2gray(x) resetbit(gch(x)->marked, BLACKBIT)
65 #define isfinalized(x) testbit(gch(x)->marked, FINALIZEDBIT)
138 lua_assert(gch(o)->tt != LUA_TTABLE); in luaC_barrier_()
156 lua_assert(isblack(o) && !isdead(g, o) && gch(o)->tt == LUA_TTABLE); in luaC_barrierback_()
218 gch(o)->marked = luaC_white(g); in luaC_newobj()
219 gch(o)->tt = tt; in luaC_newobj()
220 gch(o)->next = *list; in luaC_newobj()
245 switch (gch(o)->tt) { in reallymarkobject()
[all …]
H A Dlstring.c77 GCObject *next = gch(p)->next; /* save next */ in luaS_resize()
79 gch(p)->next = tb->hash[h]; /* chain it */ in luaS_resize()
140 o = gch(o)->next) { in internshrstr()
H A Dlobject.h175 #define righttt(obj) (ttype(obj) == gcvalue(obj)->gch.tt)
201 val_(io).gc=i_g; settt_(io, ctb(gch(i_g)->tt)); }
H A Dlfunc.c101 gch(o)->next = g->allgc; /* link upvalue into 'allgc' list */ in luaF_close()
H A Dldo.c230 for (up = L->openupval; up != NULL; up = up->gch.next) in correctstack()
/freebsd/contrib/lib9p/
H A D.gitignore8 *.gch
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticGroups.td547 def IgnoredGCH : DiagGroup<"ignored-gch">;