OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maxstacksize
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/skia/third_party/lua/src/
ldump.c
145
DumpChar(f->
maxstacksize
,D);
lfunc.c
125
f->
maxstacksize
= 0;
lundump.c
177
f->
maxstacksize
=LoadByte(S);
luac.c
393
S(f->
maxstacksize
),S(f->sizeupvalues));
lcode.c
263
if (newstack > fs->f->
maxstacksize
) {
266
fs->f->
maxstacksize
= cast_byte(newstack);
ldo.c
327
luaD_checkstack(L, p->
maxstacksize
);
337
ci->top = base + p->
maxstacksize
;
lobject.h
488
lu_byte
maxstacksize
; /* maximum stack used by this function */
member in struct:Proto
lparser.c
546
f->
maxstacksize
= 2; /* registers 0/1 are always valid */
[
all
...]
lvm.c
748
lua_assert(L->top == oci->u.l.base + getproto(ofunc)->
maxstacksize
);
Completed in 3376 milliseconds