HomeSort by: relevance | last modified time | path
    Searched refs:LUAI_MAXSTACK (Results 1 - 3 of 3) sorted by relevancy

  /src/external/mit/lua/dist/src/
ldo.c 203 #define ERRORSTACKSIZE (LUAI_MAXSTACK + 200)
221 lua_assert(newsize <= LUAI_MAXSTACK || newsize == ERRORSTACKSIZE);
248 if (l_unlikely(size > LUAI_MAXSTACK)) {
257 else if (n < LUAI_MAXSTACK) { /* avoids arithmetic overflows */
260 if (newsize > LUAI_MAXSTACK) /* cannot cross the limit */
261 newsize = LUAI_MAXSTACK;
264 if (l_likely(newsize <= LUAI_MAXSTACK))
300 ** it is not, 'max' (limited by LUAI_MAXSTACK) will be smaller than
306 int max = (inuse > LUAI_MAXSTACK / 3) ? LUAI_MAXSTACK : inuse * 3
    [all...]
luaconf.h 742 @@ LUAI_MAXSTACK limits the size of the Lua stack.
749 #define LUAI_MAXSTACK 1000000
751 #define LUAI_MAXSTACK 15000
lua.h 45 ** (-LUAI_MAXSTACK is the minimum valid index; we keep some free empty
48 #define LUA_REGISTRYINDEX (-LUAI_MAXSTACK - 1000)

Completed in 29 milliseconds