Searched refs:algorithm (Results 151 - 175 of 817) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/googletest/googlemock/include/gmock/
H A Dgmock-more-actions.h40 #include <algorithm>
/freebsd-12-stable/contrib/libstdc++/include/ext/pb_ds/detail/
H A Dbasic_types.hpp50 #include <algorithm>
/freebsd-12-stable/contrib/libstdc++/include/ext/
H A Dvstring_util.h46 #include <algorithm> // For std::distance, srd::search.
/freebsd-12-stable/crypto/openssl/crypto/pkcs7/
H A Dpk7_lib.c207 nid = OBJ_obj2nid(psi->digest_alg->algorithm);
213 if (OBJ_obj2nid(alg->algorithm) == nid) {
218 if (!j) { /* we need to add another algorithm */
225 alg->algorithm = OBJ_nid2obj(nid);
385 p7->d.digest->md->algorithm = OBJ_nid2obj(EVP_MD_nid(md));
H A Dpk7_smime.c189 if (!OBJ_cmp(si->digest_alg->algorithm, sitmp->digest_alg->algorithm)) {
/freebsd-12-stable/crypto/openssl/crypto/ts/
H A Dts_rsp_verify.c326 md = EVP_get_digestbyobj(cid->hash_alg->algorithm);
583 if ((md = EVP_get_digestbyobj((*md_alg)->algorithm)) == NULL) {
630 if (OBJ_cmp(algor_a->algorithm, algor_b->algorithm))
/freebsd-12-stable/crypto/openssl/crypto/x509/
H A Dx509cset.c132 return OBJ_obj2nid(crl->sig_alg.algorithm);
H A Dt_x509.c307 if (i2a_ASN1_OBJECT(bp, sigalg->algorithm) <= 0)
310 sig_nid = OBJ_obj2nid(sigalg->algorithm);
H A Dx_pubkey.c113 if (!EVP_PKEY_set_type(pkey, OBJ_obj2nid(key->algor->algorithm))) {
363 *ppkalg = pub->algor->algorithm;
/freebsd-12-stable/crypto/openssl/crypto/dh/
H A Ddh_kdf.c69 atmp.algorithm = key_oid;
/freebsd-12-stable/crypto/openssl/crypto/dsa/
H A Ddsa_ameth.c472 if (alg1 == NULL || alg1->algorithm == NULL)
474 hnid = OBJ_obj2nid(alg1->algorithm);
488 if (alg1 == NULL || alg1->algorithm == NULL)
490 hnid = OBJ_obj2nid(alg1->algorithm);
/freebsd-12-stable/contrib/ldns/ldns/
H A Dhost2str.h198 * Converts an ldns algorithm type to its mnemonic, and adds that
201 * \param[in] algorithm to find the string representation of
206 ldns_algorithm algorithm);
209 * Converts an ldns certificate algorithm type to its mnemonic,
245 * \param[in] algorithm the algorithm to convert to text
248 char *ldns_pkt_algorithm2str(ldns_algorithm algorithm);
251 * Converts a cert algorithm to its mnemonic and returns that as
631 * the algorithm, HIT and Public Key and adds it the output buffer .
/freebsd-12-stable/contrib/ldns/
H A Dstr2host.c1229 uint8_t algorithm = 0; local
1263 algorithm = (uint8_t)atoi(token);
1349 data[2] = algorithm;
1530 int algorithm = strtol(str, &endptr, 10); local
1537 || algorithm < 0 || algorithm > 255
1538 || (errno != 0 && algorithm == 0) /* out of range */
1553 | HIT length | PK algorithm | PK length |
1575 data[1] = (uint8_t) algorithm;
/freebsd-12-stable/crypto/heimdal/lib/krb5/
H A Dpkinit.c493 &a->clientPublicValue->algorithm.algorithm);
518 a->clientPublicValue->algorithm.parameters =
519 malloc(sizeof(*a->clientPublicValue->algorithm.parameters));
520 if (a->clientPublicValue->algorithm.parameters == NULL) {
526 a->clientPublicValue->algorithm.parameters->data,
527 a->clientPublicValue->algorithm.parameters->length,
532 if (size != a->clientPublicValue->algorithm.parameters->length)
561 ALLOC(a->clientPublicValue->algorithm.parameters, 1);
562 if (a->clientPublicValue->algorithm
[all...]
/freebsd-12-stable/crypto/heimdal/kdc/
H A Dpkinit.c347 if (dh_key_info->algorithm.parameters == NULL) {
349 "PKINIT missing algorithm parameter "
354 ret = decode_DomainParameters(dh_key_info->algorithm.parameters->data,
355 dh_key_info->algorithm.parameters->length,
359 krb5_set_error_message(context, ret, "Can't decode algorithm "
444 if (dh_key_info->algorithm.parameters == NULL) {
446 "PKINIT missing algorithm parameter "
453 ret = decode_ECParameters(dh_key_info->algorithm.parameters->data,
454 dh_key_info->algorithm.parameters->length, &ecp, &len);
832 if (der_heim_oid_cmp(&ap.clientPublicValue->algorithm
[all...]
/freebsd-12-stable/contrib/gcc/
H A Dexpmed.c2398 struct algorithm
2419 /* The best multiplication algorithm for t. */
2446 static void synth_mult (struct algorithm *, unsigned HOST_WIDE_INT,
2449 struct algorithm *, enum mult_variant *, int);
2451 const struct algorithm *, enum mult_variant);
2459 /* Compute and return the best algorithm for multiplying by T.
2460 The algorithm must cost less than cost_limit
2461 If retval.cost >= COST_LIMIT, no algorithm was found and all
2466 synth_mult (struct algorithm *alg_out, unsigned HOST_WIDE_INT t,
2470 struct algorithm *alg_i
2388 struct algorithm struct
3105 struct algorithm algorithm; local
[all...]
/freebsd-12-stable/crypto/heimdal/lib/hx509/
H A Dcms.c426 &ri->keyEncryptionAlgorithm.algorithm,
473 ret = hx509_crypto_init(context, NULL, &ai->algorithm, &crypto);
617 ret = der_copy_oid(encryption_type, &enc_alg->algorithm);
671 &ri->keyEncryptionAlgorithm.algorithm,
1128 * @param digest_alg digest algorithm to use, use NULL to get the
1129 * default or the peer determined algorithm.
1132 * like what digest algorithm to use.
1433 return der_heim_oid_cmp(&p->algorithm, &q->algorithm);
/freebsd-12-stable/contrib/unbound/ipsecmod/
H A Dipsecmod.c205 int precedence, gateway_type, algorithm; local
213 &precedence, &gateway_type, &algorithm, gateway) != 4) {
/freebsd-12-stable/contrib/llvm-project/lld/COFF/
H A DLTO.cpp32 #include <algorithm>
/freebsd-12-stable/contrib/llvm-project/lld/include/lld/Core/
H A DSimple.h31 #include <algorithm>
/freebsd-12-stable/contrib/llvm-project/lld/lib/Core/
H A DSymbolTable.cpp24 #include <algorithm>
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h17 #include <algorithm>
H A DMappedHash.h15 #include <algorithm>
/freebsd-12-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointSiteList.cpp12 #include <algorithm>
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCxxStringTypes.cpp29 #include <algorithm>

Completed in 404 milliseconds

1234567891011>>