Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/lua/
H A Dlgc.h111 #define otherwhite(g) (g->currentwhite ^ WHITEBITS)
120 #define luaC_white(g) cast(lu_byte, (g)->currentwhite & WHITEBITS)
H A Dlstate.h123 lu_byte currentwhite; member
H A Dlstate.c274 g->currentwhite = bit2mask(WHITE0BIT, FIXEDBIT); in lua_newstate()
H A Dlgc.c988 g->currentwhite = WHITEBITS; /* this "white" makes all objects look dead */ in luaC_freeallobjects()
1033 g->currentwhite = cast_byte(otherwhite(g)); /* flip current white */ in atomic()
/freebsd/contrib/lua/src/
H A Dlgc.h94 #define otherwhite(g) ((g)->currentwhite ^ WHITEBITS)
102 #define luaC_white(g) cast_byte((g)->currentwhite & WHITEBITS)
H A Dlstate.h265 lu_byte currentwhite; member
H A Dlstate.c372 g->currentwhite = bitmask(WHITE0BIT); in lua_newstate()
H A Dlgc.c1562 g->currentwhite = cast_byte(otherwhite(g)); /* flip current white */ in atomic()
H A Dltests.c330 printf("%d(%02X) - ", g->gcstate, g->currentwhite); in testobjref()