marked             69 lib/lua/lfunc.c   uv->marked = luaC_white(g);
marked             35 lib/lua/lgc.c     ((x)->gch.marked = cast_byte(((x)->gch.marked & maskmarks) | luaC_white(g)))
marked             37 lib/lua/lgc.c  #define white2gray(x)	reset2bits((x)->gch.marked, WHITE0BIT, WHITE1BIT)
marked             38 lib/lua/lgc.c  #define black2gray(x)	resetbit((x)->gch.marked, BLACKBIT)
marked             40 lib/lua/lgc.c  #define stringmark(s)	reset2bits((s)->tsv.marked, WHITE0BIT, WHITE1BIT)
marked             43 lib/lua/lgc.c  #define isfinalized(u)		testbit((u)->marked, FINALIZEDBIT)
marked             44 lib/lua/lgc.c  #define markfinalized(u)	l_setbit((u)->marked, FINALIZEDBIT)
marked            170 lib/lua/lgc.c        h->marked &= ~(KEYWEAK | VALUEWEAK);  /* clear bits */
marked            171 lib/lua/lgc.c        h->marked |= cast_byte((weakkey << KEYWEAKBIT) |
marked            355 lib/lua/lgc.c      lua_assert(testbit(h->marked, VALUEWEAKBIT) ||
marked            356 lib/lua/lgc.c                 testbit(h->marked, KEYWEAKBIT));
marked            357 lib/lua/lgc.c      if (testbit(h->marked, VALUEWEAKBIT)) {
marked            414 lib/lua/lgc.c      if ((curr->gch.marked ^ WHITEBITS) & deadmask) {  /* not dead? */
marked            415 lib/lua/lgc.c        lua_assert(!isdead(g, curr) || testbit(curr->gch.marked, FIXEDBIT));
marked            689 lib/lua/lgc.c    o->gch.marked = luaC_white(g);
marked             65 lib/lua/lgc.h  #define iswhite(x)      test2bits((x)->gch.marked, WHITE0BIT, WHITE1BIT)
marked             66 lib/lua/lgc.h  #define isblack(x)      testbit((x)->gch.marked, BLACKBIT)
marked             70 lib/lua/lgc.h  #define isdead(g,v)	((v)->gch.marked & otherwhite(g) & WHITEBITS)
marked             72 lib/lua/lgc.h  #define changewhite(x)	((x)->gch.marked ^= WHITEBITS)
marked             73 lib/lua/lgc.h  #define gray2black(x)	l_setbit((x)->gch.marked, BLACKBIT)
marked             43 lib/lua/lobject.h #define CommonHeader	GCObject *next; lu_byte tt; lu_byte marked
marked            154 lib/lua/lstate.c   L->marked = luaC_white(g);
marked            155 lib/lua/lstate.c   set2bits(L->marked, FIXEDBIT, SFIXEDBIT);
marked             59 lib/lua/lstring.c   ts->tsv.marked = luaC_white(G(L));
marked            101 lib/lua/lstring.c   u->uv.marked = luaC_white(G(L));  /* is not finalized */
marked             24 lib/lua/lstring.h #define luaS_fix(s)	l_setbit((s)->tsv.marked, FIXEDBIT)
marked             77 modules/gui_fselect.c     unsigned char   marked;
marked            185 modules/gui_fselect.c         unsigned char marked, unsigned char isdir, unsigned char isparent, unsigned char isvalid)
marked            194 modules/gui_fselect.c         p->marked = marked;
marked            777 modules/gui_fselect.c             cl_marked = MAKE_COLOR((ptr==selected)?COLOR_RED:COLOR_GREY, (ptr->marked)?COLOR_YELLOW:COLOR_WHITE);
marked            822 modules/gui_fselect.c                 if (ptr->marked)
marked           1036 modules/gui_fselect.c             if (is_raw(ptr->name) && !ptr->marked)
marked           1086 modules/gui_fselect.c         selected->marked = !selected->marked;
marked           1105 modules/gui_fselect.c         if (ptr->marked)
marked           1162 modules/gui_fselect.c         if (ptr->isvalid && !ptr->isdir && ptr->marked)
marked           1192 modules/gui_fselect.c         if (ptr->marked && ptr->isvalid && !ptr->isdir)
marked           1229 modules/gui_fselect.c             ptr->marked = !ptr->marked;
marked           1242 modules/gui_fselect.c             if (ptr->marked && ptr->isvalid && !ptr->isdir)
marked           1260 modules/gui_fselect.c         if (ptr->marked && ptr->isvalid && !ptr->isdir && chk_name(ptr->name,selected->name))
marked           1277 modules/gui_fselect.c         if (ptr->marked && ptr->isvalid && !ptr->isdir && (ptr->size >= camera_sensor.raw_size))
marked           1311 modules/gui_fselect.c             if (ptr->marked && ptr->isvalid && !ptr->isdir)
marked           1538 modules/gui_fselect.c                     if (selected->marked == 0 && fselect_real_marked_count() > 0)