/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/ |
D | BCDHPrivateKey.java | 75 if (params.getL() != null) in BCDHPrivateKey() 77 … this.dhSpec = new DHParameterSpec(params.getP(), params.getG(), params.getL().intValue()); in BCDHPrivateKey() 100 …rSpec(params.getParameters().getP(), params.getParameters().getG(), params.getParameters().getL()); in BCDHPrivateKey() 133 …iers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).toASN1Primitive(… in getEncoded() 166 && this.getParams().getL() == other.getParams().getL(); in equals() 172 ^ this.getParams().getP().hashCode() ^ this.getParams().getL(); in hashCode() 212 out.writeInt(dhSpec.getL()); in writeObject()
|
D | BCDHPublicKey.java | 58 …rSpec(params.getParameters().getP(), params.getParameters().getG(), params.getParameters().getL()); in BCDHPublicKey() 96 if (params.getL() != null) in BCDHPublicKey() 98 … this.dhSpec = new DHParameterSpec(params.getP(), params.getG(), params.getL().intValue()); in BCDHPublicKey() 145 …iers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).toASN1Primitive(… in getEncoded() 189 ^ this.getParams().getP().hashCode() ^ this.getParams().getL(); in hashCode() 205 && this.getParams().getL() == other.getParams().getL(); in equals() 226 out.writeInt(dhSpec.getL()); in writeObject()
|
D | AlgorithmParametersSpi.java | 49 … DHParameter dhP = new DHParameter(currentSpec.getP(), currentSpec.getG(), currentSpec.getL()); in engineGetEncoded() 104 if (dhP.getL() != null) in engineInit() 106 … currentSpec = new DHParameterSpec(dhP.getP(), dhP.getG(), dhP.getL().intValue()); in engineInit()
|
D | KeyPairGeneratorSpi.java | 59 …ationParameters(random, new DHParameters(dhParams.getP(), dhParams.getG(), null, dhParams.getL())); in initialize() 81 …ationParameters(random, new DHParameters(dhParams.getP(), dhParams.getG(), null, dhParams.getL())); in generateKeyPair()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
D | JCEDHPublicKey.java | 51 …rSpec(params.getParameters().getP(), params.getParameters().getG(), params.getParameters().getL()); in JCEDHPublicKey() 87 if (params.getL() != null) in JCEDHPublicKey() 89 … this.dhSpec = new DHParameterSpec(params.getP(), params.getG(), params.getL().intValue()); in JCEDHPublicKey() 125 …iers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL())), new ASN1Intege… in getEncoded() 176 out.writeInt(dhSpec.getL()); in writeObject()
|
D | JCEDHPrivateKey.java | 73 if (params.getL() != null) in JCEDHPrivateKey() 75 … this.dhSpec = new DHParameterSpec(params.getP(), params.getG(), params.getL().intValue()); in JCEDHPrivateKey() 98 …rSpec(params.getParameters().getP(), params.getParameters().getG(), params.getParameters().getL()); in JCEDHPrivateKey() 131 …iers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL())), new ASN1Intege… in getEncoded() 167 out.writeInt(dhSpec.getL()); in writeObject()
|
D | DHUtil.java | 30 … new DHParameters(k.getParams().getP(), k.getParams().getG(), null, k.getParams().getL())); in generatePublicKeyParameter() 45 … new DHParameters(k.getParams().getP(), k.getParams().getG(), null, k.getParams().getL())); in generatePrivateKeyParameter()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/ |
D | DHKeyGenerationParameters.java | 28 return params.getL() != 0 ? params.getL() : params.getP().bitLength(); in getStrength()
|
D | DSAParameterGenerationParameters.java | 56 public int getL() in getL() method in DSAParameterGenerationParameters
|
D | DHParameters.java | 146 public int getL() in getL() method in DHParameters
|
/external/llvm/test/CodeGen/Generic/ |
D | 2003-07-07-BadLongConst.ll | 7 define internal i64 @getL() { 14 %tmp.11 = call i64 @getL( ) ; <i64> [#uses=2]
|
/external/swiftshader/third_party/LLVM/test/CodeGen/Generic/ |
D | 2003-07-07-BadLongConst.ll | 7 define internal i64 @getL() { 14 %tmp.11 = call i64 @getL( ) ; <i64> [#uses=2]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
D | DHUtil.java | 35 … new DHParameters(k.getParams().getP(), k.getParams().getG(), null, k.getParams().getL())); in generatePublicKeyParameter() 50 … new DHParameters(k.getParams().getP(), k.getParams().getG(), null, k.getParams().getL())); in generatePrivateKeyParameter()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
D | DHParameter.java | 80 public BigInteger getL() in getL() method in DHParameter 97 if (this.getL() != null) in toASN1Primitive()
|
/external/llvm/lib/Support/ |
D | ScaledNumber.cpp | 27 auto getL = [](uint64_t N) { return N & UINT32_MAX; }; in multiply64() local 28 uint64_t UL = getU(LHS), LL = getL(LHS), UR = getU(RHS), LR = getL(RHS); in multiply64() 36 uint64_t NewLower = Lower + (getL(N) << 32); in multiply64()
|
/external/eigen/Eigen/src/SparseCholesky/ |
D | SimplicialCholesky.h | 282 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m); } 296 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m); } 354 return Traits::getL(Base::m_matrix); 451 return Traits::getL(Base::m_matrix); 605 LDLTTraits::getL(Base::m_matrix).solveInPlace(dest); 607 LLTTraits::getL(Base::m_matrix).solveInPlace(dest);
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | CholeskyDecomposition.java | 50 RealMatrix getL(); in getL() method
|
D | LUDecomposition.java | 53 RealMatrix getL(); in getL() method
|
D | FieldLUDecomposition.java | 55 FieldMatrix<T> getL(); in getL() method
|
D | CholeskyDecompositionImpl.java | 156 public RealMatrix getL() { in getL() method in CholeskyDecompositionImpl
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/ |
D | DHKeyGeneratorHelper.java | 23 int limit = dhParams.getL(); in calculatePrivate()
|
/external/eigen/Eigen/src/Cholesky/ |
D | LLT.h | 125 return Traits::getL(m_matrix); in matrixL() 394 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m); } 404 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m.adjoint()); }
|
D | LDLT.h | 151 return Traits::getL(m_matrix); in matrixL() 472 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m); } 480 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m.adjoint()); }
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/ |
D | PrivateKeyFactory.java | 99 BigInteger lVal = params.getL(); in createKey()
|
D | PublicKeyFactory.java | 134 BigInteger lVal = params.getL(); in createKey()
|