Searched refs:gray (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/sys/contrib/openzfs/module/lua/
H A Dlgc.c150 ** pointing to a white object as gray again. (Current implementation
157 black2gray(o); /* make object gray (again) */
178 black2gray(obj2gco(p)); /* make prototype gray (again) */
238 ** and turned black here. Other objects are marked gray and added
262 return; /* open upvalues remain gray */
267 gco2lcl(o)->gclist = g->gray;
268 g->gray = o;
272 gco2ccl(o)->gclist = g->gray;
273 g->gray = o;
277 linktable(gco2t(o), &g->gray);
[all...]
H A Dlstate.h31 ** mark objects referred by them. (They are always gray, so they must
132 GCObject *gray; /* list of gray objects */ member in struct:global_State
H A Dlstate.c298 g->gray = g->grayagain = NULL;
/freebsd-13-stable/contrib/lua/src/
H A Dlgc.c74 /* make an object gray (neither white nor black) */
149 lua_assert(!isgray(o)); /* cannot be in a gray list */
228 ** pointing to a white object as gray again.
234 if (getage(o) == G_TOUCHED2) /* already in gray list? */
235 set2gray(o); /* make it gray to become touched1 */
236 else /* link it in 'grayagain' and paint it gray */
246 set2gray(o); /* they will be gray forever */
283 ** 'twups' list, so they don't go to the gray list; nevertheless, they
284 ** are kept gray to avoid barriers, as their values will be revisited
286 ** gray lis
[all...]
H A Dlstate.h61 ** Moreover, there is another set of lists that control gray objects.
63 ** can become gray have such a field. The field is not the same
64 ** in all objects, but it always has this name.) Any gray object
66 ** must be gray (with two exceptions explained below):
68 ** 'gray': regular gray objects, still waiting to be visited.
78 ** The exceptions to that "gray rule" are:
79 ** - TOUCHED2 objects in generational mode stay in a gray list (because
83 ** - Open upvales are kept gray to avoid barriers, but they stay out
84 ** of gray list
243 GCObject *gray; /* list of gray objects */ member in struct:global_State
[all...]
H A Dlstate.c383 g->gray = g->grayagain = NULL;
/freebsd-13-stable/stand/common/
H A Dgfx_fb.c134 {75, 75, 75}, /* light gray */
136 {18, 20, 21}, /* dark gray */
228 uint32_t color, code, gray, level; local
261 for (gray = 0; gray < 24; gray++) {
262 level = (gray * 10) + 8;
263 code = 232 + gray;

Completed in 73 milliseconds