OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tbclist
(Results
1 - 7
of
7
) sorted by relevancy
/src/external/mit/lua/dist/src/
lfunc.c
161
** Maximum value for deltas in '
tbclist
', dependent on the type
166
((256ul << ((sizeof(L->stack.p->
tbclist
.delta) - 1) * 8)) - 1)
173
lua_assert(level > L->
tbclist
.p);
177
while (cast_uint(level - L->
tbclist
.p) > MAXDELTA) {
178
L->
tbclist
.p += MAXDELTA; /* create a dummy node at maximum delta */
179
L->
tbclist
.p->
tbclist
.delta = 0;
181
level->
tbclist
.delta = cast(unsigned short, level - L->
tbclist
.p);
182
L->
tbclist
.p = level
[
all
...]
lstate.h
322
StkIdRel
tbclist
; /* list of to-be-closed variables */
member in struct:lua_State
ldo.c
173
L->
tbclist
.offset = savestack(L, L->
tbclist
.p);
190
L->
tbclist
.p = restorestack(L, L->
tbclist
.offset);
lapi.c
204
api_check(L, L->
tbclist
.p < L->top.p, "previous pop of an unclosed slot");
206
if (diff < 0 && L->
tbclist
.p >= newtop) {
219
api_check(L, hastocloseCfunc(L->ci->nresults) && L->
tbclist
.p == level,
1286
api_check(L, L->
tbclist
.p < o, "given index below or equal a marked one");
lobject.h
145
** Entries in a Lua stack. Field '
tbclist
' forms a list of all
157
}
tbclist
;
member in union:StackValue
lstate.c
188
L1->
tbclist
.p = L1->stack.p;
lvm.c
1805
lua_assert(L->
tbclist
.p < base); /* no pending tbc variables */
Completed in 24 milliseconds
Indexes created Sun Jun 21 00:25:28 UTC 2026