/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
lcode.h | 80 LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore);
|
lparser.c | 648 int tostore; /* number of array elements pending to be stored */ member in struct:ConsControl 677 if (cc->tostore == LFIELDS_PER_FLUSH) { 678 luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore); /* flush */ 679 cc->tostore = 0; /* no more items pending */ 685 if (cc->tostore == 0) return; 694 luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore); 704 cc->tostore++; 737 cc.na = cc.nh = cc.tostore = 0; 744 lua_assert(cc.v.k == VVOID || cc.tostore > 0); [all...] |
lcode.c | 867 void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) { 869 int b = (tostore == LUA_MULTRET) ? 0 : tostore; 870 lua_assert(tostore != 0);
|
/external/syslinux/com32/lua/src/ |
lcode.h | 80 LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore);
|
lparser.c | 648 int tostore; /* number of array elements pending to be stored */ member in struct:ConsControl 677 if (cc->tostore == LFIELDS_PER_FLUSH) { 678 luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore); /* flush */ 679 cc->tostore = 0; /* no more items pending */ 685 if (cc->tostore == 0) return; 694 luaK_setlist(fs, cc->t->u.info, cc->na, cc->tostore); 704 cc->tostore++; 737 cc.na = cc.nh = cc.tostore = 0; 744 lua_assert(cc.v.k == VVOID || cc.tostore > 0); [all...] |
lcode.c | 867 void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) { 869 int b = (tostore == LUA_MULTRET) ? 0 : tostore; 870 lua_assert(tostore != 0);
|