/external/llvm-project/mlir/lib/Support/ |
D | StorageUniquer.cpp | 33 unsigned hashValue; member 43 HashedStorage(unsigned hashValue = 0, BaseStorage *storage = nullptr) in HashedStorage() 44 : hashValue(hashValue), storage(storage) {} in HashedStorage() 45 unsigned hashValue; member 59 return key.hashValue; in getHashValue() 61 static unsigned getHashValue(LookupKey key) { return key.hashValue; } in getHashValue() 96 auto existing = shard.instances.insert_as({key.hashValue}, key); in getOrCreateUnsafe() 122 getOrCreate(bool threadingIsEnabled, unsigned hashValue, in getOrCreate() argument 125 Shard &shard = getShard(hashValue); in getOrCreate() 126 ParametricStorageUniquer::LookupKey lookupKey{hashValue, isEqual}; in getOrCreate() [all …]
|
/external/lzma/Java/SevenZip/Compression/LZ/ |
D | BinTree.java | 137 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/ |
D | X509CRLObject.java | 20 private volatile int hashValue; field in X509CRLObject 40 if (this.hashValue != otherBC.hashValue) in equals() 62 hashValue = getInternalCRL().hashCode(); in hashCode() 66 return hashValue; in hashCode()
|
D | X509CRLEntryObject.java | 41 private volatile int hashValue; field in X509CRLEntryObject 208 hashValue = super.hashCode(); in hashCode() 212 return hashValue; in hashCode() 228 if (this.hashValue != otherBC.hashValue) in equals()
|
D | X509CertificateObject.java | 83 private volatile int hashValue; field in X509CertificateObject 243 if (this.hashValue != otherBC.hashValue) in equals() 265 hashValue = getInternalCertificate().hashCode(); in hashCode() 269 return hashValue; in hashCode()
|
/external/lzma/CS/7zip/Compress/LZ/ |
D | LzBinTree.cs | 137 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/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/asymmetric/x509/ |
D | X509CRLObject.java | 21 private volatile int hashValue; field in X509CRLObject 41 if (this.hashValue != otherBC.hashValue) in equals() 63 hashValue = getInternalCRL().hashCode(); in hashCode() 67 return hashValue; in hashCode()
|
D | X509CRLEntryObject.java | 42 private volatile int hashValue; field in X509CRLEntryObject 209 hashValue = super.hashCode(); in hashCode() 213 return hashValue; in hashCode() 229 if (this.hashValue != otherBC.hashValue) in equals()
|
D | X509CertificateObject.java | 84 private volatile int hashValue; field in X509CertificateObject 244 if (this.hashValue != otherBC.hashValue) in equals() 266 hashValue = getInternalCertificate().hashCode(); in hashCode() 270 return hashValue; in hashCode()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jcajce/provider/asymmetric/x509/ |
D | X509CRLObject.java | 21 private volatile int hashValue; field in X509CRLObject 41 if (this.hashValue != otherBC.hashValue) in equals() 63 hashValue = getInternalCRL().hashCode(); in hashCode() 67 return hashValue; in hashCode()
|
D | X509CRLEntryObject.java | 42 private volatile int hashValue; field in X509CRLEntryObject 209 hashValue = super.hashCode(); in hashCode() 213 return hashValue; in hashCode() 229 if (this.hashValue != otherBC.hashValue) in equals()
|
D | X509CertificateObject.java | 84 private volatile int hashValue; field in X509CertificateObject 244 if (this.hashValue != otherBC.hashValue) in equals() 266 hashValue = getInternalCertificate().hashCode(); in hashCode() 270 return hashValue; in hashCode()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jce/provider/ |
D | X509CRLEntryObject.java | 42 private int hashValue; field in X509CRLEntryObject 210 hashValue = super.hashCode(); in hashCode() 214 return hashValue; in hashCode()
|
D | X509CertificateObject.java | 83 private int hashValue; field in X509CertificateObject 610 hashValue = calculateHashCode(); in hashCode() 614 return hashValue; in hashCode()
|
/external/llvm-project/mlir/include/mlir/Support/ |
D | StorageUniquer.h | 181 unsigned hashValue = getHash<Storage>(derivedKey); in get() local 198 getParametricStorageTypeImpl(id, hashValue, isEqual, ctorFn)); in get() 242 TypeID id, unsigned hashValue,
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
D | X509CRLEntryObject.java | 40 private int hashValue; field in X509CRLEntryObject 208 hashValue = super.hashCode(); in hashCode() 212 return hashValue; in hashCode()
|
D | X509CertificateObject.java | 81 private int hashValue; field in X509CertificateObject 607 hashValue = calculateHashCode(); in hashCode() 611 return hashValue; in hashCode()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jce/provider/ |
D | X509CRLEntryObject.java | 42 private int hashValue; field in X509CRLEntryObject 210 hashValue = super.hashCode(); in hashCode() 214 return hashValue; in hashCode()
|
D | X509CertificateObject.java | 83 private int hashValue; field in X509CertificateObject 609 hashValue = calculateHashCode(); in hashCode() 613 return hashValue; in hashCode()
|
/external/boringssl/src/ssl/test/runner/ |
D | prf.go | 405 func hkdfExpandLabel(hash crypto.Hash, secret, label, hashValue []byte, length int) []byte { 406 if len(label) > 255 || len(hashValue) > 255 { 411 hkdfLabel := make([]byte, 3+len(versionLabel)+len(label)+1+len(hashValue)) 421 x[0] = byte(len(hashValue)) 422 copy(x[1:], hashValue)
|
/external/brotli/fetch-spec/ |
D | shared-brotli-fetch-spec.txt | 108 11. Let hashValue be the result of base64 decoding digest 110 12. If hashValue is not a valid base64 encoding, return a network error 114 compare this checksum for equality with hashValue. If the computed 115 checksum does not match hashValue, return a network error.
|
/external/wpa_supplicant_8/hs20/server/ca/ |
D | openssl.cnf | 153 hashValue=FORMAT:HEX,OCTETSTRING:@LOGO_HASH256@ 156 hashValue=FORMAT:HEX,OCTETSTRING:@LOGO_HASH1@
|
/external/llvm-project/mlir/lib/Dialect/LLVMIR/IR/ |
D | TypeDetail.h | 109 llvm::hash_code hashValue() const { in hashValue() function 224 static llvm::hash_code hashKey(const KeyTy &key) { return key.hashValue(); } in hashKey()
|
/external/wpa_supplicant_8/src/utils/ |
D | http_curl.c | 289 ASN1_OCTET_STRING *hashValue; member 365 ASN1_SIMPLE(HashAlgAndValue, hashValue, ASN1_OCTET_STRING) 504 n->hash_len = ASN1_STRING_length(hash->hashValue); in DEFINE_STACK_OF() 505 n->hash = os_memdup(ASN1_STRING_get0_data(hash->hashValue), in DEFINE_STACK_OF() 616 data = hash->hashValue->data; in i2r_HashAlgAndValue() 617 for (i = 0; i < hash->hashValue->length; i++) in i2r_HashAlgAndValue()
|
/external/swiftshader/third_party/subzero/src/ |
D | IceOperand.h | 103 virtual SizeT hashValue() const { in hashValue() function 167 SizeT hashValue() const override { return 0; } in hashValue() function 219 SizeT hashValue() const override { return std::hash<PrimType>()(Value); } in hashValue() function 840 SizeT hashValue() const override { return std::hash<SizeT>()(getIndex()); } in hashValue() function
|