Home
last modified time | relevance | path

Searched refs:oldtop (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dldo.c84 static void seterrorobj (lua_State *L, int errcode, StkId oldtop) { in seterrorobj() argument
87 setsvalue2s(L, oldtop, G(L)->memerrmsg); /* reuse preregistered msg. */ in seterrorobj()
91 setsvalue2s(L, oldtop, luaS_newliteral(L, "error in error handling")); in seterrorobj()
95 setobjs2s(L, oldtop, L->top - 1); /* error message on current top */ in seterrorobj()
99 L->top = oldtop + 1; in seterrorobj()
462 StkId oldtop; in recover() local
466 oldtop = restorestack(L, ci->extra); in recover()
467 luaF_close(L, oldtop); in recover()
468 seterrorobj(L, status, oldtop); in recover()
605 StkId oldtop = restorestack(L, old_top); in luaD_pcall() local
[all …]
Dldo.h36 ptrdiff_t oldtop, ptrdiff_t ef);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dframeobject.c525 PyObject **fastlocals, **p, **oldtop; in frame_clear() local
533 oldtop = f->f_stacktop; in frame_clear()
548 if (oldtop != NULL) { in frame_clear()
549 for (p = f->f_valuestack; p < oldtop; p++) in frame_clear()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dframeobject.c523 PyObject **fastlocals, **p, **oldtop; in frame_clear() local
531 oldtop = f->f_stacktop; in frame_clear()
546 if (oldtop != NULL) { in frame_clear()
547 for (p = f->f_valuestack; p < oldtop; p++) in frame_clear()