Searched refs:luaD_reallocstack (Results 1 – 7 of 7) sorted by relevance
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | ldo.h | 38 LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize);
|
H A D | ldo.c | 244 void luaD_reallocstack (lua_State *L, int newsize) { in luaD_reallocstack() function 268 luaD_reallocstack(L, ERRORSTACKSIZE); in luaD_growstack() 272 luaD_reallocstack(L, newsize); in luaD_growstack() 296 luaD_reallocstack(L, goodsize); /* shrink it */ in luaD_shrinkstack()
|
H A D | llimits.h | 302 #define condmovestack(L) luaD_reallocstack((L), (L)->stacksize)
|
/freebsd/contrib/lua/src/ |
H A D | ldo.h | 79 LUAI_FUNC int luaD_reallocstack (lua_State *L, int newsize, int raiseerror);
|
H A D | ldo.c | 212 int luaD_reallocstack (lua_State *L, int newsize, int raiseerror) { in luaD_reallocstack() function 261 return luaD_reallocstack(L, newsize, raiseerror); in luaD_growstack() 265 luaD_reallocstack(L, ERRORSTACKSIZE, raiseerror); in luaD_growstack() 307 luaD_reallocstack(L, nsize, 0); /* ok if that fails */ in luaD_shrinkstack()
|
H A D | llimits.h | 370 { int sz_ = stacksize(L); pre; luaD_reallocstack((L), sz_, 0); pos; }
|
H A D | lstate.c | 337 luaD_reallocstack(L, cast_int(ci->top.p - L->stack.p), 0); in luaE_resetthread()
|