/external/clang/test/CodeGenCXX/ |
D | condition.cpp | 27 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()
|
D | x86_64-arguments.cpp | 91 X getX(); 96 takeY(getX().f(), 42); in g()
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
D | JDKDSAPrivateKey.java | 41 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()
|
D | JCEDHPrivateKey.java | 45 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()
|
D | JCEECPublicKey.java | 101 … 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()
|
D | JCEECPrivateKey.java | 128 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()
|
D | JCEDHKeyAgreement.java | 193 this.x = this.result = privKey.getX(); in engineInit() 210 this.x = this.result = privKey.getX(); in engineInit()
|
D | DSAUtil.java | 43 return new DSAPrivateKeyParameters(k.getX(), in generatePrivateKeyParameter()
|
/external/clang/test/Index/ |
D | get-cursor.cpp | 10 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/ |
D | ECPoint.java | 36 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/ |
D | DHPrivateKeyParameters.java | 19 public BigInteger getX() in getX() method in DHPrivateKeyParameters 39 return other.getX().equals(this.x) && super.equals(obj); in equals()
|
D | DSAPrivateKeyParameters.java | 19 public BigInteger getX() in getX() method in DSAPrivateKeyParameters
|
/external/webkit/Source/JavaScriptGlue/ |
D | testjsglue.cpp | 49 JSObjectRef getX = JSObjectCopyProperty(globalObject, CFSTR("getX")); in main() local 50 JSObjectRef jsResult = JSObjectCallFunction(getX, globalObject, 0); in main()
|
/external/v8/test/mjsunit/ |
D | accessors-on-global-object.js | 33 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/ |
D | DSAKeyFactoryImplTest.java | 133 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/ |
D | EncodedKeySpec2Test.java | 75 return dsa1.getX().equals(dsa2.getX()) in isEqual()
|
D | DSAPrivateKeySpecTest.java | 106 assertEquals(1, dpks.getX().intValue()); in testGetX()
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/asymmetric/ec/ |
D | EC5Util.java | 77 spec.getG().getX().toBigInteger(), in convertSpec() 87 spec.getG().getX().toBigInteger(), in convertSpec()
|
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/signers/ |
D | ECDSASigner.java | 84 BigInteger x = p.getX().toBigInteger(); in generateSignature() 140 BigInteger v = point.getX().toBigInteger().mod(n); in verifySignature()
|
/external/clang/test/PCH/ |
D | struct.c | 10 float getX(struct Point *p1) { in getX() function
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/interfaces/ |
D | DSAPrivateKeyTest.java | 69 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/ |
D | DHPrivateKeyTest.java | 70 public BigInteger getX() { in getX() method in DHPrivateKeyTest.checkDHPrivateKey
|
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/agreement/ |
D | ECDHBasicAgreement.java | 45 return P.getX().toBigInteger(); in calculateAgreement()
|
D | DHBasicAgreement.java | 64 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/ |
D | DHPrivateKeySpecTest.java | 52 dhpks.getX(), xs[i]); in testDHPrivateKeySpec()
|