Lines Matching refs:pop
56 * print pop() as in printf(3), as defined in the local
60 * %c print pop() like %c in printf(3)
61 * %l pop() a string address and push its length.
71 * %+ %- %* %/ %m arithmetic (%m is mod): push(pop() op pop())
72 * %& %| %^ bit operations: push(pop() op pop())
73 * %= %> %< logical operations: push(pop() op pop())
74 * %A %O logical AND, OR push(pop() op pop())
75 * %! %~ unary operations push(op pop())
130 pop(STACK *st)
139 * a long to a char *. It is identical to the pop routine, except for the
402 (void) pop(&stk);
476 (void) pop(&stk);
541 /* %Pi: pop from stack into variable i (a-z) */
544 vars[*cp++ - 'a'] = pop(&stk);
549 (short) pop(&stk);
619 op2 = pop(&stk);
620 op = pop(&stk);
624 op2 = pop(&stk);
625 op = pop(&stk);
629 op2 = pop(&stk);
630 op = pop(&stk);
634 op2 = pop(&stk);
635 op = pop(&stk);
639 op2 = pop(&stk);
640 op = pop(&stk);
644 op2 = pop(&stk);
645 op = pop(&stk);
649 op2 = pop(&stk);
650 op = pop(&stk);
654 op2 = pop(&stk);
655 op = pop(&stk);
659 op2 = pop(&stk);
660 op = pop(&stk);
664 op2 = pop(&stk);
665 op = pop(&stk);
669 op2 = pop(&stk);
670 op = pop(&stk);
674 op2 = pop(&stk);
675 op = pop(&stk);
679 op2 = pop(&stk);
680 op = pop(&stk);
686 push(&stk, !pop(&stk));
689 push(&stk, ~pop(&stk));
703 if (!pop(&stk))