Searched refs:raiseerror (Results 1 - 2 of 2) sorted by relevance

/netbsd-current/external/mit/lua/dist/src/
H A Dldo.h81 LUAI_FUNC int luaD_reallocstack (lua_State *L, int newsize, int raiseerror);
82 LUAI_FUNC int luaD_growstack (lua_State *L, int n, int raiseerror);
H A Dldo.c214 ** to 'raiseerror'.
216 int luaD_reallocstack (lua_State *L, int newsize, int raiseerror) { argument
229 if (raiseerror)
243 ** Try to grow the stack by at least 'n' elements. When 'raiseerror'
246 int luaD_growstack (lua_State *L, int n, int raiseerror) { argument
253 if (raiseerror)
255 return 0; /* if not 'raiseerror', just signal it */
265 return luaD_reallocstack(L, newsize, raiseerror);
269 luaD_reallocstack(L, ERRORSTACKSIZE, raiseerror);
270 if (raiseerror)
[all...]

Completed in 845 milliseconds