Searched defs:oldtop (Results 1 - 4 of 4) sorted by relevance

/external/valgrind/none/tests/
H A Dshorts.c8 short oldtop = w->ot; local
13 if (newtop < oldtop) { fprintf(stderr,"case1\n");
14 // FillArea(w, newtop, XawMin(newbot, oldtop), 1);
16 if (newtop > oldtop) { fprintf(stderr,"case2\n");
17 // FillArea(w, oldtop, XawMin(newtop, oldbot), 0);
20 // FillArea(w, XawMax(newbot, oldtop), oldbot, 0);
/external/python/cpython2/Objects/
H A Dframeobject.c523 PyObject **fastlocals, **p, **oldtop; local
531 oldtop = f->f_stacktop;
546 if (oldtop != NULL) {
547 for (p = f->f_valuestack; p < oldtop; p++)
/external/python/cpython3/Objects/
H A Dframeobject.c488 PyObject **fastlocals, **p, **oldtop; local
496 oldtop = f->f_stacktop;
512 if (oldtop != NULL) {
513 for (p = f->f_valuestack; p < oldtop; p++)
/external/syslinux/com32/lua/src/
H A Dldo.c84 static void seterrorobj (lua_State *L, int errcode, StkId oldtop) { argument
87 setsvalue2s(L, oldtop, G(L)->memerrmsg); /* reuse preregistered msg. */
91 setsvalue2s(L, oldtop, luaS_newliteral(L, "error in error handling"));
95 setobjs2s(L, oldtop, L->top - 1); /* error message on current top */
99 L->top = oldtop + 1;
462 StkId oldtop; local
466 oldtop = restorestack(L, ci->extra);
467 luaF_close(L, oldtop);
468 seterrorobj(L, status, oldtop);
605 StkId oldtop local
[all...]

Completed in 149 milliseconds