Home
last modified time | relevance | path

Searched refs:cmp_result (Results 1 – 6 of 6) sorted by relevance

/freebsd/crypto/heimdal/lib/roken/
H A Dqsort.c121 int cmp_result; in rk_qsort_r() local
151 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) { in rk_qsort_r()
152 if (cmp_result == 0) { in rk_qsort_r()
159 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) { in rk_qsort_r()
160 if (cmp_result == 0) { in rk_qsort_r()
/freebsd/sys/libkern/
H A Dqsort.c116 int cmp_result; variable
147 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
148 if (cmp_result == 0) {
154 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) {
155 if (cmp_result == 0) {
/freebsd/lib/libc/stdlib/
H A Dqsort.c108 int cmp_result; in local_qsort() local
140 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) { in local_qsort()
141 if (cmp_result == 0) { in local_qsort()
147 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) { in local_qsort()
148 if (cmp_result == 0) { in local_qsort()
/freebsd/crypto/openssl/test/
H A Dasn1_time_test.c29 int cmp_result; /* comparison to baseline result */ member
654 …f (!((td->cmp_result == 0 && TEST_true((day == 0 && sec == 0))) || (td->cmp_result == -1 && TEST_t… in test_table()
659 if (!TEST_int_eq(ASN1_TIME_cmp_time_t(&atime, gtime_t), td->cmp_result)) { in test_table()
707 if (!TEST_int_eq(ASN1_TIME_cmp_time_t(ptime, gtime_t), td->cmp_result)) { in test_table()
731 if (!TEST_int_eq(ASN1_TIME_cmp_time_t(ptime, gtime_t), td->cmp_result)) { in test_table()
H A Dx509_time_test.c430 int cmp_result, failed = 0; in test_x509_cmp_time_current() local
435 cmp_result = X509_cmp_time(asn1_before, NULL); in test_x509_cmp_time_current()
436 if (!TEST_int_eq(cmp_result, -1)) in test_x509_cmp_time_current()
439 cmp_result = X509_cmp_time(asn1_after, NULL); in test_x509_cmp_time_current()
440 if (!TEST_int_eq(cmp_result, 1)) in test_x509_cmp_time_current()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp1889 cmpResult cmp_result = compareAbsoluteValue(temp_rhs); in addOrSubtractSignificand() local
1890 if (cmp_result == cmpLessThan) { in addOrSubtractSignificand()
1904 } else if (cmp_result == cmpGreaterThan) { in addOrSubtractSignificand()