Home
last modified time | relevance | path

Searched refs:CMP (Results 1 – 25 of 127) sorted by relevance

123456

/freebsd/lib/libc/stdlib/
H A Dqsort.c71 #define CMP(t, x, y) (cmp((x), (y), (t))) macro
73 #define CMP(t, x, y) (cmp((t), (x), (y))) macro
75 #define CMP(t, x, y) (cmp((x), (y), (t))) macro
77 #define CMP(t, x, y) (cmp((x), (y))) macro
87 return CMP(thunk, a, b) < 0 ? in med3()
88 (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a )) in med3()
89 :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c )); in med3()
119 pl > (char *)a && CMP(thunk, pl - es, pl) > 0; in local_qsort()
142 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) { in local_qsort()
150 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) { in local_qsort()
[all …]
H A Dmerge.c59 #define CMP(x, y) CALL_BLOCK(cmp, x, y) macro
62 #define CMP(x, y) cmp(x, y) macro
148 if (CMP(f1, f2) <= 0) { in mergesort_b()
158 while ((b += size) < t && CMP(q, b) >sense) in mergesort_b()
167 CMP(q, p) <= sense) in mergesort_b()
172 } else if (CMP(q, p) <= sense) { in mergesort_b()
181 if (CMP(q, p = b + i) <= sense) in mergesort_b()
188 if (CMP(q, in mergesort_b()
289 sense = (CMP(f1, f1 + size) > 0); in setup()
294 if ((CMP(f2, f2+ size) > 0) != sense) in setup()
[all …]
/freebsd/crypto/heimdal/lib/roken/
H A Dqsort.c93 #define CMP(t, x, y) (cmp((t), (x), (y))) macro
95 #define CMP(t, x, y) (cmp((x), (y))) macro
105 return CMP(thunk, a, b) < 0 ? in med3()
106 (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a )) in med3()
107 :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c )); in med3()
129 pl > (char *)a && CMP(thunk, pl - es, pl) > 0; in rk_qsort_r()
151 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) { in rk_qsort_r()
159 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) { in rk_qsort_r()
177 pl > (char *)a && CMP(thunk, pl - es, pl) > 0; in rk_qsort_r()
/freebsd/sys/libkern/
H A Dqsort.c88 #define CMP(t, x, y) (cmp((x), (y), (t))) macro
90 #define CMP(t, x, y) (cmp((x), (y))) macro
100 return CMP(thunk, a, b) < 0 ? in med3()
101 (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a )) in med3()
102 :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c )); in med3()
125 pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
148 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
156 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) {
174 pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
/freebsd/crypto/openssl/doc/man3/
H A DOSSL_CMP_MSG_http_perform.pod6 - client-side HTTP(S) transfer of a CMP request-response pair
18 to the CMP server specified in I<ctx> via L<OSSL_CMP_CTX_set1_server(3)>
20 any "CMP alias" optionally specified via L<OSSL_CMP_CTX_set1_serverPath(3)>.
36 CMP is defined in RFC 4210.
37 HTTP transfer for CMP is defined in RFC 6712.
41 OSSL_CMP_MSG_http_perform() returns a CMP message on success, else NULL.
49 The OpenSSL CMP support was added in OpenSSL 3.0.
H A DOSSL_CMP_SRV_CTX_new.pod22 - generic functions to set up and control a CMP server
87 OSSL_CMP_SRV_process_request() implements the generic aspects of a CMP server.
88 Its arguments are the B<OSSL_CMP_SRV_CTX> I<srv_ctx> and the CMP request message
91 and then assembles a result message, which may be a CMP error message.
98 OSSL_CMP_SRV_process_request() that can be used by a CMP client
110 pointer as well as callback functions performing the specific processing of CMP
115 type of CMP message is not supported by the server.
136 CMP is defined in RFC 4210 (and CRMF in RFC 4211).
138 So far the CMP server implementation is limited to one request per CMP message
139 (and consequently to at most one response component per CMP message).
[all …]
H A DOSSL_CMP_CTX_new.pod65 - functions for managing the CMP client context data structure
117 /* CMP message header and extra certificates: */
167 This is the context API for using CMP (Certificate Management Protocol) with
182 clearing the internal CMP transaction (aka session) status, PKIStatusInfo,
186 All other field values (i.e., CMP options) are retained for potential reuse.
212 Number of seconds a CMP request-response message round trip
254 is provided as the newPkey or client's pkey component of the CMP context.
294 Send request or response messages without CMP-level protection.
309 validating signature-based protection in received CMP messages.
310 Else, 'digitalSignature' must be allowed by CMP signer certificates.
[all …]
H A DOSSL_CMP_log_open.pod52 convenience functions for CMP-specific logging,
55 messages produced by the CMP library in case of certificate validation failures.
59 A CMP application can obtain this information by providing a callback function
84 OSSL_CMP_log_open() initializes the CMP-specific logging facility to output
91 any pending CMP-specific log output and deallocate related resources.
97 If it is NULL, empty, or "(unknown function)" then "CMP" is used as fallback.
100 It is similar to L<ERR_print_errors_cb(3)> but uses the CMP log callback
101 function I<log_fn> for uniformity with CMP logging if not NULL. Otherwise it
113 The OpenSSL CMP support was added in OpenSSL 3.0.
H A DOSSL_CMP_STATUSINFO_new.pod8 - function(s) for managing the CMP PKIStatus
23 This is the PKIStatus API for using CMP (Certificate Management Protocol) with
37 representing the PKIStatusInfo components of the CMP context I<ctx>
42 CMP is defined in RFC 4210 (and CRMF in RFC 4211).
55 The OpenSSL CMP support was added in OpenSSL 3.0.
H A DOSSL_CMP_exec_certreq.pod17 - functions implementing CMP client transactions
40 This is the OpenSSL API for doing CMP (Certificate Management Protocol)
41 client-server transactions, i.e., sequences of CMP requests and responses.
44 Usually the server name, port, and path ("CMP alias") need to be set, as well as
88 OSSL_CMP_try_certreq() remembers in the CMP context that it should be retried
99 aborts the CMP transaction by sending an error message to the server.
120 CMP is defined in RFC 4210 (and CRMF in RFC 4211).
122 The CMP client implementation is limited to one request per CMP message
123 (and consequently to at most one response component per CMP message).
125 When a client obtains from a CMP server CA certificates that it is going to
[all …]
H A DOSSL_CMP_validate_msg.pod7 - functions for verifying CMP message protection
18 This is the API for validating the protection of CMP messages,
19 which includes validating CMP message sender certificates and their paths
24 In the former case a suitable trust anchor must be given in the CMP context
49 has not been authenticated (at least not at CMP level).
61 CMP is defined in RFC 4210 (and CRMF in RFC 4211).
76 The OpenSSL CMP support was added in OpenSSL 3.0.
H A DOSSL_CMP_MSG_get0_header.pod14 - function(s) manipulating CMP messages
32 OSSL_CMP_MSG_get0_header() returns the header of the given CMP message.
34 OSSL_CMP_MSG_get_bodytype() returns the body type of the given CMP message.
46 from various information provided in the CMP context argument I<ctx>
47 for inclusion in a CMP request message based on details contained in I<ctx>.
112 CMP is defined in RFC 4210.
127 return the parsed CMP message or NULL on error.
145 The OpenSSL CMP support was added in OpenSSL 3.0.
H A DOSSL_CMP_HDR_get0_transactionID.pod7 - functions manipulating CMP message headers
27 CMP is defined in RFC 4210.
36 The OpenSSL CMP support was added in OpenSSL 3.0.
H A DOSSL_CMP_ITAV_set0.pod26 Certificate Management Protocol (CMP, RFC 4210) extension to OpenSSL
29 section 5.3.19 and Appendix F. It is used at various places in CMP messages,
50 CMP is defined in RFC 4210 (and CRMF in RFC 4211).
100 The OpenSSL CMP support was added in OpenSSL 3.0.
/freebsd/contrib/byacc/test/
H A Drun_test.sh12 CMP=${REF_DIR}/${NEW}
13 if test ! -f "$CMP"
15 echo "...not found $CMP"
30 < "$CMP" >"$tmpfile" \
31 && mv "$tmpfile" "$CMP"
34 mv "$CMP" "$REF"
36 elif ( cmp -s "$REF" "$CMP" )
39 rm -f "$CMP"
42 diff -c "$REF" "$CMP"
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-cmp.pod.in6 openssl-cmp - Certificate Management Protocol (CMP, RFC 4210) application
143 Certificate verification options, for both CMP and TLS:
150 Management Protocol (CMP) as defined in RFC4210.
153 request certificates to be revoked, and perform other types of CMP requests.
171 Section(s) to use within config file defining CMP options.
196 CMP command to execute.
280 the subject DN is used as fallback sender of outgoing CMP messages.
299 the issuer DN is used as fallback recipient of outgoing CMP messages.
363 it is transformed into the respective regular CMP request.
424 Its issuer is used as default recipient in CMP message headers
[all …]
/freebsd/tools/test/sort/regression/
H A DMakefile10 CMP?= ${.CURDIR}/cmp.sh macro
17 @${CMP} ref/${f} output/${f}
23 @${CMP} ref/${f}${opt} output/${f}${opt}
/freebsd/crypto/openssl/doc/internal/man3/
H A Dossl_cmp_mock_srv_new.pod14 - functions used for testing with CMP mock server
36 ossl_cmp_mock_srv_new() allocates the contexts for the CMP mock server
40 ossl_cmp_mock_srv_free() deallocates the contexts for the CMP mock server.
65 CMP is defined in RFC 4210 (and CRMF in RFC 4211).
78 The OpenSSL CMP support was added in OpenSSL 3.0.
H A Dossl_cmp_msg_protect.pod8 - functions for producing CMP message protection
32 If signature-based message protection is used it adds first the CMP signer cert
41 CMP is defined in RFC 4210 (and CRMF in RFC 4211).
45 because I<ctx->chain> may get adapted to cache the chain of the CMP signer cert.
55 The OpenSSL CMP support was added in OpenSSL 3.0.
H A Dossl_cmp_certreq_new.pod16 - functions for generating CMP messages
46 This is the internal API for creating various CMP PKIMESSAGES.
56 Available CMP certificate request PKIMessage I<bodytype>s are:
79 Available CMP certificate response PKIMessage I<bodytype>s are:
91 The list of all CMP PKIMessage I<bodytype>s is:
153 CMP is specified in RFC 4210 (and CRMF in RFC 4211).
167 The OpenSSL CMP support was added in OpenSSL 3.0.
H A Dossl_cmp_ctx_set1_caPubs.pod13 - internal functions for managing the CMP client context datastructure
57 CMP is defined in RFC 4210 (and CRMF in RFC 4211).
65 The OpenSSL CMP support was added in OpenSSL 3.0.
/freebsd/contrib/blocklist/bin/
H A Dconf.c438 #define CMP(a, b, f) \ in conf_sort() macro
442 CMP(c1, c2, c_ss.ss_family); in conf_sort()
443 CMP(c1, c2, c_lmask); in conf_sort()
444 CMP(c1, c2, c_port); in conf_sort()
445 CMP(c1, c2, c_proto); in conf_sort()
446 CMP(c1, c2, c_family); in conf_sort()
447 CMP(c1, c2, c_rmask); in conf_sort()
448 CMP(c1, c2, c_uid); in conf_sort()
449 #undef CMP in conf_sort()
698 #define CMP(a, b, f) \ in conf_eq() macro
[all …]
/freebsd/sys/contrib/device-tree/src/arm/microchip/
H A Dsama5d36ek_cmp.dts3 * sama5d36ek_cmp.dts - Device Tree file for SAMA5D36-EK CMP board
12 model = "Atmel SAMA5D36EK-CMP";
/freebsd/tools/test/iconv/
H A DMakefile34 CMP?= ${.CURDIR}/tablegen/cmp.sh macro
50 @${CMP} ${.CURDIR}/ref/${enc} ${.OBJDIR}/output/${enc}
53 @${CMP} ${.CURDIR}/ref/${enc}-rev ${.OBJDIR}/output/${enc}-rev
/freebsd/tests/sys/cddl/zfs/tests/zil/
H A Dzil_002_pos.ksh91 log_must $CMP $tf1 $tf2
98 log_must $CMP $tf1 $tf2

123456