Home
last modified time | relevance | path

Searched refs:tostore (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlparser.c648 int tostore; /* number of array elements pending to be stored */ member
677 if (cc->tostore == LFIELDS_PER_FLUSH) { in closelistfield()
678 luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore); /* flush */ in closelistfield()
679 cc->tostore = 0; /* no more items pending */ in closelistfield()
685 if (cc->tostore == 0) return; in lastlistfield()
694 luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore); in lastlistfield()
704 cc->tostore++; in listfield()
737 cc.na = cc.nh = cc.tostore = 0; in constructor()
744 lua_assert(cc.v.k == VVOID || cc.tostore > 0); in constructor()
Dlcode.h80 LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore);
Dlcode.c867 void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) { in luaK_setlist() argument
869 int b = (tostore == LUA_MULTRET) ? 0 : tostore; in luaK_setlist()
870 lua_assert(tostore != 0); in luaK_setlist()