HomeSort by relevance Sort by last modified time
    Searched refs:LUA_MINSTACK (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/skia/third_party/lua/src/
lstate.h 50 #define BASIC_STACK_SIZE (2*LUA_MINSTACK)
liolib.c 306 luaL_argcheck(L, n <= LUA_MINSTACK - 3, LUA_MINSTACK - 3, "too many options");
433 luaL_checkstack(L, nargs+LUA_MINSTACK, "too many arguments");
ldo.c 227 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */
228 ci->top = L->top + LUA_MINSTACK;
307 luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */
311 ci->top = L->top + LUA_MINSTACK;
lstate.c 148 ci->top = L1->top + LUA_MINSTACK;
lua.c 311 luaL_checkstack(L, LUA_MINSTACK, "too many results to print");
lua.h 93 #define LUA_MINSTACK 20
lauxlib.c 335 const int extra = LUA_MINSTACK;

Completed in 49 milliseconds