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

  /src/external/mit/lua/dist/src/
ldo.h 29 if (l_unlikely(L->stack_last.p - L->top.p <= (n))) \
lstate.h 139 ** space is not included in 'stack_last'. It is used only to avoid stack
149 #define stacksize(th) cast_int((th)->stack_last.p - (th)->stack.p)
319 StkIdRel stack_last; /* end of stack (last element + 1) */ member in struct:lua_State
ldo.c 235 L->stack_last.p = L->stack.p + newsize;
287 lua_assert(lim <= L->stack_last.p + EXTRA_STACK);
527 lua_assert(ci->top.p <= L->stack_last.p);
568 lua_assert(ci->top.p <= L->stack_last.p);
612 lua_assert(ci->top.p <= L->stack_last.p);
ltm.c 265 lua_assert(L->top.p <= ci->top.p && ci->top.p <= L->stack_last.p);
lstate.c 192 L1->stack_last.p = L1->stack.p + BASIC_STACK_SIZE;
lapi.c 123 if (L->stack_last.p - L->top.p > n) /* stack large enough? */
lgc.c 644 for (; o < th->stack_last.p + EXTRA_STACK; o++)
lvm.c 1264 lua_assert(base <= L->top.p && L->top.p <= L->stack_last.p);

Completed in 33 milliseconds