Home
last modified time | relevance | path

Searched refs:CSTACKCF (Results 1 – 2 of 2) sorted by relevance

/external/lua/src/
Dlstate.h112 #define CSTACKCF 10 macro
125 #define CSTACKERR (8 * CSTACKCF)
126 #define CSTACKMARK (CSTACKERR - (CSTACKCF + 2))
127 #define CSTACKERRMARK (CSTACKCF + 2)
148 #define incXCcalls(L) ((L)->nCcalls += 0x10000 - CSTACKCF)
151 #define decXCcalls(L) ((L)->nCcalls -= 0x10000 - CSTACKCF)
Dldo.c676 L->nCcalls = getCcalls(from) - L->nci - CSTACKCF; in lua_resume()