Searched defs:Fp (Results 1 - 5 of 5) sorted by relevance

/external/v8/test/mjsunit/compiler/
H A Dregress-8.js34 var Fp = ""; variable
53 LA+(a.Un+(zE+(Fp+(LA+(a.Im+(zE+(AE+(LA+(a.total+Gob))))))))),
60 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Hob))))),p);
65 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Iob))))),p);
70 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Job))))),p);
75 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Kob))))),p);
80 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Lob))))),p);
85 LA+(a.Un+(zE+(Fp+(LA+(a.Im+(zE+(Mob+(LA+(a.total+zE))))))))),
101 LA+(a.Un+(zE+(Fp+(LA+(a.Im+(zE+(AE+(LA+(a.total+zE))))))))),
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECPoint.java156 * Elliptic curve points over Fp
158 public static class Fp extends ECPoint class in class:ECPoint
168 public Fp(ECCurve curve, ECFieldElement x, ECFieldElement y) method in class:ECPoint.Fp
181 public Fp(ECCurve curve, ECFieldElement x, ECFieldElement y, boolean withCompression) method in class:ECPoint.Fp
271 return new ECPoint.Fp(curve, x3, y3);
297 return new ECPoint.Fp(curve, x3, y3, this.withCompression);
314 return new ECPoint.Fp(curve, this.x, this.y.negate(), this.withCompression);
H A DECCurve.java34 * Elliptic curve over Fp
36 public static class Fp extends ECCurve class in class:ECCurve
39 ECPoint.Fp infinity;
41 public Fp(BigInteger q, BigInteger a, BigInteger b) method in class:ECCurve.Fp
46 this.infinity = new ECPoint.Fp(this, null, null);
61 return new ECFieldElement.Fp(this.q, x);
66 return new ECPoint.Fp(this, fromBigInteger(x), fromBigInteger(y), withCompression);
97 ECFieldElement x = new ECFieldElement.Fp(this.q, new BigInteger(1, i));
114 p = new ECPoint.Fp(this, x, beta, true);
118 p = new ECPoint.Fp(thi
[all...]
H A DECFieldElement.java27 public static class Fp extends ECFieldElement class in class:ECFieldElement
33 public Fp(BigInteger q, BigInteger x) method in class:ECFieldElement.Fp
53 * @return the string "Fp".
57 return "Fp";
72 return new Fp(q, x.add(b.toBigInteger()).mod(q));
77 return new Fp(q, x.subtract(b.toBigInteger()).mod(q));
82 return new Fp(q, x.multiply(b.toBigInteger()).mod(q));
87 return new Fp(q, x.multiply(b.toBigInteger().modInverse(q)).mod(q));
92 return new Fp(q, x.negate().mod(q));
97 return new Fp(
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1706 void NVPTXAsmPrinter::printFPConstant(const ConstantFP *Fp, raw_ostream &O) { argument
1707 APFloat APF = APFloat(Fp->getValueAPF()); // make a copy
1712 if (Fp->getType()->getTypeID()==Type::FloatTyID) {
1717 } else if (Fp->getType()->getTypeID() == Type::DoubleTyID) {

Completed in 112 milliseconds