Searched refs:meth (Results 76 - 95 of 95) sorted by relevance

1234

/freebsd-11-stable/contrib/binutils/binutils/
H A Dieee.c2894 struct ieee_method *meth; local
3026 for (meth = methods, im = 0; im < methods_count; meth++, im++)
3027 if (meth->namlen == namlen
3028 && strncmp (meth->name, name, namlen) == 0)
3044 meth = methods + methods_count;
3048 if (meth->count + 1 >= meth->alloc)
3050 meth->alloc += 10;
3051 meth
[all...]
/freebsd-11-stable/crypto/openssl/crypto/ec/
H A Dec.h120 EC_METHOD *meth;
185 * \param meth EC_METHOD to use
188 EC_GROUP *EC_GROUP_new(const EC_METHOD *meth);
221 * \param meth EC_METHOD object
224 int EC_METHOD_get_field_type(const EC_METHOD *meth);
H A Dec_lcl.h210 const EC_METHOD *meth; member in struct:ec_group_st
300 const EC_METHOD *meth; member in struct:ec_point_st
302 * All members except 'meth' are handled by the method functions, even if
H A Decp_nistz256.c1178 if (group->meth != r->meth) {
1187 if (group->meth != points[j]->meth) {
H A Dectest.c1664 const EC_METHOD *(*meth) (); member in struct:nistp_test_params
1766 NISTP = EC_GROUP_new(test->meth());
H A Dec_curve.c2843 const EC_METHOD *(*meth) (void); member in struct:_ec_list_element_st
3062 const EC_METHOD *meth; local
3084 if (curve.meth != 0) {
3085 meth = curve.meth();
3086 if (((group = EC_GROUP_new(meth)) == NULL) ||
3087 (!(group->meth->group_set_curve(group, p, a, b, ctx)))) {
3269 const EC_METHOD *meth; local
3274 meth = EC_GROUP_method_of(group);
3275 if (meth
[all...]
/freebsd-11-stable/crypto/openssl/ssl/
H A Dssl_rsa.c877 custom_ext_method *meth = exts->meths; local
879 for (i = 0; i < exts->meths_count; i++, meth++) {
880 if (ext_type == meth->ext_type) {
H A Dssl_ciph.c1406 static int check_suiteb_cipher_list(const SSL_METHOD *meth, CERT *c, argument
1437 if (!(meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_TLS1_2_CIPHERS)) {
1438 if (meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS)
H A Dt1_lib.c744 const EC_METHOD *meth; local
751 meth = EC_GROUP_method_of(grp);
752 if (!meth)
754 if (EC_METHOD_get_field_type(meth) == NID_X9_62_prime_field)
H A Dssl.h2131 SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth);
2346 int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth);
H A Dssl_locl.h1090 STACK_OF(SSL_CIPHER) *ssl_create_cipher_list(const SSL_METHOD *meth,
/freebsd-11-stable/crypto/openssl/engines/
H A De_aep.c789 const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); local
790 to_return = (*meth->rsa_mod_exp) (r0, I, rsa, ctx);
/freebsd-11-stable/crypto/openssl/crypto/store/
H A Dstore.h133 const STORE_METHOD *STORE_set_method(STORE *store, const STORE_METHOD *meth);
/freebsd-11-stable/crypto/openssl/crypto/rsa/
H A Drsa_pmeth.c192 if (!(rsa->meth->flags & RSA_FLAG_FIPS_METHOD) && rv)
/freebsd-11-stable/crypto/openssl/crypto/x509/
H A Dx509.h472 const X509_CRL_METHOD *meth; member in struct:X509_crl_st
608 void X509_CRL_set_default_method(const X509_CRL_METHOD *meth);
/freebsd-11-stable/contrib/wpa/src/crypto/
H A Dtls_openssl.c403 (struct cryptoapi_rsa_data *) rsa->meth->app_data;
500 cryptoapi_free_data((struct cryptoapi_rsa_data *) rsa->meth->app_data);
501 os_free((void *) rsa->meth);
502 rsa->meth = NULL;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp4327 ObjCMethodDecl *meth = container->getMethod(Method->getSelector(), local
4332 if (meth) {
4333 Overridden.insert(meth);
/freebsd-11-stable/crypto/openssl/crypto/evp/
H A Devp.h1207 const EVP_PKEY_METHOD *meth);
/freebsd-11-stable/contrib/unbound/
H A Dconfigure18776 const EVP_PKEY_ASN1_METHOD* meth;
18782 meth = EVP_PKEY_asn1_find_str(NULL, "gost2001", -1);
18783 if(meth) {
18784 EVP_PKEY_asn1_get0_info(&gost_id, NULL, NULL, NULL, NULL, meth);
18806 meth = EVP_PKEY_asn1_find_str(&e, "gost2001", -1);
18807 if(!meth) {
18813 EVP_PKEY_asn1_get0_info(&gost_id, NULL, NULL, NULL, NULL, meth);
/freebsd-11-stable/contrib/gcc/cp/
H A Dparser.c18210 tree meth;
18235 meth = cp_parser_function_definition_after_declarator (parser,
18238 objc_finish_method_definition (meth);
18207 tree meth; local

Completed in 697 milliseconds

1234