/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
ECPoint.java | 38 return new ECFieldElement[]{ one, curve.getA() }; 547 ECFieldElement X = this.x, Y = this.y, A = curve.getA(), B = curve.getB(); 906 ECFieldElement gamma = three(X1Squared).add(this.getCurve().getA()).divide(two(Y1)); 920 ECFieldElement w = curve.getA(); 952 ECFieldElement a4 = curve.getA(); [all...] |
Tnaf.java | 415 if (curve.getA().isZero()) 546 int a = curve.getA().toBigInteger().intValue(); 658 int a = curve.getA().toBigInteger().intValue(); 678 byte mu = getMu(curve.getA());
|
ECCurve.java | 313 public ECFieldElement getA() 483 && getA().toBigInteger().equals(other.getA().toBigInteger()) 495 ^ Integers.rotateLeft(getA().toBigInteger().hashCode(), 8) 774 ECFieldElement beta = x.square().invert().multiply(this.getB()).add(this.getA()).add(x); [all...] |
/external/clang/test/SemaCXX/ |
uninitialized.cpp | 235 A getA() { return A(); } 236 A getA(int x) { return A(); } 237 A getA(A* a) { return A(); } 238 A getA(A a) { return A(); } 250 A a7 = getA(); 251 A a8 = getA(a8.TWO); 252 A a9 = getA(&a9); 259 A a15 = getA(a15.num); // expected-warning {{variable 'a15' is uninitialized when used within its own initialization}} 263 A a19 = getA(x ? a19 : a17); // expected-warning {{variable 'a19' is uninitialized when used within its own initialization}} 314 A a7 = getA(); [all...] |
err_typecheck_assign_const_filecheck.cpp | 55 A& getA();
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/special/ |
Beta.java | 148 protected double getA(int n, double x) {
|
Gamma.java | 256 protected double getA(int n, double x) {
|
/external/clang/test/CodeGenCXX/ |
microsoft-abi-structors.cpp | 453 void *getA() {
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/ |
ECNamedCurveSpec.java | 31 BigInteger a = curve.getA().toBigInteger(), b = curve.getB().toBigInteger();
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
Differ.java | 53 public T getA(int offset) {
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
Differ.java | 51 public T getA(int offset) {
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue11/ |
YamlMapTest.java | 83 public String getA() {
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
EC5Util.java | 148 BigInteger a = curve.getA().toBigInteger(), b = curve.getB().toBigInteger(); 159 BigInteger a = ec.getA();
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
MicroTest.java | 125 assertEquals(1, nestedMsg.getA().getId()); 145 assertEquals(1, newMsg.getNestedMessage().getA().getId()); 577 assertEquals(1, msg.getOptionalGroup().getA()); 595 assertEquals(1, newMsg.getOptionalGroup().getA()); [all...] |
ServiceTest.java | 229 assertEquals(123, message.getA());
|
TestUtil.java | 589 Assert.assertEquals(117, message.getOptionalGroup ().getA()); [all...] |
TextFormatTest.java | 439 assertEquals(1, builder.getOptionalGroup().getA()); [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/ |
EllipticCurveTest.java | 437 * Test for <code>getA()</code> method<br> 450 assertEquals(a, c.getA()); 451 assertSame(a, c.getA()); 461 assertEquals("incorrect a", ec.getA(), BigInteger.valueOf(4L));
|
/libcore/luni/src/test/java/tests/security/spec/ |
EllipticCurveTest.java | 418 * Test for <code>getA()</code> method<br> 431 assertEquals(a, c.getA()); 432 assertSame(a, c.getA()); 442 assertEquals("incorrect a", ec.getA(), BigInteger.valueOf(4L));
|
/external/conscrypt/src/main/java/org/conscrypt/ |
OpenSSLECGroupContext.java | 138 final BigInteger a = curve.getA();
|
/external/snakeyaml/src/test/java/examples/ |
DiceExampleTest.java | 62 String value = dice.getA() + "d" + dice.getB();
|
/external/guava/guava-tests/test/com/google/common/reflect/ |
TypeTokenResolutionTest.java | 315 Red<A> getA() { 339 assertEquals(String.class, yellowInteger.getA().getClassDirect());
|
/external/llvm/lib/Analysis/ |
DependenceAnalysis.cpp | 309 const SCEV *DependenceAnalysis::Constraint::getA() const { 403 " (" << *getA() << "*X + " << *getB() << "*Y = " << *getC() << ")\n"; 405 OS << " Line is " << *getA() << "*X + " << 468 const SCEV *Prod1 = SE->getMulExpr(X->getA(), Y->getB()); 469 const SCEV *Prod2 = SE->getMulExpr(X->getB(), Y->getA()); 488 const SCEV *C1A2 = SE->getMulExpr(X->getC(), Y->getA()); 490 const SCEV *C2A1 = SE->getMulExpr(Y->getC(), X->getA()); 491 const SCEV *A1B2 = SE->getMulExpr(X->getA(), Y->getB()); 492 const SCEV *A2B1 = SE->getMulExpr(Y->getA(), X->getB()); 553 const SCEV *A1X1 = SE->getMulExpr(Y->getA(), X->getX()) [all...] |
/external/llvm/include/llvm/Analysis/ |
DependenceAnalysis.h | 422 /// getA - If constraint is a line AX + BY = C, returns A. 424 const SCEV *getA() const; [all...] |
/cts/tests/tests/keystore/src/android/keystore/cts/ |
TestUtils.java | 230 assertEquals(msgPrefix + "curve A", expectedCurve.getA(), actualCurve.getA()); [all...] |