Home
last modified time | relevance | path

Searched refs:KeyHash (Results 1 – 22 of 22) sorted by relevance

/external/skia/src/gpu/graphite/
DGlobalCache.h98 struct KeyHash { struct
107 using GraphicsPipelineCache = SkLRUCache<UniqueKey, sk_sp<GraphicsPipeline>, KeyHash, PurgeCB>; argument
108 using ComputePipelineCache = SkLRUCache<UniqueKey, sk_sp<ComputePipeline>, KeyHash>;
/external/skia/modules/skparagraph/include/
DParagraphCache.h49 struct KeyHash { struct
53 SkLRUCache<ParagraphCacheKey, std::unique_ptr<Entry>, KeyHash> fLRUCacheMap;
/external/ruy/ruy/
Dprepacked_cache.h82 struct KeyHash { struct
133 std::unordered_map<Key, Entry, KeyHash> cache_;
Dprepacked_cache.cc49 std::size_t PrepackedCache::KeyHash::operator()( in operator ()()
/external/cronet/tot/base/containers/
Dlru_cache.h251 template <class KeyType, class KeyHash, class KeyEqual>
254 using Type = std::unordered_map<KeyType, ValueType, KeyHash, KeyEqual>;
276 class KeyHash = std::hash<KeyType>,
281 internal::HashingLRUCacheKeyIndex<KeyType, KeyHash, KeyEqual>>;
Dlru_cache_unittest.cc61 class KeyHash = std::hash<Key>,
63 using Type = base::HashingLRUCache<Key, Value, KeyHash, KeyEqual>;
/external/cronet/stable/base/containers/
Dlru_cache.h251 template <class KeyType, class KeyHash, class KeyEqual>
254 using Type = std::unordered_map<KeyType, ValueType, KeyHash, KeyEqual>;
276 class KeyHash = std::hash<KeyType>,
281 internal::HashingLRUCacheKeyIndex<KeyType, KeyHash, KeyEqual>>;
Dlru_cache_unittest.cc61 class KeyHash = std::hash<Key>,
63 using Type = base::HashingLRUCache<Key, Value, KeyHash, KeyEqual>;
/external/avb/tools/transparency/verify/internal/checkpoint/
Dcheckpoint.go50 KeyHash() uint32 methodSpec
72 func (v EcdsaVerifier) KeyHash() uint32 { func
/external/python/pyasn1-modules/pyasn1_modules/
Drfc6960.py44 KeyHash = rfc2560.KeyHash variable
97 namedtype.NamedType('byKey', KeyHash().subtype(
Drfc2560.py125 class KeyHash(univ.OctetString): class
134KeyHash().subtype(explicitTag=tag.Tag(tag.tagClassContext, tag.tagFormatSimple, 2)))
/external/llvm/include/llvm/Support/
DOnDiskHashTable.h345 hash_value_type KeyHash = InfoObj.ComputeHash(IKey);
346 return find_hashed(IKey, KeyHash, InfoPtr);
350 iterator find_hashed(const internal_key_type &IKey, hash_value_type KeyHash,
358 offset_type Idx = KeyHash & (NumBuckets - 1);
381 if (ItemHash != KeyHash) {
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DOnDiskHashTable.h345 hash_value_type KeyHash = InfoObj.ComputeHash(IKey);
346 return find_hashed(IKey, KeyHash, InfoPtr);
350 iterator find_hashed(const internal_key_type &IKey, hash_value_type KeyHash,
358 offset_type Idx = KeyHash & (NumBuckets - 1);
381 if (ItemHash != KeyHash) {
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/
DOnDiskHashTable.h344 hash_value_type KeyHash = InfoObj.ComputeHash(IKey);
345 return find_hashed(IKey, KeyHash, InfoPtr);
349 iterator find_hashed(const internal_key_type &IKey, hash_value_type KeyHash,
357 offset_type Idx = KeyHash & (NumBuckets - 1);
380 if (ItemHash != KeyHash) {
/external/angle/src/image_util/
DAstcDecompressor.cpp129 struct KeyHash struct in angle::__anonae5237550111::AstcDecompressorContextCache
138 std::unordered_map<Key, Value, KeyHash> mContexts;
/external/tensorflow/tensorflow/core/framework/
Dlocal_rendezvous.cc116 uint64 KeyHash(const StringPiece& k) { return Hash64(k.data(), k.size()); } in KeyHash() function
122 uint64 key_hash = KeyHash(key.FullKey()); in Send()
196 uint64 key_hash = KeyHash(key.FullKey()); in RecvAsync()
Dresource_mgr.h242 struct KeyHash { struct
271 typedef absl::flat_hash_map<Key, ResourceAndName, KeyHash, KeyEqual>
/external/skia/src/pdf/
DSkPDFDocumentPriv.h50 struct KeyHash;
171 SkPDFGradientShader::KeyHash> fGradientPatternMap;
DSkPDFGradientShader.h44 struct KeyHash { struct
/external/boringssl/src/crypto/spake2plus/
Dspake2plus_test.cc89 struct KeyHash { struct in __anon0d28bc860111::RegistrationCache
97 std::unordered_map<CacheKey, Result, KeyHash> cache;
/external/clang/lib/Serialization/
DMultiOnDiskHashTable.h222 auto KeyHash = Info::ComputeHash(Key); in find() local
234 auto It = HT.find_hashed(Key, KeyHash); in find()
/external/skia/modules/skparagraph/src/
DParagraphCache.cpp165 uint32_t ParagraphCache::KeyHash::operator()(const ParagraphCacheKey& key) const { in operator ()()