Searched refs:lua_checkstack (Results 1 – 15 of 15) sorted by relevance
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lcorolib.c | 20 if (!lua_checkstack(co, narg)) { in auxresume() 32 if (!lua_checkstack(L, nres + 1)) { in auxresume()
|
H A D | ltablib.c | 143 if (n > (INT_MAX - 10) || !lua_checkstack(L, ++n)) in unpack()
|
H A D | lapi.c | 89 LUA_API int lua_checkstack (lua_State *L, int size) { in lua_checkstack() function 1286 EXPORT_SYMBOL(lua_checkstack);
|
H A D | lauxlib.c | 296 if (!lua_checkstack(L, space + extra)) { in luaL_checkstack()
|
/freebsd/contrib/lua/src/ |
H A D | lcorolib.c | 34 if (l_unlikely(!lua_checkstack(co, narg))) { in auxresume() 41 if (l_unlikely(!lua_checkstack(L, nres + 1))) { in auxresume()
|
H A D | ltablib.c | 201 !lua_checkstack(L, (int)(++n)))) in tunpack()
|
H A D | ldblib.c | 36 if (l_unlikely(L != L1 && !lua_checkstack(L1, n))) in checkstack()
|
H A D | lua.h | 184 LUA_API int (lua_checkstack) (lua_State *L, int n); variable
|
H A D | luac.c | 175 if (!lua_checkstack(L,argc)) fatal("too many input files"); in pmain()
|
H A D | ltests.c | 1245 lua_checkstack(L, 1); /* open space for 'Aux' struct */ in panicback() 1439 lua_pushboolean(L1, lua_checkstack(L1, sz)); in runC()
|
H A D | lauxlib.c | 381 if (l_unlikely(!lua_checkstack(L, space))) { in luaL_checkstack()
|
H A D | lapi.c | 111 LUA_API int lua_checkstack (lua_State *L, int n) { in lua_checkstack() function
|
/freebsd/sys/contrib/openzfs/include/sys/lua/ |
H A D | lua.h | 152 LUA_API int (lua_checkstack) (lua_State *L, int sz); variable
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | zcp.c | 376 if (!lua_checkstack(state, 3)) { in zcp_lua_to_nvlist_impl()
|
/freebsd/lib/clang/liblldb/ |
H A D | LLDBWrapLua.cpp | 1439 lua_checkstack(L,5); in SWIG_Lua_namespace_register() 1603 lua_checkstack(L,5); in SWIG_Lua_class_do_get_item() 1642 lua_checkstack(L,5); in SWIG_Lua_class_do_get() 1722 lua_checkstack(L,5); in SWIG_Lua_class_do_set() 2181 lua_checkstack(L,5); in SWIG_Lua_resolve_metamethod() 2319 lua_checkstack(L,5); /* just in case */ in SWIG_Lua_class_register_static()
|