Searched refs:lua_settop (Results 1 – 12 of 12) sorted by relevance
/netbsd-src/external/mit/lua/dist/src/ |
H A D | lbaselib.c | 88 lua_settop(L, 1); /* yes; return it */ in luaB_tonumber() 120 lua_settop(L, 1); in luaB_error() 147 lua_settop(L, 2); in luaB_setmetatable() 173 lua_settop(L, 2); in luaB_rawget() 182 lua_settop(L, 3); in luaB_rawset() 273 lua_settop(L, 2); /* create a 2nd argument if there isn't one */ in luaB_next() 406 lua_settop(L, RESERVEDSLOT); /* create reserved slot */ in luaB_load() 424 lua_settop(L, 1); in luaB_dofile() 440 lua_settop(L, 1); /* leave only message (default if no other one) */ in luaB_assert()
|
H A D | ldblib.c | 63 lua_settop(L, 2); in db_setmetatable() 85 lua_settop(L, 2); in db_setuservalue() 248 lua_settop(L, arg+3); in db_setlocal() 374 lua_settop(L, arg+1); in db_sethook() 435 lua_settop(L, 0); /* remove eventual returns */ in db_debug()
|
H A D | lmathlib.c | 99 lua_settop(L, 1); /* integer is its own floor */ in math_floor() 110 lua_settop(L, 1); /* integer is its own ceil */ in math_ceil() 143 lua_settop(L, 1); /* number is its own integer part */ in math_modf()
|
H A D | lua.c | 565 lua_settop(L, 0); in loadline() 607 lua_settop(L, 0); /* clear stack */ in doREPL()
|
H A D | lua.h | 184 LUA_API void (lua_settop) (lua_State *L, int idx); variable 399 #define lua_pop(L,n) lua_settop(L, -(n)-1)
|
H A D | lauxlib.c | 96 lua_settop(L, top + 1); /* remove table "loaded" and name copy */ in pushglobalfuncname() 100 lua_settop(L, top); /* remove function and global table */ in pushglobalfuncname() 823 lua_settop(L, fnameindex); /* ignore results from 'lua_load' */ in luaL_loadfilex()
|
H A D | liolib.c | 637 lua_settop(L , 1); in io_readline() 651 lua_settop(L, 0); /* clear stack */ in io_readline()
|
H A D | loslib.c | 353 lua_settop(L, 1); /* make sure table is at the top */ in os_time()
|
H A D | ltablib.c | 409 lua_settop(L, 2); /* make sure there are two arguments */ in sort()
|
H A D | lstrlib.c | 241 lua_settop(L, 1); /* ensure function is on the top of the stack */ in str_dump() 282 lua_settop(L, 2); /* back to the original arguments */ in trymt() 868 lua_settop(L, 2); /* keep strings on closure to avoid being collected */ in gmatch()
|
H A D | loadlib.c | 661 lua_settop(L, 1); /* LOADED table will be at index 2 */ in ll_require()
|
H A D | lapi.c | 187 LUA_API void lua_settop (lua_State *L, int idx) { in lua_settop() function
|