Lines Matching refs:stack_elt
326 int stack_elt; in execute_stack_op() local
329 stack_elt = 1; in execute_stack_op()
500 if (stack_elt < 1) in execute_stack_op()
502 result = stack[stack_elt - 1]; in execute_stack_op()
506 if (--stack_elt < 0) in execute_stack_op()
512 if (offset >= stack_elt - 1) in execute_stack_op()
514 result = stack[stack_elt - 1 - offset]; in execute_stack_op()
518 if (stack_elt < 2) in execute_stack_op()
520 result = stack[stack_elt - 2]; in execute_stack_op()
527 if (stack_elt < 3) in execute_stack_op()
529 t1 = stack[stack_elt - 1]; in execute_stack_op()
530 t2 = stack[stack_elt - 2]; in execute_stack_op()
531 t3 = stack[stack_elt - 3]; in execute_stack_op()
532 stack[stack_elt - 1] = t2; in execute_stack_op()
533 stack[stack_elt - 2] = t3; in execute_stack_op()
534 stack[stack_elt - 3] = t1; in execute_stack_op()
545 if (--stack_elt < 0) in execute_stack_op()
547 result = stack[stack_elt]; in execute_stack_op()
617 if ((stack_elt -= 2) < 0) in execute_stack_op()
619 second = stack[stack_elt]; in execute_stack_op()
620 first = stack[stack_elt + 1]; in execute_stack_op()
689 if (--stack_elt < 0) in execute_stack_op()
693 if (stack[stack_elt] != 0) in execute_stack_op()
705 if ((size_t) stack_elt >= sizeof (stack) / sizeof (*stack)) in execute_stack_op()
707 stack[stack_elt++] = result; in execute_stack_op()
713 if (--stack_elt < 0) in execute_stack_op()
715 return stack[stack_elt]; in execute_stack_op()