Home
last modified time | relevance | path

Searched refs:cmp2 (Results 1 – 13 of 13) sorted by relevance

/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dktime.h147 ktime_compare(const ktime_t cmp1, const ktime_t cmp2) in ktime_compare() argument
150 if (cmp1 > cmp2) in ktime_compare()
152 else if (cmp1 < cmp2) in ktime_compare()
159 ktime_after(const ktime_t cmp1, const ktime_t cmp2) in ktime_after() argument
162 return (ktime_compare(cmp1, cmp2) > 0); in ktime_after()
166 ktime_before(const ktime_t cmp1, const ktime_t cmp2) in ktime_before() argument
169 return (ktime_compare(cmp1, cmp2) < 0); in ktime_before()
/freebsd/contrib/libucl/src/
H A Ducl_hash.c192 } cmp1, cmp2; in ucl_hash_caseless_equal() local
205 cmp2.c[0] = lc_map[c1]; in ucl_hash_caseless_equal()
206 cmp2.c[1] = lc_map[c2]; in ucl_hash_caseless_equal()
207 cmp2.c[2] = lc_map[c3]; in ucl_hash_caseless_equal()
208 cmp2.c[3] = lc_map[c4]; in ucl_hash_caseless_equal()
210 if (cmp1.n != cmp2.n) { in ucl_hash_caseless_equal()
555 } cmp1, cmp2; in ucl_lc_cmp() local
569 cmp2.c[0] = lc_map[c1]; in ucl_lc_cmp()
570 cmp2.c[1] = lc_map[c2]; in ucl_lc_cmp()
571 cmp2.c[2] = lc_map[c3]; in ucl_lc_cmp()
[all …]
/freebsd/contrib/dialog/
H A Dbuttons.c64 wchar_t cmp2[2]; in string_to_char() local
74 memset(cmp2, 0, sizeof(cmp2)); in string_to_char()
75 check = mbrtowc(cmp2, string, len, &state); in string_to_char()
77 cmp2[0] = 0; in string_to_char()
80 cmp2[0] = UCH(*string); in string_to_char()
83 result = cmp2[0]; in string_to_char()
427 int cmp2 = string_to_char(&string); in dlg_match_char() local
430 if (cmp2 != 0 && (wchar_t) cmp1 == (wchar_t) dlg_toupper(cmp2)) { in dlg_match_char()
435 if (dlg_toupper(ch) == dlg_toupper(cmp2)) in dlg_match_char()
/freebsd/contrib/arm-optimized-routines/pl/math/
H A Dv_erf_2u5.c86 uint64x2_t cmp2 = vcltq_f64 (a, dat->tiny_bound); in V_NAME_D1() local
87 uint64x2_t cmp = vorrq_u64 (cmp1, cmp2); in V_NAME_D1()
95 a = vbslq_f64 (cmp2, v_f64 (1.0), a); in V_NAME_D1()
142 if (unlikely (v_any_u64 (cmp2))) in V_NAME_D1()
147 return vbslq_f64 (cmp2, vfmaq_f64 (x, dat->scale_minus_one, x), y); in V_NAME_D1()
H A Dv_exp10f_2u4.c72 uint32x4_t cmp2 = vcagtq_f32 (n, d->scale_thresh); in special_case() local
78 return vbslq_f32 (cmp2, r2, r); in special_case()
/freebsd/contrib/bmake/unit-tests/
H A Dmeta-cmd-cmp.mk24 tests= ${tf}.cmp ${tf}.nocmp ${tf}.cmp2
35 ${tf}.cmp2:
/freebsd/contrib/arm-optimized-routines/math/aarch64/
H A Dv_exp2f.c58 uint32x4_t cmp2 = vcagtq_f32 (n, d->scale_thresh); in special_case() local
64 return vbslq_f32 (cmp2, r2, r); in special_case()
H A Dv_expf.c63 uint32x4_t cmp2 = vcagtq_f32 (n, d->scale_thresh); in special_case() local
69 return vbslq_f32 (cmp2, r2, r); in special_case()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Drefcount.c60 int cmp2 = TREE_CMP(r1->ref_number, r2->ref_number); in zfs_refcount_compare() local
61 int cmp = cmp1 ? cmp1 : cmp2; in zfs_refcount_compare()
/freebsd/sys/dev/cxgbe/cxgbei/
H A Dicl_cxgbei.c1356 struct cxgbei_cmp *cmp2; in cxgbei_insert_cmp() local
1363 LIST_FOREACH(cmp2, &icc->cmp_table[TT_HASH(icc, tt)], link) { in cxgbei_insert_cmp()
1364 KASSERT(cmp2->tt != tt, ("%s: duplicate cmp", __func__)); in cxgbei_insert_cmp()
1389 struct cxgbei_cmp *cmp2; in cxgbei_rm_cmp() local
1395 LIST_FOREACH(cmp2, &icc->cmp_table[TT_HASH(icc, cmp->tt)], link) { in cxgbei_rm_cmp()
1396 if (cmp2 == cmp) in cxgbei_rm_cmp()
/freebsd/contrib/ntp/ntpd/
H A DMakefile.am316 $(AM_V_at)grep -v diff_ignore_line < $(srcdir)/ntp_keyword.h > cmp2
317 $(AM_V_at)cmp cmp1 cmp2 > /dev/null || \
322 @rm cmp1 cmp2
H A DMakefile.in1929 $(AM_V_at)grep -v diff_ignore_line < $(srcdir)/ntp_keyword.h > cmp2
1930 $(AM_V_at)cmp cmp1 cmp2 > /dev/null || \
1935 @rm cmp1 cmp2
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_lazy.c1056 const uint8x16_t cmp2 = vceqq_u8(chunk.val[2], dup); in ZSTD_row_getMatchMask() local
1060 const uint8x16_t t1 = vsriq_n_u8(cmp3, cmp2, 1); in ZSTD_row_getMatchMask()