HomeSort by relevance Sort by last modified time
    Searched refs:meth (Results 1 - 25 of 246) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/test/CodeGenCXX/
duplicate-mangled-name.cpp 5 static void meth();
7 void MyClass::meth() { } function in class:MyClass
  /external/clang/test/Index/
annotate-macro-args.h 2 +(void)meth;
9 MACRO([MyClass meth]);
15 INVOKE(meth, MyClass);
get-cursor-macro-args.h 2 +(void)meth;
9 MACRO([MyClass meth]);
15 INVOKE(meth, MyClass);
  /external/openssl/crypto/comp/
comp_lib.c 7 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth)
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->expand == NULL
    [all...]
  /external/openssl/crypto/ec/
ec_oct.c 74 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 != point->meth
    [all...]
ec_cvt.c 78 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);
ec_lib.c 76 EC_GROUP *EC_GROUP_new(const EC_METHOD *meth)
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->group_clear_finish(group)
    [all...]
ec2_mult.c 94 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->field_sqr(group, z1, z1, ctx)) goto err
    [all...]
  /external/openssl/crypto/rand/
rand_lib.c 80 int RAND_set_rand_method(const RAND_METHOD *meth)
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->seed(buf,num)
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...]
  /external/openssl/crypto/dso/
dso_lib.c 71 void DSO_set_default_method(DSO_METHOD *meth)
73 default_DSO_meth = meth;
83 return(dso->meth);
86 DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth)
89 mtmp = dso->meth;
90 dso->meth = meth;
94 DSO *DSO_new_method(DSO_METHOD *meth)
118 if(meth == NULL)
119 ret->meth = default_DSO_meth
471 DSO_METHOD *meth = default_DSO_meth; local
483 DSO_METHOD *meth = default_DSO_meth; local
    [all...]
  /external/openssl/crypto/dsa/
dsa_vrf.c 68 if (FIPS_mode() && !(dsa->meth->flags & DSA_FLAG_FIPS_METHOD)
75 return dsa->meth->dsa_do_verify(dgst, dgst_len, sig, dsa);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
visitor.py 45 meth = self._cache.get(klass, None)
46 if meth is None:
48 meth = getattr(self.visitor, 'visit' + className, self.default)
49 self._cache[klass] = meth
53 ## if meth == 0:
56 ## print "dispatch", className, (meth and meth.__name__ or '')
57 return meth(node, *args)
76 meth = self._cache.get(node.__class__, None)
78 if meth is None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
visitor.py 45 meth = self._cache.get(klass, None)
46 if meth is None:
48 meth = getattr(self.visitor, 'visit' + className, self.default)
49 self._cache[klass] = meth
53 ## if meth == 0:
56 ## print "dispatch", className, (meth and meth.__name__ or '')
57 return meth(node, *args)
76 meth = self._cache.get(node.__class__, None)
78 if meth is None
    [all...]
  /art/test/032-concrete-sub/src/
ConcreteSub.java 41 Method meth; local
46 meth = absClass.getMethod("redefineMe", (Class[]) null);
51 System.out.println("meth modifiers=" + meth.getModifiers());
  /art/test/085-old-style-inner-class/src/
Main.java 37 private static String nameOf(Method meth) {
38 return (meth == null) ? "(null)" : meth.toString();
  /external/clang/test/PCH/
objc_import.h 17 -(void)meth;
  /external/openssl/crypto/x509v3/
v3_int.c 77 static void * s2i_asn1_int(X509V3_EXT_METHOD *meth, X509V3_CTX *ctx, char *value)
79 return s2i_ASN1_INTEGER(meth, value);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
classobject.h 69 #define PyMethod_GET_FUNCTION(meth) \
70 (((PyMethodObject *)meth) -> im_func)
71 #define PyMethod_GET_SELF(meth) \
72 (((PyMethodObject *)meth) -> im_self)
73 #define PyMethod_GET_CLASS(meth) \
74 (((PyMethodObject *)meth) -> im_class)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
classobject.h 69 #define PyMethod_GET_FUNCTION(meth) \
70 (((PyMethodObject *)meth) -> im_func)
71 #define PyMethod_GET_SELF(meth) \
72 (((PyMethodObject *)meth) -> im_self)
73 #define PyMethod_GET_CLASS(meth) \
74 (((PyMethodObject *)meth) -> im_class)
  /external/openssl/crypto/ecdh/
ech_lib.c 88 void ECDH_set_default_method(const ECDH_METHOD *meth)
90 default_ECDH_method = meth;
109 int ECDH_set_method(EC_KEY *eckey, const ECDH_METHOD *meth)
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 = ENGINE_get_ECDH(ret->engine)
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/ec/
ec.c 227 EC_GROUP *ec_group_new(const EC_METHOD *meth) {
230 if (meth == NULL) {
235 if (meth->group_init == 0) {
247 ret->meth = meth;
252 if (!meth->group_init(ret)) {
262 const EC_METHOD *meth = EC_GFp_mont_method(); local
265 ret = ec_group_new(meth);
270 if (ret->meth->group_set_curve == 0) {
275 if (!ret->meth->group_set_curve(ret, p, a, b, ctx))
289 const EC_METHOD *meth; local
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/x509v3/
v3_int.c 77 static void * s2i_asn1_int(X509V3_EXT_METHOD *meth, X509V3_CTX *ctx, char *value)
79 return s2i_ASN1_INTEGER(meth, value);
  /external/chromium_org/third_party/boringssl/src/crypto/dsa/
dsa.c 85 dsa->meth = ENGINE_get_DSA_method(engine);
88 if (dsa->meth == NULL) {
89 dsa->meth = (DSA_METHOD*) &DSA_default_method;
91 METHOD_ref(dsa->meth);
97 METHOD_unref(dsa->meth);
102 if (dsa->meth->init && !dsa->meth->init(dsa)) {
104 METHOD_unref(dsa->meth);
121 if (dsa->meth->finish) {
122 dsa->meth->finish(dsa)
    [all...]
  /external/openssl/crypto/rsa/
rsa_lib.c 85 void RSA_set_default_method(const RSA_METHOD *meth)
87 default_RSA_meth = meth;
113 return rsa->meth;
116 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth)
121 mtmp = rsa->meth;
130 rsa->meth = meth;
131 if (meth->init) meth->init(rsa);
146 ret->meth = RSA_get_default_method()
    [all...]
  /art/test/128-reg-spilling-on-implicit-nullcheck/src/
Main.java 43 public void meth() {field = 1;} method in class:TestClass

Completed in 819 milliseconds

1 2 3 4 5 6 7 8 910