Searched refs:createPoint (Results 1 – 6 of 6) sorted by relevance
/external/v8/test/mjsunit/ |
D | debug-backtrace-text.js | 52 function createPoint(x, y) { function 118 createPoint(0, 0);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
D | ECCurve.java | 17 public abstract ECPoint createPoint(BigInteger x, BigInteger y, boolean withCompression); in createPoint() method in ECCurve 64 public ECPoint createPoint(BigInteger x, BigInteger y, boolean withCompression) in createPoint() method in ECCurve.Fp 401 public ECPoint createPoint(BigInteger x, BigInteger y, boolean withCompression) in createPoint() method in ECCurve.F2m
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/ |
D | EC5Util.java | 121 return curve.createPoint(point.getAffineX(), point.getAffineY(), withCompression); in convertPoint()
|
D | BCECPublicKey.java | 91 … q = s.getCurve().createPoint(q.getX().toBigInteger(), q.getY().toBigInteger(), false); in BCECPublicKey() 312 …new X9ECPoint(curve.createPoint(this.getQ().getX().toBigInteger(), this.getQ().getY().toBigInteger… in getEncoded()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
D | JCEECPublicKey.java | 101 … q = s.getCurve().createPoint(q.getX().toBigInteger(), q.getY().toBigInteger(), false); in JCEECPublicKey() 408 …new X9ECPoint(curve.createPoint(this.getQ().getX().toBigInteger(), this.getQ().getY().toBigInteger… in getEncoded()
|
/external/bouncycastle/patches/ |
D | bcprov.patch | 7276 - this.q = curve.createPoint(new BigInteger(1, x), new BigInteger(1, y), false); 7325 + // this.q = curve.createPoint(new BigInteger(1, x), new BigInteger(1, y), false);
|