Home | History | Annotate | Download | only in antlr

Lines Matching defs:isp

41 static int isp = MAX_INT_STACK;

1327 require(isp>0, "pushint: stack overflow");
1328 istack[--isp] = i;
1338 require(isp<MAX_INT_STACK, "popint: stack underflow");
1339 return istack[isp++];
1349 return MAX_INT_STACK-isp;
1359 isp = MAX_INT_STACK;
1369 return isp==MAX_INT_STACK;
1379 require(isp<MAX_INT_STACK, "topint: stack underflow");
1380 return istack[isp];