Searched refs:cmp1 (Results 1 - 10 of 10) sorted by relevance

/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dktime.h138 ktime_compare(const ktime_t cmp1, const ktime_t cmp2) argument
141 if (cmp1 > cmp2)
143 else if (cmp1 < cmp2)
150 ktime_after(const ktime_t cmp1, const ktime_t cmp2) argument
153 return (ktime_compare(cmp1, cmp2) > 0);
157 ktime_before(const ktime_t cmp1, const ktime_t cmp2) argument
160 return (ktime_compare(cmp1, cmp2) < 0);
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dsplay-tree.c144 int cmp1, cmp2; local
148 cmp1 = (*sp->comp) (key, n->key);
151 if (cmp1 == 0)
155 if (cmp1 < 0)
169 if (cmp1 < 0)
177 if (cmp1 < 0 && cmp2 < 0)
182 else if (cmp1 > 0 && cmp2 > 0)
187 else if (cmp1 < 0 && cmp2 > 0)
192 else if (cmp1 > 0 && cmp2 < 0)
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dsplay-tree.c144 int cmp1, cmp2; local
148 cmp1 = (*sp->comp) (key, n->key);
151 if (cmp1 == 0)
155 if (cmp1 < 0)
169 if (cmp1 < 0)
177 if (cmp1 < 0 && cmp2 < 0)
182 else if (cmp1 > 0 && cmp2 > 0)
187 else if (cmp1 < 0 && cmp2 > 0)
192 else if (cmp1 > 0 && cmp2 < 0)
/freebsd-11-stable/contrib/dialog/
H A Dbuttons.c409 wint_t cmp1 = dlg_toupper(ch); local
410 if (cmp2 != 0 && (wchar_t) cmp1 == (wchar_t) dlg_toupper(cmp2)) {
/freebsd-11-stable/contrib/gcc/config/mips/
H A Dmips.c3055 mips_relational_operand_ok_p (enum rtx_code code, rtx cmp1)
3061 return reg_or_0_operand (cmp1, VOIDmode);
3065 return !TARGET_MIPS16 && cmp1 == const1_rtx;
3069 return arith_operand (cmp1, VOIDmode);
3072 return sle_operand (cmp1, VOIDmode);
3075 return sleu_operand (cmp1, VOIDmode); argument
3087 mips_canonicalize_comparison (enum rtx_code *code, rtx *cmp1,
3092 if (GET_CODE (*cmp1) != CONST_INT)
3095 original = INTVAL (*cmp1);
3104 *cmp1
3043 mips_relational_operand_ok_p(enum rtx_code code, rtx cmp1) argument
3120 mips_emit_int_relational(enum rtx_code code, bool *invert_ptr, rtx target, rtx cmp0, rtx cmp1) argument
3158 mips_zero_if_equal(rtx cmp0, rtx cmp1) argument
[all...]
/freebsd-11-stable/contrib/ntp/ntpd/
H A DMakefile.am299 @grep -v diff_ignore_line < k-g.out > cmp1
301 @cmp cmp1 cmp2 > /dev/null || \
306 @rm cmp1 cmp2
H A DMakefile.in1689 @grep -v diff_ignore_line < k-g.out > cmp1
1691 @cmp cmp1 cmp2 > /dev/null || \
1696 @rm cmp1 cmp2
/freebsd-11-stable/contrib/gcc/
H A Ddojump.c500 tree cmp0, cmp1;
508 cmp1 = fold_build2 (tcode2, TREE_TYPE (exp), op0, op1);
510 do_jump (cmp1, if_false_label, if_true_label);
499 tree cmp0, cmp1; local
H A Doptabs.c789 enum rtx_code cmp_code, rtx cmp1, rtx cmp2,
828 if (!emit_conditional_move (into_target, cmp_code, cmp1, cmp2, op1_mode,
833 if (!emit_conditional_move (outof_target, cmp_code, cmp1, cmp2, op1_mode,
878 rtx superword_op1, tmp, cmp1, cmp2;
914 cmp1 = simplify_expand_binop (op1_mode, and_optab, op1, tmp,
923 cmp1 = simplify_expand_binop (op1_mode, sub_optab, op1, tmp,
927 superword_op1 = cmp1;
929 if (cmp1 == 0)
934 tmp = simplify_relational_operation (cmp_code, SImode, op1_mode, cmp1, cmp2);
953 cmp_code, cmp1, cmp
784 expand_doubleword_shift_condmove(enum machine_mode op1_mode, optab binoptab, enum rtx_code cmp_code, rtx cmp1, rtx cmp2, rtx outof_input, rtx into_input, rtx subword_op1, rtx superword_op1, rtx outof_target, rtx into_target, int unsignedp, enum optab_methods methods, unsigned HOST_WIDE_INT shift_mask) argument
874 rtx superword_op1, tmp, cmp1, cmp2; local
[all...]
H A Dtree-vrp.c910 tree cmp1, cmp2; local
914 cmp1 = fold_binary_to_constant (GE_EXPR, boolean_type_node, val, vr->min);
915 if (!cmp1)
928 return cmp1 == boolean_true_node && cmp2 == boolean_true_node;
2751 int cmp1, cmp2; local
2758 cmp1 = compare_values_warnv (vr0->max, vr1->min, strict_overflow_p);
2760 if ((cmp1 == -1 && cmp2 == -1) || (cmp1 == 1 && cmp2 == 1))

Completed in 140 milliseconds