Home
last modified time | relevance | path

Searched refs:lua_checkstack (Results 1 – 6 of 6) sorted by relevance

/redis-3.2.3/deps/lua/src/
H A Dlbaselib.c349 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()
H A Dluac.c165 if (!lua_checkstack(L,argc)) fatal("too many input files"); in pmain()
H A Dlua.h126 LUA_API int (lua_checkstack) (lua_State *L, int sz); variable
H A Dlua_cjson.c549 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()
H A Dlauxlib.c141 if (!lua_checkstack(L, space)) in luaL_checkstack()
H A Dlapi.c95 LUA_API int lua_checkstack (lua_State *L, int size) { in lua_checkstack() function