Home
last modified time | relevance | path

Searched refs:hashValue (Results 1 – 11 of 11) sorted by relevance

/external/lzma/Java/SevenZip/Compression/LZ/
DBinTree.java137 int hashValue, hash2Value = 0, hash3Value = 0; in GetMatches() local
145 hashValue = (temp ^ (CrcTable[_bufferBase[cur + 3] & 0xFF] << 5)) & _hashMask; in GetMatches()
148 hashValue = ((_bufferBase[cur] & 0xFF) ^ ((int)(_bufferBase[cur + 1] & 0xFF) << 8)); in GetMatches()
150 int curMatch = _hash[kFixHashSize + hashValue]; in GetMatches()
179 _hash[kFixHashSize + hashValue] = _pos; in GetMatches()
272 int hashValue; in Skip() local
282 hashValue = (temp ^ (CrcTable[_bufferBase[cur + 3] & 0xFF] << 5)) & _hashMask; in Skip()
285 hashValue = ((_bufferBase[cur] & 0xFF) ^ ((int)(_bufferBase[cur + 1] & 0xFF) << 8)); in Skip()
287 int curMatch = _hash[kFixHashSize + hashValue]; in Skip()
288 _hash[kFixHashSize + hashValue] = _pos; in Skip()
/external/lzma/CS/7zip/Compress/LZ/
DLzBinTree.cs137 UInt32 hashValue, hash2Value = 0, hash3Value = 0; in GetMatches()
145 hashValue = (temp ^ (CRC.Table[_bufferBase[cur + 3]] << 5)) & _hashMask; in GetMatches()
148 hashValue = _bufferBase[cur] ^ ((UInt32)(_bufferBase[cur + 1]) << 8); in GetMatches()
150 UInt32 curMatch = _hash[kFixHashSize + hashValue]; in GetMatches()
179 _hash[kFixHashSize + hashValue] = _pos; in GetMatches()
272 UInt32 hashValue; in Skip()
282 hashValue = (temp ^ (CRC.Table[_bufferBase[cur + 3]] << 5)) & _hashMask; in Skip()
285 hashValue = _bufferBase[cur] ^ ((UInt32)(_bufferBase[cur + 1]) << 8); in Skip()
287 UInt32 curMatch = _hash[kFixHashSize + hashValue]; in Skip()
288 _hash[kFixHashSize + hashValue] = _pos; in Skip()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
DX509CRLEntryObject.java39 private int hashValue; field in X509CRLEntryObject
207 hashValue = super.hashCode(); in hashCode()
211 return hashValue; in hashCode()
DX509CertificateObject.java80 private int hashValue; field in X509CertificateObject
579 if (this.hashValue != other.hashValue) in equals()
595 hashValue = super.hashCode(); in hashCode()
599 return hashValue; in hashCode()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DX509CRLEntryObject.java40 private int hashValue; field in X509CRLEntryObject
208 hashValue = super.hashCode(); in hashCode()
212 return hashValue; in hashCode()
DX509CertificateObject.java83 private int hashValue; field in X509CertificateObject
626 hashValue = calculateHashCode(); in hashCode()
630 return hashValue; in hashCode()
/external/boringssl/src/ssl/test/runner/
Dprf.go404 func hkdfExpandLabel(hash crypto.Hash, secret, label, hashValue []byte, length int) []byte {
405 if len(label) > 255 || len(hashValue) > 255 {
410 hkdfLabel := make([]byte, 3+len(versionLabel)+len(label)+1+len(hashValue))
420 x[0] = byte(len(hashValue))
421 copy(x[1:], hashValue)
/external/wpa_supplicant_8/hs20/server/ca/
Dopenssl.cnf153 hashValue=FORMAT:HEX,OCTETSTRING:@LOGO_HASH256@
156 hashValue=FORMAT:HEX,OCTETSTRING:@LOGO_HASH1@
/external/wpa_supplicant_8/src/utils/
Dhttp_curl.c281 ASN1_OCTET_STRING *hashValue; member
357 ASN1_SIMPLE(HashAlgAndValue, hashValue, ASN1_OCTET_STRING)
488 n->hash_len = ASN1_STRING_length(hash->hashValue); in add_logo()
489 n->hash = os_memdup(ASN1_STRING_data(hash->hashValue), n->hash_len); in add_logo()
599 data = hash->hashValue->data; in i2r_HashAlgAndValue()
600 for (i = 0; i < hash->hashValue->length; i++) in i2r_HashAlgAndValue()
/external/swiftshader/third_party/subzero/src/
DIceOperand.h103 virtual SizeT hashValue() const { in hashValue() function
164 SizeT hashValue() const override { return 0; } in hashValue() function
216 SizeT hashValue() const override { return std::hash<PrimType>()(Value); } in hashValue() function
855 SizeT hashValue() const override { return std::hash<SizeT>()(getIndex()); } in hashValue() function
DIceCfg.cpp556 size_t operator()(const Variable *Var) const { return Var->hashValue(); } in localCSE()
566 Result ^= Instr->getSrc(i)->hashValue(); in localCSE()