Searched refs:cmp_result (Results 1 – 5 of 5) sorted by relevance
| /freebsd-14-stable/crypto/heimdal/lib/roken/ |
| HD | qsort.c | 121 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-14-stable/crypto/openssl/test/ |
| HD | asn1_time_test.c | 27 int cmp_result; /* comparison to baseline result */ member 147 } else if (!((td->cmp_result == 0 && TEST_true((day == 0 && sec == 0))) || in test_table() 148 (td->cmp_result == -1 && TEST_true((day < 0 || sec < 0))) || in test_table() 149 (td->cmp_result == 1 && TEST_true((day > 0 || sec > 0))))) { in test_table() 154 if (!TEST_int_eq(ASN1_TIME_cmp_time_t(&atime, gtime_t), td->cmp_result)) { in test_table() 202 if (!TEST_int_eq(ASN1_TIME_cmp_time_t(ptime, gtime_t), td->cmp_result)) { in test_table() 226 if (!TEST_int_eq(ASN1_TIME_cmp_time_t(ptime, gtime_t), td->cmp_result)) { in test_table()
|
| HD | x509_time_test.c | 281 int cmp_result, failed = 0; in test_x509_cmp_time_current() local 286 cmp_result = X509_cmp_time(asn1_before, NULL); in test_x509_cmp_time_current() 287 if (!TEST_int_eq(cmp_result, -1)) in test_x509_cmp_time_current() 290 cmp_result = X509_cmp_time(asn1_after, NULL); in test_x509_cmp_time_current() 291 if (!TEST_int_eq(cmp_result, 1)) in test_x509_cmp_time_current()
|
| /freebsd-14-stable/sys/libkern/ |
| HD | qsort.c | 117 int cmp_result; variable 149 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) { 150 if (cmp_result == 0) { 157 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) { 158 if (cmp_result == 0) {
|
| /freebsd-14-stable/lib/libc/stdlib/ |
| HD | qsort.c | 111 int cmp_result; in local_qsort() local 145 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) { in local_qsort() 146 if (cmp_result == 0) { in local_qsort() 153 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) { in local_qsort() 154 if (cmp_result == 0) { in local_qsort()
|