HomeSort by relevance Sort by last modified time
    Searched defs:getL (Results 1 - 13 of 13) sorted by null

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
DHParameter.java 80 public BigInteger getL()
97 if (this.getL() != null)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DSAParameterGenerationParameters.java 56 public int getL()
DHParameters.java 147 public int getL()
  /external/llvm/lib/Support/
ScaledNumber.cpp 26 auto getL = [](uint64_t N) { return N & UINT32_MAX; };
27 uint64_t UL = getU(LHS), LL = getL(LHS), UR = getU(RHS), LR = getL(RHS);
35 uint64_t NewLower = Lower + (getL(N) << 32);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
BCDHPublicKey.java 52 this.dhSpec = new DHParameterSpec(params.getParameters().getP(), params.getParameters().getG(), params.getParameters().getL());
88 if (params.getL() != null)
90 this.dhSpec = new DHParameterSpec(params.getP(), params.getG(), params.getL().intValue());
126 return KeyUtil.getEncodedSubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).toASN1Primitive()), new ASN1Integer(y));
165 ^ this.getParams().getP().hashCode() ^ this.getParams().getL();
181 && this.getParams().getL() == other.getParams().getL();
202 out.writeInt(dhSpec.getL());
BCDHPrivateKey.java 74 if (params.getL() != null)
76 this.dhSpec = new DHParameterSpec(params.getP(), params.getG(), params.getL().intValue());
99 this.dhSpec = new DHParameterSpec(params.getParameters().getP(), params.getParameters().getG(), params.getParameters().getL());
132 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).toASN1Primitive()), new ASN1Integer(getX()));
165 && this.getParams().getL() == other.getParams().getL();
171 ^ this.getParams().getP().hashCode() ^ this.getParams().getL();
211 out.writeInt(dhSpec.getL());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEDHPrivateKey.java 74 if (params.getL() != null)
76 this.dhSpec = new DHParameterSpec(params.getP(), params.getG(), params.getL().intValue());
99 this.dhSpec = new DHParameterSpec(params.getParameters().getP(), params.getParameters().getG(), params.getParameters().getL());
132 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL())), new DERInteger(getX()));
168 out.writeInt(dhSpec.getL());
JCEDHPublicKey.java 51 this.dhSpec = new DHParameterSpec(params.getParameters().getP(), params.getParameters().getG(), params.getParameters().getL());
87 if (params.getL() != null)
89 this.dhSpec = new DHParameterSpec(params.getP(), params.getG(), params.getL().intValue());
125 return KeyUtil.getEncodedSubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL())), new DERInteger(y));
176 out.writeInt(dhSpec.getL());
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 130 return Traits::getL(m_matrix);
418 static inline MatrixL getL(const MatrixType& m) { return m; }
426 static inline MatrixL getL(const MatrixType& m) { return m.adjoint(); }
LLT.h 107 return Traits::getL(m_matrix);
359 static inline MatrixL getL(const MatrixType& m) { return m; }
369 static inline MatrixL getL(const MatrixType& m) { return m.adjoint(); }
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 260 static inline MatrixL getL(const MatrixType& m) { return m; }
274 static inline MatrixL getL(const MatrixType& m) { return m; }
330 return Traits::getL(Base::m_matrix);
425 return Traits::getL(Base::m_matrix);
579 LDLTTraits::getL(Base::m_matrix).solveInPlace(dest);
581 LLTTraits::getL(Base::m_matrix).solveInPlace(dest);
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 290 milliseconds