Home
last modified time | relevance | path

Searched refs:LUAI_MAXCALLS (Results 1 – 3 of 3) sorted by relevance

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dldo.c73 if (L->size_ci > LUAI_MAXCALLS) { /* there was an overflow? */ in restore_stack_limit()
75 if (inuse + 1 < LUAI_MAXCALLS) /* can `undo' overflow? */ in restore_stack_limit()
76 luaD_reallocCI(L, LUAI_MAXCALLS); in restore_stack_limit()
170 if (L->size_ci > LUAI_MAXCALLS) /* overflow while handling overflow? */ in growCI()
174 if (L->size_ci > LUAI_MAXCALLS) in growCI()
H A Dluaconf.h435 #define LUAI_MAXCALLS 20000 macro
H A Dlgc.c244 if (L->size_ci > LUAI_MAXCALLS) /* handling overflow? */ in checkstacksizes()