Lines Matching refs:HashedStorage
42 struct HashedStorage { struct in __anonb14bee2a0111::ParametricStorageUniquer
43 HashedStorage(unsigned hashValue = 0, BaseStorage *storage = nullptr) in HashedStorage() argument
50 struct StorageKeyInfo : DenseMapInfo<HashedStorage> {
51 static HashedStorage getEmptyKey() { in getEmptyKey()
52 return HashedStorage(0, DenseMapInfo<BaseStorage *>::getEmptyKey()); in getEmptyKey()
54 static HashedStorage getTombstoneKey() { in getTombstoneKey()
55 return HashedStorage(0, DenseMapInfo<BaseStorage *>::getTombstoneKey()); in getTombstoneKey()
58 static unsigned getHashValue(const HashedStorage &key) { in getHashValue()
63 static bool isEqual(const HashedStorage &lhs, const HashedStorage &rhs) { in isEqual()
66 static bool isEqual(const LookupKey &lhs, const HashedStorage &rhs) { in isEqual()
73 using StorageTypeSet = DenseSet<HashedStorage, StorageKeyInfo>;