Home
last modified time | relevance | path

Searched refs:getX (Results 1 – 25 of 39) sorted by relevance

12

/external/clang/test/CodeGenCXX/
Dcondition.cpp27 X getX();
56 if (getX()) { } in if_destruct()
130 while(getX()) { } in while_destruct()
217 for(; getX(); getX(), ++i) { } in for_destruct()
235 } while (getX()); in do_destruct()
Dx86_64-arguments.cpp91 X getX();
96 takeY(getX().f(), 42); in g()
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
DJDKDSAPrivateKey.java41 this.x = key.getX(); in JDKDSAPrivateKey()
48 this.x = spec.getX(); in JDKDSAPrivateKey()
65 this.x = params.getX(); in JDKDSAPrivateKey()
92 …Parameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).getDERObject()), new DERInteger(getX())); in getEncoded()
102 public BigInteger getX() in getX() method in JDKDSAPrivateKey
117 return this.getX().equals(other.getX()) in equals()
125 return this.getX().hashCode() ^ this.getParams().getG().hashCode() in hashCode()
DJCEDHPrivateKey.java45 this.x = key.getX(); in JCEDHPrivateKey()
52 this.x = spec.getX(); in JCEDHPrivateKey()
94 this.x = params.getX(); in JCEDHPrivateKey()
126 … DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).getDERObject()), new DERInteger(getX())); in getEncoded()
136 public BigInteger getX() in getX() method in JCEDHPrivateKey
154 out.writeObject(this.getX()); in writeObject()
DJCEECPublicKey.java101 … q = s.getCurve().createPoint(q.getX().toBigInteger(), q.getY().toBigInteger(), false); in JCEECPublicKey()
170 dp.getG().getX().toBigInteger(), in createSpec()
259 ecP.getG().getX().toBigInteger(), in populateFromPubKeyInfo()
279 ecP.getG().getX().toBigInteger(), in populateFromPubKeyInfo()
401 …new X9ECPoint(curve.createPoint(this.getQ().getX().toBigInteger(), this.getQ().getY().toBigInteger… in getEncoded()
442 return new ECPoint(q.getX().toBigInteger(), q.getY().toBigInteger()); in getW()
451 return new org.bouncycastle.math.ec.ECPoint.Fp(null, q.getX(), q.getY()); in getQ()
455 return new org.bouncycastle.math.ec.ECPoint.F2m(null, q.getX(), q.getY()); in getQ()
483 buf.append(" X: ").append(this.q.getX().toBigInteger().toString(16)).append(nl); in toString()
DJCEECPrivateKey.java128 dp.getG().getX().toBigInteger(), in JCEECPrivateKey()
159 dp.getG().getX().toBigInteger(), in JCEECPrivateKey()
171 spec.getG().getX().toBigInteger(), in JCEECPrivateKey()
228 ecP.getG().getX().toBigInteger(), in populateFromPrivKeyInfo()
246 ecP.getG().getX().toBigInteger(), in populateFromPrivKeyInfo()
DJCEDHKeyAgreement.java193 this.x = this.result = privKey.getX(); in engineInit()
210 this.x = this.result = privKey.getX(); in engineInit()
DDSAUtil.java43 return new DSAPrivateKeyParameters(k.getX(), in generatePrivateKeyParameter()
/external/clang/test/Index/
Dget-cursor.cpp10 X getX(int value) { in getX() function
23 X getX();
26 X Y::getX() { in getX() function in Y
/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
DECPoint.java36 public ECFieldElement getX() in getX() method in ECPoint
218 byte[] X = converter.integerToBytes(this.getX().toBigInteger(), qLength); in getEncoded()
228 byte[] X = converter.integerToBytes(this.getX().toBigInteger(), qLength); in getEncoded()
385 byte[] X = converter.integerToBytes(this.getX().toBigInteger(), byteCount); in getEncoded()
399 if (!(this.getX().toBigInteger().equals(ECConstants.ZERO))) in getEncoded()
401 if (this.getY().multiply(this.getX().invert()) in getEncoded()
475 ECFieldElement.F2m x2 = (ECFieldElement.F2m)other.getX(); in addSimple()
567 … return new ECPoint.F2m(curve, this.getX(), this.getY().add(this.getX()), withCompression); in negate()
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
DDHPrivateKeyParameters.java19 public BigInteger getX() in getX() method in DHPrivateKeyParameters
39 return other.getX().equals(this.x) && super.equals(obj); in equals()
DDSAPrivateKeyParameters.java19 public BigInteger getX() in getX() method in DSAPrivateKeyParameters
/external/webkit/Source/JavaScriptGlue/
Dtestjsglue.cpp49 JSObjectRef getX = JSObjectCopyProperty(globalObject, CFSTR("getX")); in main() local
50 JSObjectRef jsResult = JSObjectCallFunction(getX, globalObject, 0); in main()
/external/v8/test/mjsunit/
Daccessors-on-global-object.js33 function getX() { return x; } function
36 assertEquals(i < 5 ? 0 : 42, getX());
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
DDSAKeyFactoryImplTest.java133 privateX = privateKey.getX();
228 .getX().compareTo(privateX)); in checkPrivateIntegers()
445 public BigInteger getX() { return x; } in testGeneratePrivateKeySpec04()
487 public BigInteger getX() { return x; } in testGeneratePrivateKeySpec05()
633 public BigInteger getX() { return x; } in testGetKeySpec05()
797 final BigInteger x = privateKey.getX(); in testTranslateKey05()
811 public BigInteger getX() { return x; } in testTranslateKey05()
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
DEncodedKeySpec2Test.java75 return dsa1.getX().equals(dsa2.getX()) in isEqual()
DDSAPrivateKeySpecTest.java106 assertEquals(1, dpks.getX().intValue()); in testGetX()
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/asymmetric/ec/
DEC5Util.java77 spec.getG().getX().toBigInteger(), in convertSpec()
87 spec.getG().getX().toBigInteger(), in convertSpec()
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/signers/
DECDSASigner.java84 BigInteger x = p.getX().toBigInteger(); in generateSignature()
140 BigInteger v = point.getX().toBigInteger().mod(n); in verifySignature()
/external/clang/test/PCH/
Dstruct.c10 float getX(struct Point *p1) { in getX() function
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/interfaces/
DDSAPrivateKeyTest.java69 public BigInteger getX() { in getX() method in DSAPrivateKeyTest.checkDSAPrivateKey
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/interfaces/
DDHPrivateKeyTest.java70 public BigInteger getX() { in getX() method in DHPrivateKeyTest.checkDHPrivateKey
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/agreement/
DECDHBasicAgreement.java45 return P.getX().toBigInteger(); in calculateAgreement()
DDHBasicAgreement.java64 return pub.getY().modPow(key.getX(), dhParams.getP()); in calculateAgreement()
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DDHPrivateKeySpecTest.java52 dhpks.getX(), xs[i]); in testDHPrivateKeySpec()

12