HomeSort by: relevance | last modified time | path
    Searched defs:nCcalls (Results 1 - 2 of 2) sorted by relevancy

  /src/external/mit/lua/dist/src/
lstate.h 97 ** About 'nCcalls': This count has two parts: the lower 16 bits counts
106 #define yieldable(L) (((L)->nCcalls & 0xffff0000) == 0)
109 #define getCcalls(L) ((L)->nCcalls & 0xffff)
113 #define incnny(L) ((L)->nCcalls += 0x10000)
116 #define decnny(L) ((L)->nCcalls -= 0x10000)
329 l_uint32 nCcalls; /* number of nested (non-yieldable | C) calls */
lstate.h 97 ** About 'nCcalls': This count has two parts: the lower 16 bits counts
106 #define yieldable(L) (((L)->nCcalls & 0xffff0000) == 0)
109 #define getCcalls(L) ((L)->nCcalls & 0xffff)
113 #define incnny(L) ((L)->nCcalls += 0x10000)
116 #define decnny(L) ((L)->nCcalls -= 0x10000)
329 l_uint32 nCcalls; /* number of nested (non-yieldable | C) calls */

Completed in 29 milliseconds