Lines Matching refs:cmp

3650 		    int		cmp = FALSE;  in exec_instructions()  local
3659 case EXPR_EQUAL: cmp = arg1 == arg2; break; in exec_instructions()
3660 case EXPR_NEQUAL: cmp = arg1 != arg2; break; in exec_instructions()
3661 case EXPR_GREATER: cmp = arg1 > arg2; break; in exec_instructions()
3662 case EXPR_GEQUAL: cmp = arg1 >= arg2; break; in exec_instructions()
3663 case EXPR_SMALLER: cmp = arg1 < arg2; break; in exec_instructions()
3664 case EXPR_SEQUAL: cmp = arg1 <= arg2; break; in exec_instructions()
3665 default: cmp = 0; break; in exec_instructions()
3671 tv1->vval.v_number = cmp ? VVAL_TRUE : VVAL_FALSE; in exec_instructions()
3685 int cmp = FALSE; in exec_instructions() local
3690 case EXPR_EQUAL: cmp = in exec_instructions()
3692 case EXPR_NEQUAL: cmp = in exec_instructions()
3694 case EXPR_IS: cmp = arg1 == arg2; break; in exec_instructions()
3695 case EXPR_ISNOT: cmp = arg1 != arg2; break; in exec_instructions()
3696 default: cmp = 0; break; in exec_instructions()
3702 tv1->vval.v_number = cmp ? VVAL_TRUE : VVAL_FALSE; in exec_instructions()
3712 int cmp = FALSE; in exec_instructions() local
3716 case EXPR_EQUAL: cmp = blob_equal(arg1, arg2); break; in exec_instructions()
3717 case EXPR_NEQUAL: cmp = !blob_equal(arg1, arg2); break; in exec_instructions()
3718 case EXPR_IS: cmp = arg1 == arg2; break; in exec_instructions()
3719 case EXPR_ISNOT: cmp = arg1 != arg2; break; in exec_instructions()
3720 default: cmp = 0; break; in exec_instructions()
3726 tv1->vval.v_number = cmp ? VVAL_TRUE : VVAL_FALSE; in exec_instructions()