Searched refs:cmp2 (Results 1 - 9 of 9) 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/dialog/
H A Dbuttons.c64 wchar_t cmp2[2]; local
71 memset(cmp2, 0, sizeof(cmp2));
72 check = mbrtowc(cmp2, string, len, &state);
74 cmp2[0] = 0;
77 cmp2[0] = UCH(*string);
80 result = cmp2[0];
407 int cmp2 = string_to_char(&string); local
410 if (cmp2 != 0 && (wchar_t) cmp1 == (wchar_t) dlg_toupper(cmp2)) {
[all...]
/freebsd-11-stable/contrib/binutils/ld/emultempl/
H A Dspu_ovl.S66 #define cmp2 $7 define
155 ceqi cmp2, bchn, 0
156 or cmp, cmp, cmp2
161 rotqbyi cmp2, cmp2, 4
162 andc lnkr, lnkr, cmp2
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dsplay-tree.c144 int cmp1, cmp2; local
164 cmp2 = (*sp->comp) (key, c->key);
165 if (cmp2 == 0
166 || (cmp2 < 0 && !c->left)
167 || (cmp2 > 0 && !c->right))
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
164 cmp2 = (*sp->comp) (key, c->key);
165 if (cmp2 == 0
166 || (cmp2 < 0 && !c->left)
167 || (cmp2 > 0 && !c->right))
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/ntp/ntpd/
H A DMakefile.am300 @grep -v diff_ignore_line < $(srcdir)/ntp_keyword.h > cmp2
301 @cmp cmp1 cmp2 > /dev/null || \
306 @rm cmp1 cmp2
H A DMakefile.in1690 @grep -v diff_ignore_line < $(srcdir)/ntp_keyword.h > cmp2
1691 @cmp cmp1 cmp2 > /dev/null || \
1696 @rm cmp1 cmp2
/freebsd-11-stable/contrib/gcc/
H A Dtree-vrp.c910 tree cmp1, cmp2; local
921 cmp2 = fold_binary_to_constant (LE_EXPR, boolean_type_node, val, vr->max);
925 if (!cmp2)
928 return cmp1 == boolean_true_node && cmp2 == boolean_true_node;
2751 int cmp1, cmp2; local
2759 cmp2 = compare_values_warnv (vr0->min, vr1->max, strict_overflow_p);
2760 if ((cmp1 == -1 && cmp2 == -1) || (cmp1 == 1 && cmp2 == 1))
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;
916 cmp2 = CONST0_RTX (op1_mode);
925 cmp2 = CONST0_RTX (op1_mode);
934 tmp = simplify_relational_operation (cmp_code, SImode, op1_mode, cmp1, cmp2);
953 cmp_code, cmp1, cmp2,
968 do_compare_rtx_and_jump (cmp1, cmp2, cmp_code, false, op1_mode,
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

Completed in 120 milliseconds