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

12345

/openjdk10/jdk/src/jdk.crypto.ec/share/native/libsunec/impl/
H A Dec2_mont.c62 MP_CHECKOK(group->meth->field_sqr(x, x, group->meth));
63 MP_CHECKOK(group->meth->field_sqr(z, &t1, group->meth));
64 MP_CHECKOK(group->meth->field_mul(x, &t1, z, group->meth));
65 MP_CHECKOK(group->meth->field_sqr(x, x, group->meth));
66 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 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.c101 MP_CHECKOK(group->meth->field_add(py, qy, &tempy, group->meth));
102 MP_CHECKOK(group->meth->field_add(px, qx, &tempx, group->meth));
103 MP_CHECKOK(group->meth->
104 field_div(&tempy, &tempx, &lambda, group->meth));
105 MP_CHECKOK(group->meth->field_sqr(&lambda, &tempx, group->meth));
106 MP_CHECKOK(group->meth->
107 field_add(&tempx, &lambda, &tempx, group->meth));
[all...]
H A Decp_jm.c81 MP_CHECKOK(group->meth->field_sqr(px, t0, group->meth));
82 MP_CHECKOK(group->meth->field_add(t0, t0, M, group->meth));
83 MP_CHECKOK(group->meth->field_add(t0, M, t0, group->meth));
84 MP_CHECKOK(group->meth->field_add(t0, paz4, M, group->meth));
87 MP_CHECKOK(group->meth->field_mul(py, pz, S, group->meth));
[all...]
H A Decp_aff.c108 MP_CHECKOK(group->meth->field_sub(py, qy, &tempy, group->meth));
109 MP_CHECKOK(group->meth->field_sub(px, qx, &tempx, group->meth));
110 MP_CHECKOK(group->meth->
111 field_div(&tempy, &tempx, &lambda, group->meth));
121 MP_CHECKOK(group->meth->field_sqr(qx, &tempx, group->meth));
123 if (group->meth->field_enc) {
124 MP_CHECKOK(group->meth
[all...]
H A Decp_jac.c69 if (group->meth->field_enc) {
70 MP_CHECKOK(group->meth->field_enc(rz, rz, group->meth));
106 MP_CHECKOK(group->meth->field_div(NULL, pz, &z1, group->meth));
107 MP_CHECKOK(group->meth->field_sqr(&z1, &z2, group->meth));
108 MP_CHECKOK(group->meth->field_mul(&z1, &z2, &z3, group->meth));
109 MP_CHECKOK(group->meth
[all...]
H A Decl-priv.h138 const GFMethod *meth);
139 mp_err (*field_neg) (const mp_int *a, mp_int *r, const GFMethod *meth);
141 const GFMethod *meth);
142 mp_err (*field_mod) (const mp_int *a, mp_int *r, const GFMethod *meth);
144 const GFMethod *meth);
145 mp_err (*field_sqr) (const mp_int *a, mp_int *r, const GFMethod *meth);
147 const GFMethod *meth);
148 mp_err (*field_enc) (const mp_int *a, mp_int *r, const GFMethod *meth);
149 mp_err (*field_dec) (const mp_int *a, mp_int *r, const GFMethod *meth);
154 void (*extra_free) (GFMethod *meth);
170 GFMethod *meth; member in struct:ECGroupStr
[all...]
H A Decl_mult.c83 if (group->meth->field_enc) {
84 MP_CHECKOK(group->meth->field_enc(px, rx, group->meth));
85 MP_CHECKOK(group->meth->field_enc(py, ry, group->meth));
92 if (group->meth->field_dec) {
93 MP_CHECKOK(group->meth->field_dec(rx, rx, group->meth));
94 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...]
/openjdk10/langtools/test/tools/javac/generics/
H A DT4739399.java18 public <M extends C1GenericInterface,N extends M & C1B1<X>> void meth( ) {} method in class:T4739399.Crash1Test
/openjdk10/langtools/test/tools/javac/lambda/
H A DMethodReference32.java17 MethodReference32 meth(List<Integer>... lli) { return null; } method in class:MethodReference32
20 SAM s1 = this::meth;
H A DMethodReference06.java44 abstract void meth(int i); method in interface:MethodReference06.SAM
54 mh.meth(i);
H A DLambdaTestStrictFPFlag.java45 for (Method meth: cf.methods) {
46 if (meth.getName(cp).startsWith("lambda$")) {
47 if ((meth.access_flags.flags & ACC_STRICT) == 0) {
H A DNestedCapture04.java50 Cltype2 meth(Cltype2 w) {
63 Cltype6 meth(Cltype6 w) {
95 Cltype6 v = new Cltype6().meth(new Cltype6());
116 Cltype2 v = new Cltype2().meth(new Cltype2());
/openjdk10/jdk/test/java/lang/reflect/Parameter/
H A DGetAnnotatedTypeTest.java34 public void meth(Object param) {} method in class:GetAnnotatedTypeTest
37 if (GetAnnotatedTypeTest.class.getMethod("meth", Object.class).getParameters()[0].getAnnotatedType().getType() != Object.class)
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/javadoc/
H A DMethodDoc.java104 * @param meth the other method to examine
108 boolean overrides(MethodDoc meth); argument
/openjdk10/langtools/test/tools/javac/warnings/
H A DDeprecationSE8Test.java13 DeprecationSE8Test meth(); method in interface:DeprecationSE8Test.I
18 int meth(); method in interface:DeprecationSE8Test.J
/openjdk10/jdk/test/java/awt/xembed/server/
H A DRunTestXEmbed.java111 Method meth = cl.getMethod(args[0], new Class[0]);
113 boolean res = performTest(meth);
124 Method meth = meths[i];
125 if (meth.getReturnType() == Void.TYPE && meth.getName().startsWith("test") && meth.getParameterTypes().length == 0) {
126 System.err.println("Performing " + meth.getName());
127 boolean res = performTest(meth);
129 failed.add(meth);
138 Method meth
148 performTest(Method meth) argument
[all...]
/openjdk10/langtools/test/tools/javadoc/
H A DLangVers.java57 for (MethodDoc meth : fishdoc.methods()) {
58 System.out.println(meth);
59 if (meth.flatSignature().indexOf('<') >= 0) {
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/failures/common/receiver/
H A DNesting.java45 void meth(@A Nesting this) { method in class:Nesting
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DJavadocMemberEnter.java73 MethodSymbol meth = tree.sym;
74 if (meth == null || meth.kind != MTH) return;
76 if (meth.isConstructor())
77 docenv.makeConstructorDoc(meth, treePath);
78 else if (isAnnotationTypeElement(meth))
79 docenv.makeAnnotationTypeElementDoc(meth, treePath);
81 docenv.makeMethodDoc(meth, treePath);
108 private static boolean isAnnotationTypeElement(MethodSymbol meth) { argument
109 return ClassDocImpl.isAnnotationType(meth
[all...]
H A DAnnotationDescImpl.java146 private final MethodSymbol meth; field in class:AnnotationDescImpl.ElementValuePairImpl
149 ElementValuePairImpl(DocEnv env, MethodSymbol meth, Attribute value) { argument
151 this.meth = meth;
159 return env.getAnnotationTypeElementDoc(meth);
175 return meth.name + "=" + value();
/openjdk10/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.java18 Intf ob = meth(1, 2);
32 static Intf meth(final int prm1, final int zzz) { method in class:SynthName2

Completed in 309 milliseconds

12345