Searched refs:meth (Results 1 - 25 of 125) sorted by relevance

12345

/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/comp/
H A Dcomp_lib.c7 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth) argument
17 ret->meth=meth;
18 if ((ret->meth->init != NULL) && !ret->meth->init(ret))
31 if (ctx->meth->finish != NULL)
32 ctx->meth->finish(ctx);
41 if (ctx->meth->compress == NULL)
46 ret=ctx->meth->compress(ctx,out,olen,in,ilen);
60 if (ctx->meth
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/ec/
H A Dec_oct.c74 if (group->meth->point_set_compressed_coordinates == 0
75 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT))
80 if (group->meth != point->meth)
85 if(group->meth->flags & EC_FLAGS_DEFAULT_OCT)
87 if (group->meth->field_type == NID_X9_62_prime_field)
101 return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
108 if (group->meth->point_set_compressed_coordinates == 0
109 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT))
114 if (group->meth !
[all...]
H A Dec_cvt.c78 const EC_METHOD *meth; local
103 meth = EC_GFp_mont_method();
105 meth = EC_GFp_nist_method();
108 ret = EC_GROUP_new(meth);
134 meth = EC_GFp_mont_method();
136 ret = EC_GROUP_new(meth);
153 const EC_METHOD *meth; local
156 meth = EC_GF2m_simple_method();
158 ret = EC_GROUP_new(meth);
H A Dec_lib.c76 EC_GROUP *EC_GROUP_new(const EC_METHOD *meth) argument
80 if (meth == NULL)
85 if (meth->group_init == 0)
98 ret->meth = meth;
113 if (!meth->group_init(ret))
127 if (group->meth->group_finish != 0)
128 group->meth->group_finish(group);
148 if (group->meth->group_clear_finish != 0)
149 group->meth
278 EC_METHOD_get_field_type(const EC_METHOD *meth) argument
[all...]
H A Dec2_mult.c94 if (!group->meth->field_sqr(group, x, x, ctx)) goto err;
95 if (!group->meth->field_sqr(group, t1, z, ctx)) goto err;
96 if (!group->meth->field_mul(group, z, x, t1, ctx)) goto err;
97 if (!group->meth->field_sqr(group, x, x, ctx)) goto err;
98 if (!group->meth->field_sqr(group, t1, t1, ctx)) goto err;
99 if (!group->meth->field_mul(group, t1, &group->b, t1, ctx)) goto err;
128 if (!group->meth->field_mul(group, x1, x1, z2, ctx)) goto err;
129 if (!group->meth->field_mul(group, z1, z1, x2, ctx)) goto err;
130 if (!group->meth->field_mul(group, t2, x1, z1, ctx)) goto err;
132 if (!group->meth
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/rand/
H A Drand_lib.c80 int RAND_set_rand_method(const RAND_METHOD *meth) argument
89 default_RAND_meth = meth;
141 const RAND_METHOD *meth = RAND_get_rand_method(); local
142 if (meth && meth->cleanup)
143 meth->cleanup();
149 const RAND_METHOD *meth = RAND_get_rand_method(); local
150 if (meth && meth->seed)
151 meth
156 const RAND_METHOD *meth = RAND_get_rand_method(); local
163 const RAND_METHOD *meth = RAND_get_rand_method(); local
171 const RAND_METHOD *meth = RAND_get_rand_method(); local
179 const RAND_METHOD *meth = RAND_get_rand_method(); local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/obj-c++.dg/
H A Dtemplate-1.mm12 - (int) meth;
16 - (int) meth;
30 - (int) meth { return 333; }
34 - (int) meth { return 666; }
44 CHECK_IF([base.m meth] == 333);
45 CHECK_IF([derived.m meth] == 666);
H A Dtry-catch-8.mm9 - (id) meth;
13 - (id) meth {
H A Dencode-7.mm51 METHOD meth;
61 meth = class_get_instance_method(testClass, @selector(test2:with:));
63 sscanf(method_get_types(meth), "v%d@%d:%d[%di]%d^i%d", &offs1, &offs2, &offs3,
68 meth = class_get_instance_method(testClass, @selector(test3:));
70 sscanf(method_get_types(meth), "v%d@%d:%d[%d[%d{Test=#f}]]%d", &offs1, &offs2, &offs3,
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/objc.dg/
H A Dtry-catch-7.m9 - (id) meth;
13 - (id) meth {
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dgdb2384-base.cc29 base::meth () function in class:base
H A Dgdb2384.cc50 g = d1.meth (); // set breakpoint here
51 g = d2.meth (); // set breakpoint here (second)
H A Dgdb2384-base.h28 virtual int meth ();
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/dso/
H A Ddso_lib.c71 void DSO_set_default_method(DSO_METHOD *meth) argument
73 default_DSO_meth = meth;
83 return(dso->meth);
86 DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth) argument
89 mtmp = dso->meth;
90 dso->meth = meth;
94 DSO *DSO_new_method(DSO_METHOD *meth) argument
118 if(meth == NULL)
119 ret->meth
194 DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags) argument
463 DSO_METHOD *meth = default_DSO_meth; local
475 DSO_METHOD *meth = default_DSO_meth; local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/dsa/
H A Ddsa_vrf.c68 if (FIPS_mode() && !(dsa->meth->flags & DSA_FLAG_FIPS_METHOD)
75 return dsa->meth->dsa_do_verify(dgst, dgst_len, sig, dsa);
H A Ddsa_lib.c81 void DSA_set_default_method(const DSA_METHOD *meth) argument
83 default_DSA_method = meth;
107 int DSA_set_method(DSA *dsa, const DSA_METHOD *meth) argument
112 mtmp = dsa->meth;
121 dsa->meth = meth;
122 if (meth->init) meth->init(dsa);
136 ret->meth = DSA_get_default_method();
152 ret->meth
[all...]
H A Ddsa_sign.c69 if (FIPS_mode() && !(dsa->meth->flags & DSA_FLAG_FIPS_METHOD)
76 return dsa->meth->dsa_do_sign(dgst, dlen, dsa);
82 if (FIPS_mode() && !(dsa->meth->flags & DSA_FLAG_FIPS_METHOD)
89 return dsa->meth->dsa_sign_setup(dsa, ctx_in, kinvp, rp);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.other/
H A Dusing5.C13 t meth();
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.other/
H A Dusing5.C13 t meth();
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/x509v3/
H A Dv3_int.c77 static void * s2i_asn1_int(X509V3_EXT_METHOD *meth, X509V3_CTX *ctx, char *value) argument
79 return s2i_ASN1_INTEGER(meth, value);
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/ecdh/
H A Dech_lib.c88 void ECDH_set_default_method(const ECDH_METHOD *meth) argument
90 default_ECDH_method = meth;
109 int ECDH_set_method(EC_KEY *eckey, const ECDH_METHOD *meth) argument
119 mtmp = ecdh->meth;
130 ecdh->meth = meth;
132 if (meth->init)
133 meth->init(eckey);
151 ret->meth = ECDH_get_default_method();
158 ret->meth
[all...]
H A Dech_key.c79 return ecdh->meth->compute_key(out, outlen, pub_key, eckey, KDF);
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/rsa/
H A Drsa_lib.c85 void RSA_set_default_method(const RSA_METHOD *meth) argument
87 default_RSA_meth = meth;
113 return rsa->meth;
116 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth) argument
121 mtmp = rsa->meth;
130 rsa->meth = meth;
131 if (meth->init) meth->init(rsa);
146 ret->meth
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/dh/
H A Ddh_lib.c75 void DH_set_default_method(const DH_METHOD *meth) argument
77 default_DH_method = meth;
96 int DH_set_method(DH *dh, const DH_METHOD *meth) argument
101 mtmp = dh->meth;
110 dh->meth = meth;
111 if (meth->init) meth->init(dh);
131 ret->meth = DH_get_default_method();
147 ret->meth
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/hcrypto/
H A Drand.c123 const RAND_METHOD *meth = selected_meth; local
129 if (meth)
130 (*meth->cleanup)();
190 * @param meth set the new default method.
198 RAND_set_rand_method(const RAND_METHOD *meth) argument
201 selected_meth = meth;
237 const RAND_METHOD *meth, *old = selected_meth; local
241 meth = ENGINE_get_RAND(engine);
242 if (meth == NULL) {
247 meth
[all...]

Completed in 142 milliseconds

12345