Lines Matching refs:stktop
46 static int stktop; variable
170 stktop++; in growstk()
171 if (stktop >= maxstk) { in growstk()
284 stktop = -1; in process()
334 if (stk[stktop].opno == SZ) { in process()
335 stktop--; in process()
343 stk[stktop].opno = SZ; in process()
344 stk[stktop].pl = pl; in process()
345 stk[stktop].parm = n; in process()
346 stk[stktop].lno = lineno; in process()
351 if (stk[stktop].opno == FT) { in process()
352 stktop--; in process()
360 stk[stktop].opno = FT; in process()
361 stk[stktop].pl = 1; in process()
362 stk[stktop].parm = n; in process()
363 stk[stktop].lno = lineno; in process()
372 for (i = stktop; i >= 0; i--) { in process()
414 if (stktop >= 0 && eq(mac, br[stk[stktop].opno].clbr)) in chkcmd()
415 stktop--; /* OK. Pop & forget */ in chkcmd()
422 stk[stktop].opno = i; in chkcmd()
423 stk[stktop].pl = 0; in chkcmd()
424 stk[stktop].parm = 0; in chkcmd()
425 stk[stktop].lno = lineno; in chkcmd()
452 for (j = stktop; j >= 0; j--) in nomatch()
455 if (j == stktop-2) { in nomatch()
464 stktop = j -1; in nomatch()
478 } else for (i = j+1; i <= stktop; i++) { in nomatch()
481 stktop = j-1; in nomatch()