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
392 gch = gch & STRIP_PAR; in tipin()
406 ch = gch; in tipin()
415 gch = gch & STRIP_PAR; in tipin()
419 gch = toupper(gch); in tipin()
420 ch = gch; in tipin()
436 int gch; in escape() local
441 if (gch == EOF) in escape()
443 gch = gch & STRIP_PAR; in escape()
453 if (c != gch) in escape()
[all …]
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlstate.h187 GCheader gch; /* common header */ member
198 #define gch(o) (&(o)->gch) macro
202 check_exp(novariant((o)->gch.tt) == LUA_TSTRING, &((o)->ts))
204 #define rawgco2u(o) check_exp((o)->gch.tt == LUA_TUSERDATA, &((o)->u))
206 #define gco2lcl(o) check_exp((o)->gch.tt == LUA_TLCL, &((o)->cl.l))
207 #define gco2ccl(o) check_exp((o)->gch.tt == LUA_TCCL, &((o)->cl.c))
209 check_exp(novariant((o)->gch.tt) == LUA_TFUNCTION, &((o)->cl))
210 #define gco2t(o) check_exp((o)->gch.tt == LUA_TTABLE, &((o)->h))
211 #define gco2p(o) check_exp((o)->gch.tt == LUA_TPROTO, &((o)->p))
212 #define gco2uv(o) check_exp((o)->gch.tt == LUA_TUPVAL, &((o)->uv))
[all …]
H A Dlgc.h99 #define iswhite(x) testbits((x)->gch.marked, WHITEBITS)
100 #define isblack(x) testbit((x)->gch.marked, BLACKBIT)
102 (!testbits((x)->gch.marked, WHITEBITS | bitmask(BLACKBIT)))
104 #define isold(x) testbit((x)->gch.marked, OLDBIT)
108 #define resetoldbit(o) resetbit((o)->gch.marked, OLDBIT)
112 #define isdead(g,v) isdeadm(otherwhite(g), (v)->gch.marked)
114 #define changewhite(x) ((x)->gch.marked ^= WHITEBITS)
115 #define gray2black(x) l_setbit((x)->gch.marked, BLACKBIT)
H A Dlgc.c58 (gch(x)->marked = cast_byte((gch(x)->marked & maskcolors) | luaC_white(g)))
137 lua_assert(gch(o)->tt != LUA_TTABLE); in luaC_barrier_()
217 gch(o)->marked = luaC_white(g); in luaC_newobj()
218 gch(o)->tt = tt; in luaC_newobj()
219 gch(o)->next = *list; in luaC_newobj()
244 switch (gch(o)->tt) { in reallymarkobject()
524 switch (gch(o)->tt) { in propagatemark()
662 switch (gch(o)->tt) { in freeobj()
734 int marked = gch(curr)->marked; in sweeplist()
861 lastnext = &gch(curr)->next; in separatetobefnz()
[all …]
H A Dlstring.c76 GCObject *next = gch(p)->next; /* save next */ in luaS_resize()
78 gch(p)->next = tb->hash[h]; /* chain it */ in luaS_resize()
139 o = gch(o)->next) { in internshrstr()
H A Dlobject.h174 #define righttt(obj) (ttype(obj) == gcvalue(obj)->gch.tt)
200 val_(io).gc=i_g; settt_(io, ctb(gch(i_g)->tt)); }
H A Dlfunc.c100 gch(o)->next = g->allgc; /* link upvalue into 'allgc' list */ in luaF_close()
H A Dldo.c229 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.td450 def IgnoredGCH : DiagGroup<"ignored-gch">;