/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfAccelTable.cpp | 48 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 …]
|
D | DwarfAccelTable.h | 190 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/ |
D | persistent-map.h | 48 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/ |
D | AccelTable.cpp | 39 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/ |
D | ubsan_type_hash.h | 20 typedef uptr HashValue; typedef 52 bool checkDynamicType(void *Object, void *Type, HashValue Hash); 66 HashValue __ubsan_vptr_type_cache[VptrTypeCacheSize];
|
D | ubsan_type_hash_itanium.cc | 95 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()
|
D | ubsan_type_hash.cc | 26 __ubsan::HashValue
|
D | ubsan_type_hash_win.cc | 41 bool __ubsan::checkDynamicType(void *Object, void *Type, HashValue Hash) { in checkDynamicType()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | type_manager.h | 41 return type->HashValue(); in operator() 47 return type->HashValue(); in operator()
|
D | types.h | 153 size_t HashValue() const;
|
D | types.cpp | 235 size_t Type::HashValue() const { in HashValue() function in spvtools::opt::analysis::Type
|
/external/angle/third_party/spirv-tools/src/source/opt/ |
D | type_manager.h | 41 return type->HashValue(); in operator() 47 return type->HashValue(); in operator()
|
D | types.h | 155 size_t HashValue() const;
|
D | types.cpp | 238 size_t Type::HashValue() const { in HashValue() function in spvtools::opt::analysis::Type
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | type_manager.h | 41 return type->HashValue(); in operator() 47 return type->HashValue(); in operator()
|
D | types.h | 155 size_t HashValue() const;
|
D | types.cpp | 238 size_t Type::HashValue() const { in HashValue() function in spvtools::opt::analysis::Type
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | AccelTable.h | 145 uint32_t HashValue; member 150 : Name(Name), HashValue(Hash(Name.getString())) {} in HashData()
|
D | SelectionDAG.h | 98 unsigned HashValue; 103 HashValue = ID.ComputeHash(); 121 if (X.HashValue != IDHash) 127 return X.HashValue;
|
/external/llvm/include/llvm/CodeGen/ |
D | SelectionDAG.h | 55 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/ |
D | DWARFAcceleratorTable.cpp | 334 unsigned HashValue = djbHash(Key); in equal_range() local 335 unsigned Bucket = HashValue % Hdr.BucketCount; in equal_range()
|