Lines Matching refs:second
616 _Unwind_Word first, second; in execute_stack_op() local
619 second = stack[stack_elt]; in execute_stack_op()
625 result = second & first; in execute_stack_op()
628 result = (_Unwind_Sword) second / (_Unwind_Sword) first; in execute_stack_op()
631 result = second - first; in execute_stack_op()
634 result = (_Unwind_Sword) second % (_Unwind_Sword) first; in execute_stack_op()
637 result = second * first; in execute_stack_op()
640 result = second | first; in execute_stack_op()
643 result = second + first; in execute_stack_op()
646 result = second << first; in execute_stack_op()
649 result = second >> first; in execute_stack_op()
652 result = (_Unwind_Sword) second >> first; in execute_stack_op()
655 result = second ^ first; in execute_stack_op()
658 result = (_Unwind_Sword) first <= (_Unwind_Sword) second; in execute_stack_op()
661 result = (_Unwind_Sword) first >= (_Unwind_Sword) second; in execute_stack_op()
664 result = (_Unwind_Sword) first == (_Unwind_Sword) second; in execute_stack_op()
667 result = (_Unwind_Sword) first < (_Unwind_Sword) second; in execute_stack_op()
670 result = (_Unwind_Sword) first > (_Unwind_Sword) second; in execute_stack_op()
673 result = (_Unwind_Sword) first != (_Unwind_Sword) second; in execute_stack_op()