Searched refs:lua_checkstack (Results 1 – 6 of 6) sorted by relevance
349 if (n <= 0 || !lua_checkstack(L, n)) /* n <= 0 means arith. overflow */ in luaB_unpack()520 if (!lua_checkstack(co, narg)) in auxresume()531 if (!lua_checkstack(L, nres + 1)) in auxresume()
165 if (!lua_checkstack(L,argc)) fatal("too many input files"); in pmain()
126 LUA_API int (lua_checkstack) (lua_State *L, int sz); variable
549 if (current_depth <= cfg->encode_max_depth && lua_checkstack(l, 3)) in json_check_encode_depth()1126 lua_checkstack(l, slots)) { in json_decode_descend()
141 if (!lua_checkstack(L, space)) in luaL_checkstack()
95 LUA_API int lua_checkstack (lua_State *L, int size) { in lua_checkstack() function