Home
last modified time | relevance | path

Searched refs:HashValue (Results 1 – 21 of 21) sorted by relevance

/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfAccelTable.cpp48 uniques[i] = Data[i]->HashValue; in ComputeBucketCount()
97 uint32_t bucket = Data[i]->HashValue % Header.bucket_count; in FinalizeTable()
108 return LHS->HashValue < RHS->HashValue; in FinalizeTable()
153 uint32_t HashValue = HD->HashValue; in EmitBuckets() local
154 if (PrevHash != HashValue) in EmitBuckets()
156 PrevHash = HashValue; in EmitBuckets()
169 uint32_t HashValue = (*HI)->HashValue; in EmitHashes() local
170 if (PrevHash == HashValue) in EmitHashes()
173 Asm->EmitInt32(HashValue); in EmitHashes()
174 PrevHash = HashValue; in EmitHashes()
[all …]
DDwarfAccelTable.h190 uint32_t HashValue; member
195 HashValue = DwarfAccelTable::HashDJB(S); in HashData()
200 O << " Hash Value: " << format("0x%x", HashValue) << "\n"; in print()
/external/v8/src/compiler/
Dpersistent-map.h48 class HashValue; variable
70 HashValue key_hash = HashValue(Hasher()(key)); in Get()
122 const FocusedTree* FindHash(HashValue hash) const;
129 const FocusedTree* FindHash(HashValue hash,
178 HashValue key_hash;
201 class PersistentMap<Key, Value, Hasher>::HashValue {
203 explicit HashValue(size_t hash) : bits_(static_cast<uint32_t>(hash)) {}
212 bool operator<(HashValue other) const { return bits_ < other.bits_; }
213 bool operator==(HashValue other) const { return bits_ == other.bits_; }
214 bool operator!=(HashValue other) const { return bits_ != other.bits_; }
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DAccelTable.cpp39 Uniques.push_back(E.second.HashValue); in computeBucketCount()
76 uint32_t Bucket = E.second.HashValue % BucketCount; in finalize()
86 return LHS->HashValue < RHS->HashValue; in finalize()
254 uint32_t HashValue = Hash->HashValue; in emitHashes() local
255 if (SkipIdenticalHashes && PrevHash == HashValue) in emitHashes()
258 Asm->emitInt32(HashValue); in emitHashes()
259 PrevHash = HashValue; in emitHashes()
270 uint32_t HashValue = Hash->HashValue; in emitOffsets() local
271 if (SkipIdenticalHashes && PrevHash == HashValue) in emitOffsets()
273 PrevHash = HashValue; in emitOffsets()
[all …]
/external/compiler-rt/lib/ubsan/
Dubsan_type_hash.h20 typedef uptr HashValue; typedef
52 bool checkDynamicType(void *Object, void *Type, HashValue Hash);
66 HashValue __ubsan_vptr_type_cache[VptrTypeCacheSize];
Dubsan_type_hash_itanium.cc95 static __ubsan::HashValue *getTypeCacheHashTableBucket(__ubsan::HashValue V) { in getTypeCacheHashTableBucket()
97 static __ubsan::HashValue __ubsan_vptr_hash_set[HashTableSize]; in getTypeCacheHashTableBucket()
209 bool __ubsan::checkDynamicType(void *Object, void *Type, HashValue Hash) { in checkDynamicType()
214 HashValue *Bucket = getTypeCacheHashTableBucket(Hash); in checkDynamicType()
Dubsan_type_hash.cc26 __ubsan::HashValue
Dubsan_type_hash_win.cc41 bool __ubsan::checkDynamicType(void *Object, void *Type, HashValue Hash) { in checkDynamicType()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dtype_manager.h41 return type->HashValue(); in operator()
47 return type->HashValue(); in operator()
Dtypes.h153 size_t HashValue() const;
Dtypes.cpp235 size_t Type::HashValue() const { in HashValue() function in spvtools::opt::analysis::Type
/external/angle/third_party/spirv-tools/src/source/opt/
Dtype_manager.h41 return type->HashValue(); in operator()
47 return type->HashValue(); in operator()
Dtypes.h155 size_t HashValue() const;
Dtypes.cpp238 size_t Type::HashValue() const { in HashValue() function in spvtools::opt::analysis::Type
/external/deqp-deps/SPIRV-Tools/source/opt/
Dtype_manager.h41 return type->HashValue(); in operator()
47 return type->HashValue(); in operator()
Dtypes.h155 size_t HashValue() const;
Dtypes.cpp238 size_t Type::HashValue() const { in HashValue() function in spvtools::opt::analysis::Type
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DAccelTable.h145 uint32_t HashValue; member
150 : Name(Name), HashValue(Hash(Name.getString())) {} in HashData()
DSelectionDAG.h98 unsigned HashValue;
103 HashValue = ID.ComputeHash();
121 if (X.HashValue != IDHash)
127 return X.HashValue;
/external/llvm/include/llvm/CodeGen/
DSelectionDAG.h55 unsigned HashValue;
59 HashValue = ID.ComputeHash();
75 if (X.HashValue != IDHash)
80 return X.HashValue;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFAcceleratorTable.cpp334 unsigned HashValue = djbHash(Key); in equal_range() local
335 unsigned Bucket = HashValue % Hdr.BucketCount; in equal_range()