Home
last modified time | relevance | path

Searched refs:currentwhite (Results 1 – 9 of 9) sorted by relevance

/freebsd-14-stable/sys/contrib/openzfs/module/lua/
HDlgc.h110 #define otherwhite(g) (g->currentwhite ^ WHITEBITS)
119 #define luaC_white(g) cast(lu_byte, (g)->currentwhite & WHITEBITS)
HDlstate.h122 lu_byte currentwhite; member
HDlstate.c273 g->currentwhite = bit2mask(WHITE0BIT, FIXEDBIT); in lua_newstate()
HDlgc.c987 g->currentwhite = WHITEBITS; /* this "white" makes all objects look dead */ in luaC_freeallobjects()
1032 g->currentwhite = cast_byte(otherwhite(g)); /* flip current white */ in atomic()
/freebsd-14-stable/contrib/lua/src/
HDlgc.h94 #define otherwhite(g) ((g)->currentwhite ^ WHITEBITS)
102 #define luaC_white(g) cast_byte((g)->currentwhite & WHITEBITS)
HDlstate.h265 lu_byte currentwhite; member
HDlstate.c369 g->currentwhite = bitmask(WHITE0BIT); in lua_newstate()
HDlgc.c1560 g->currentwhite = cast_byte(otherwhite(g)); /* flip current white */ in atomic()
HDltests.c330 printf("%d(%02X) - ", g->gcstate, g->currentwhite); in testobjref()