Home
last modified time | relevance | path

Searched refs:twups (Results 1 – 5 of 5) sorted by relevance

/external/lua/src/
Dlfunc.c77 L->twups = G(L)->twups; /* link it to the list */ in newupval()
78 G(L)->twups = L; in newupval()
Dlstate.h290 struct lua_State *twups; /* list of threads with open upvalues */ member
318 struct lua_State *twups; /* list of threads with open upvalues */ member
Dlfunc.h22 #define isintwups(L) (L->twups != L)
Dlgc.c364 lua_State **p = &g->twups; in remarkupvals()
369 p = &thread->twups; /* keep marked thread with upvalues in the list */ in remarkupvals()
373 *p = thread->twups; /* remove thread from the list */ in remarkupvals()
374 thread->twups = thread; /* mark that it is out of list */ in remarkupvals()
641 th->twups = g->twups; /* link it back to the list */ in traversethread()
642 g->twups = th; in traversethread()
Dlstate.c294 L->twups = L; /* thread has no upvalues */ in preinit_thread()
421 g->twups = NULL; in lua_newstate()