Searched refs:cmp_result (Results 1 - 5 of 5) sorted by relevance

/freebsd-current/crypto/heimdal/lib/roken/
H A Dqsort.c121 int cmp_result; local
151 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
152 if (cmp_result == 0) {
159 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) {
160 if (cmp_result == 0) {
/freebsd-current/sys/libkern/
H A Dqsort.c116 int cmp_result; local
148 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
149 if (cmp_result == 0) {
156 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) {
157 if (cmp_result == 0) {
/freebsd-current/lib/libc/stdlib/
H A Dqsort.c108 int cmp_result; local
142 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
143 if (cmp_result == 0) {
150 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) {
151 if (cmp_result == 0) {
/freebsd-current/crypto/openssl/test/
H A Dasn1_time_test.c27 int cmp_result; /* comparison to baseline result */ member in struct:testdata
147 } else if (!((td->cmp_result == 0 && TEST_true((day == 0 && sec == 0))) ||
148 (td->cmp_result == -1 && TEST_true((day < 0 || sec < 0))) ||
149 (td->cmp_result == 1 && TEST_true((day > 0 || sec > 0))))) {
154 if (!TEST_int_eq(ASN1_TIME_cmp_time_t(&atime, gtime_t), td->cmp_result)) {
202 if (!TEST_int_eq(ASN1_TIME_cmp_time_t(ptime, gtime_t), td->cmp_result)) {
226 if (!TEST_int_eq(ASN1_TIME_cmp_time_t(ptime, gtime_t), td->cmp_result)) {
H A Dx509_time_test.c281 int cmp_result, failed = 0; local
286 cmp_result = X509_cmp_time(asn1_before, NULL);
287 if (!TEST_int_eq(cmp_result, -1))
290 cmp_result = X509_cmp_time(asn1_after, NULL);
291 if (!TEST_int_eq(cmp_result, 1))

Completed in 208 milliseconds