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

1234

/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dec2_mont.c61 MP_CHECKOK(group->meth->field_sqr(x, x, group->meth));
62 MP_CHECKOK(group->meth->field_sqr(z, &t1, group->meth));
63 MP_CHECKOK(group->meth->field_mul(x, &t1, z, group->meth));
64 MP_CHECKOK(group->meth->field_sqr(x, x, group->meth));
65 MP_CHECKOK(group->meth->field_sqr(&t1, &t1, group->meth));
[all...]
H A Decp_mont.c58 GFMethod *meth = NULL; local
61 meth = GFMethod_consGFp(irr);
62 if (meth == NULL)
76 meth->field_mul = &ec_GFp_mul_mont;
77 meth->field_sqr = &ec_GFp_sqr_mont;
78 meth->field_div = &ec_GFp_div_mont;
79 meth->field_enc = &ec_GFp_enc_mont;
80 meth->field_dec = &ec_GFp_dec_mont;
81 meth->extra1 = mmm;
82 meth
103 ec_GFp_mul_mont(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
135 ec_GFp_sqr_mont(const mp_int *a, mp_int *r, const GFMethod *meth) argument
142 ec_GFp_div_mont(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
163 ec_GFp_enc_mont(const mp_int *a, mp_int *r, const GFMethod *meth) argument
177 ec_GFp_dec_mont(const mp_int *a, mp_int *r, const GFMethod *meth) argument
192 ec_GFp_extra_free_mont(GFMethod *meth) argument
[all...]
H A Decp_jm.c80 MP_CHECKOK(group->meth->field_sqr(px, t0, group->meth));
81 MP_CHECKOK(group->meth->field_add(t0, t0, M, group->meth));
82 MP_CHECKOK(group->meth->field_add(t0, M, t0, group->meth));
83 MP_CHECKOK(group->meth->field_add(t0, paz4, M, group->meth));
86 MP_CHECKOK(group->meth->field_mul(py, pz, S, group->meth));
[all...]
H A Decl_gf.c52 GFMethod *meth; local
54 meth = (GFMethod *) kmem_alloc(sizeof(GFMethod), kmflag);
56 meth = (GFMethod *) malloc(sizeof(GFMethod));
57 if (meth == NULL)
60 meth->constructed = MP_YES;
61 MP_DIGITS(&meth->irr) = 0;
62 meth->extra_free = NULL;
63 MP_CHECKOK(mp_init(&meth->irr, kmflag));
67 GFMethod_free(meth);
70 return meth;
79 GFMethod *meth = NULL; local
139 GFMethod *meth = NULL; local
188 GFMethod_free(GFMethod *meth) argument
208 ec_GFp_add(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
225 ec_GFp_neg(const mp_int *a, mp_int *r, const GFMethod *meth) argument
238 ec_GFp_sub(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
263 ec_GFp_add_3(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
346 ec_GFp_add_4(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
440 ec_GFp_add_5(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
517 ec_GFp_add_6(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
608 ec_GFp_sub_3(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
692 ec_GFp_sub_4(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
785 ec_GFp_sub_5(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
853 ec_GFp_sub_6(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
931 ec_GFp_mod(const mp_int *a, mp_int *r, const GFMethod *meth) argument
938 ec_GFp_mul(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
946 ec_GFp_sqr(const mp_int *a, mp_int *r, const GFMethod *meth) argument
954 ec_GFp_div(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
979 ec_GF2m_add(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
988 ec_GF2m_neg(const mp_int *a, mp_int *r, const GFMethod *meth) argument
999 ec_GF2m_mod(const mp_int *a, mp_int *r, const GFMethod *meth) argument
1006 ec_GF2m_mul(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
1014 ec_GF2m_sqr(const mp_int *a, mp_int *r, const GFMethod *meth) argument
1022 ec_GF2m_div(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
[all...]
H A Dec2_aff.c100 MP_CHECKOK(group->meth->field_add(py, qy, &tempy, group->meth));
101 MP_CHECKOK(group->meth->field_add(px, qx, &tempx, group->meth));
102 MP_CHECKOK(group->meth->
103 field_div(&tempy, &tempx, &lambda, group->meth));
104 MP_CHECKOK(group->meth->field_sqr(&lambda, &tempx, group->meth));
105 MP_CHECKOK(group->meth->
106 field_add(&tempx, &lambda, &tempx, group->meth));
[all...]
H A Decp_aff.c107 MP_CHECKOK(group->meth->field_sub(py, qy, &tempy, group->meth));
108 MP_CHECKOK(group->meth->field_sub(px, qx, &tempx, group->meth));
109 MP_CHECKOK(group->meth->
110 field_div(&tempy, &tempx, &lambda, group->meth));
120 MP_CHECKOK(group->meth->field_sqr(qx, &tempx, group->meth));
122 if (group->meth->field_enc) {
123 MP_CHECKOK(group->meth
[all...]
H A Decp_jac.c68 if (group->meth->field_enc) {
69 MP_CHECKOK(group->meth->field_enc(rz, rz, group->meth));
105 MP_CHECKOK(group->meth->field_div(NULL, pz, &z1, group->meth));
106 MP_CHECKOK(group->meth->field_sqr(&z1, &z2, group->meth));
107 MP_CHECKOK(group->meth->field_mul(&z1, &z2, &z3, group->meth));
108 MP_CHECKOK(group->meth
[all...]
H A Decl-priv.h137 const GFMethod *meth);
138 mp_err (*field_neg) (const mp_int *a, mp_int *r, const GFMethod *meth);
140 const GFMethod *meth);
141 mp_err (*field_mod) (const mp_int *a, mp_int *r, const GFMethod *meth);
143 const GFMethod *meth);
144 mp_err (*field_sqr) (const mp_int *a, mp_int *r, const GFMethod *meth);
146 const GFMethod *meth);
147 mp_err (*field_enc) (const mp_int *a, mp_int *r, const GFMethod *meth);
148 mp_err (*field_dec) (const mp_int *a, mp_int *r, const GFMethod *meth);
153 void (*extra_free) (GFMethod *meth);
169 GFMethod *meth; member in struct:ECGroupStr
[all...]
H A Decl_mult.c80 if (group->meth->field_enc) {
81 MP_CHECKOK(group->meth->field_enc(px, rx, group->meth));
82 MP_CHECKOK(group->meth->field_enc(py, ry, group->meth));
88 if (group->meth->field_dec) {
89 MP_CHECKOK(group->meth->field_dec(rx, rx, group->meth));
90 MP_CHECKOK(group->meth->field_dec(ry, ry, group->meth));
[all...]
H A Decp_521.c52 ec_GFp_nistp521_mod(const mp_int *a, mp_int *r, const GFMethod *meth) argument
75 MP_CHECKOK(mp_mod(a, &meth->irr, r));
109 ec_GFp_nistp521_sqr(const mp_int *a, mp_int *r, const GFMethod *meth) argument
114 MP_CHECKOK(ec_GFp_nistp521_mod(r, r, meth));
124 const GFMethod *meth)
129 MP_CHECKOK(ec_GFp_nistp521_mod(r, r, meth));
138 const GFMethod *meth)
145 return mp_invmod(b, &meth->irr, r);
150 MP_CHECKOK(mp_invmod(b, &meth->irr, &t));
152 MP_CHECKOK(ec_GFp_nistp521_mod(r, r, meth));
123 ec_GFp_nistp521_mul(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
137 ec_GFp_nistp521_div(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
[all...]
H A Dec2_163.c52 ec_GF2m_163_mod(const mp_int *a, mp_int *r, const GFMethod *meth) argument
124 ec_GF2m_163_sqr(const mp_int *a, mp_int *r, const GFMethod *meth) argument
133 return mp_bsqrmod(a, meth->irr_arr, r);
141 return mp_bsqrmod(a, meth->irr_arr, r);
164 return ec_GF2m_163_mod(r, r, meth);
174 const GFMethod *meth)
185 return ec_GF2m_163_sqr(a, r, meth);
245 return ec_GF2m_163_mod(r, r, meth);
256 group->meth->field_mod = &ec_GF2m_163_mod;
257 group->meth
173 ec_GF2m_163_mul(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
[all...]
H A Dec2_193.c52 ec_GF2m_193_mod(const mp_int *a, mp_int *r, const GFMethod *meth) argument
132 ec_GF2m_193_sqr(const mp_int *a, mp_int *r, const GFMethod *meth) argument
141 return mp_bsqrmod(a, meth->irr_arr, r);
149 return mp_bsqrmod(a, meth->irr_arr, r);
173 return ec_GF2m_193_mod(r, r, meth);
183 const GFMethod *meth)
194 return ec_GF2m_193_sqr(a, r, meth);
262 return ec_GF2m_193_mod(r, r, meth);
273 group->meth->field_mod = &ec_GF2m_193_mod;
274 group->meth
182 ec_GF2m_193_mul(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
[all...]
H A Decp_192.c52 ec_GFp_nistp192_mod(const mp_int *a, mp_int *r, const GFMethod *meth) argument
79 MP_CHECKOK(mp_mod(a, &meth->irr, r));
292 const GFMethod *meth)
373 const GFMethod *meth)
451 ec_GFp_nistp192_sqr(const mp_int *a, mp_int *r, const GFMethod *meth) argument
456 MP_CHECKOK(ec_GFp_nistp192_mod(r, r, meth));
466 const GFMethod *meth)
471 MP_CHECKOK(ec_GFp_nistp192_mod(r, r, meth));
480 const GFMethod *meth)
487 return mp_invmod(b, &meth
291 ec_GFp_nistp192_add(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
372 ec_GFp_nistp192_sub(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
465 ec_GFp_nistp192_mul(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
479 ec_GFp_nistp192_div(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
[all...]
H A Decp_384.c50 ec_GFp_nistp384_mod(const mp_int *a, mp_int *r, const GFMethod *meth) argument
81 MP_CHECKOK(mp_mod(a, &meth->irr, r));
176 MP_CHECKOK(mp_submod(r, &m[9], &meth->irr, r));
183 MP_CHECKOK(mp_mod(a, &meth->irr, r));
245 MP_CHECKOK(mp_submod(r, &m[9], &meth->irr, r));
258 ec_GFp_nistp384_sqr(const mp_int *a, mp_int *r, const GFMethod *meth) argument
263 MP_CHECKOK(ec_GFp_nistp384_mod(r, r, meth));
273 const GFMethod *meth)
278 MP_CHECKOK(ec_GFp_nistp384_mod(r, r, meth));
289 group->meth
272 ec_GFp_nistp384_mul(const mp_int *a, const mp_int *b, mp_int *r, const GFMethod *meth) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DMethodFinder.java45 MethodDoc meth = searchInterfaces(cd, method);
46 if (meth != null) {
47 return meth;
51 meth = Util.findMethod(icd, method);
52 if (meth != null) {
53 if (isCorrectMethod(meth)) {
54 return meth;
/openjdk7/langtools/test/tools/javac/generics/
H A DT4739399.java41 public <M extends C1GenericInterface,N extends M & C1B1<X>> void meth( ) {} method in class:T4739399.Crash1Test
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DMethodDoc.java89 * @param meth the other method to examine
93 boolean overrides(MethodDoc meth); argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DJavadocMemberEnter.java66 MethodSymbol meth = tree.sym;
67 if (meth == null || meth.kind != Kinds.MTH) return;
70 if (meth.isConstructor())
71 docenv.makeConstructorDoc(meth, docComment, tree, lineMap);
72 else if (isAnnotationTypeElement(meth))
73 docenv.makeAnnotationTypeElementDoc(meth, docComment, tree, lineMap);
75 docenv.makeMethodDoc(meth, docComment, tree, lineMap);
89 private static boolean isAnnotationTypeElement(MethodSymbol meth) { argument
90 return ClassDocImpl.isAnnotationType(meth
[all...]
H A DAnnotationDescImpl.java130 private final MethodSymbol meth; field in class:AnnotationDescImpl.ElementValuePairImpl
133 ElementValuePairImpl(DocEnv env, MethodSymbol meth, Attribute value) { argument
135 this.meth = meth;
143 return env.getAnnotationTypeElementDoc(meth);
159 return meth.name + "=" + value();
H A DDocEnv.java623 protected void makeMethodDoc(MethodSymbol meth, String docComment, argument
625 MethodDocImpl result = (MethodDocImpl)methodMap.get(meth);
630 result = new MethodDocImpl(this, meth, docComment, tree, lineMap);
631 methodMap.put(meth, result);
639 public MethodDocImpl getMethodDoc(MethodSymbol meth) { argument
640 assert !meth.isConstructor() : "not expecting a constructor symbol";
641 MethodDocImpl result = (MethodDocImpl)methodMap.get(meth);
643 result = new MethodDocImpl(this, meth);
644 methodMap.put(meth, result);
652 protected void makeConstructorDoc(MethodSymbol meth, Strin argument
668 getConstructorDoc(MethodSymbol meth) argument
681 makeAnnotationTypeElementDoc(MethodSymbol meth, String docComment, JCMethodDecl tree, Position.LineMap lineMap) argument
699 getAnnotationTypeElementDoc( MethodSymbol meth) argument
[all...]
/openjdk7/jdk/test/java/awt/xembed/server/
H A DRunTestXEmbed.java104 Method meth = cl.getMethod(args[0], new Class[0]);
106 boolean res = performTest(meth);
117 Method meth = meths[i];
118 if (meth.getReturnType() == Void.TYPE && meth.getName().startsWith("test") && meth.getParameterTypes().length == 0) {
119 System.err.println("Performing " + meth.getName());
120 boolean res = performTest(meth);
122 failed.add(meth);
131 Method meth
141 performTest(Method meth) argument
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/
H A DFunctionGenerator.java101 JLMethod meth = new JLMethod("public", returnJavaType.getJavaReturnTypeName(), fxn.getJavaName());
104 meth.args.add("final " + arg.type.getJType().getTypeNameAsParam() + " " + arg.javaName);
107 meth.args.add("final Object... " + VARARGS_NAME);
111 meth.jdoc.add("@deprecated The framework recommends that this method be ignored. (It may be deprecated.)" + suggestion);
112 meth.attrs.add("@Deprecated");
120 meth.jdoc.add("@deprecated Possible type mismatch: (return value) " + retMsg);
121 meth.attrs.add("@Deprecated");
129 meth.jdoc.add("@deprecated Possible type mismatch: (arg" + i + ": " + arg.javaName + ") " + argMsg);
130 meth.attrs.add("@Deprecated");
136 meth
[all...]
/openjdk7/langtools/test/tools/javadoc/
H A DLangVers.java56 for (MethodDoc meth : fishdoc.methods()) {
57 System.out.println(meth);
58 if (meth.flatSignature().indexOf('<') >= 0) {
/openjdk7/langtools/test/tools/javac/
H A DSynthName1.java42 Intf ob = meth(1, 2);
56 static Intf meth(final int prm1, final int zzz) { method in class:SynthName1
H A DSynthName2.java41 Intf ob = meth(1, 2);
55 static Intf meth(final int prm1, final int zzz) { method in class:SynthName1

Completed in 86 milliseconds

1234