/external/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeHashing.h | 42 std::vector<LocallyHashedType> Hashes; in hashTypes() local 43 Hashes.reserve(std::distance(std::begin(Records), std::end(Records))); in hashTypes() 45 Hashes.push_back(hashType(R)); in hashTypes() 47 return Hashes; in hashTypes() 52 std::vector<LocallyHashedType> Hashes; in hashTypeCollection() local 53 Types.ForEachRecord([&Hashes](TypeIndex TI, const CVType &Type) { in hashTypeCollection() 54 Hashes.push_back(hashType(Type.RecordData)); in hashTypeCollection() 56 return Hashes; in hashTypeCollection() 121 std::vector<GloballyHashedType> Hashes; in hashTypes() local 124 GloballyHashedType H = hashType(R, Hashes, Hashes); in hashTypes() [all …]
|
D | TypeStreamMerger.h | 92 ArrayRef<GloballyHashedType> Hashes, 98 ArrayRef<GloballyHashedType> Hashes, 104 ArrayRef<GloballyHashedType> Hashes);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeHashing.h | 42 std::vector<LocallyHashedType> Hashes; in hashTypes() local 43 Hashes.reserve(std::distance(std::begin(Records), std::end(Records))); in hashTypes() 45 Hashes.push_back(hashType(R)); in hashTypes() 47 return Hashes; in hashTypes() 52 std::vector<LocallyHashedType> Hashes; in hashTypeCollection() local 53 Types.ForEachRecord([&Hashes](TypeIndex TI, const CVType &Type) { in hashTypeCollection() 54 Hashes.push_back(hashType(Type.RecordData)); in hashTypeCollection() 56 return Hashes; in hashTypeCollection() 111 std::vector<GloballyHashedType> Hashes; in hashTypes() local 114 GloballyHashedType H = hashType(R, Hashes, Hashes); in hashTypes() [all …]
|
D | TypeStreamMerger.h | 92 ArrayRef<GloballyHashedType> Hashes, 98 ArrayRef<GloballyHashedType> Hashes, 104 ArrayRef<GloballyHashedType> Hashes);
|
/external/llvm-project/llvm/unittests/DebugInfo/CodeView/ |
D | TypeHashingTest.cpp | 47 static ArrayRef<uint8_t> hash_of(ArrayRef<GloballyHashedType> Hashes, in hash_of() argument 49 return Hashes[TI.toArrayIndex()].Hash; in hash_of() 52 static void verifyHashUniqueness(ArrayRef<GloballyHashedType> Hashes) { in verifyHashUniqueness() argument 53 assert(!Hashes.empty()); in verifyHashUniqueness() 55 for (size_t I = 0; I < Hashes.size() - 1; ++I) { in verifyHashUniqueness() 56 for (size_t J = I + 1; J < Hashes.size(); ++J) { in verifyHashUniqueness() 57 EXPECT_NE(Hashes[I].Hash, Hashes[J].Hash); in verifyHashUniqueness()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | TypeStreamMerger.cpp | 91 ArrayRef<GloballyHashedType> Hashes, 96 ArrayRef<GloballyHashedType> Hashes); 98 ArrayRef<GloballyHashedType> Hashes, 274 ArrayRef<GloballyHashedType> Hashes, in mergeTypeRecords() argument 278 GlobalHashes = Hashes; in mergeTypeRecords() 287 ArrayRef<GloballyHashedType> Hashes) { in mergeIdRecords() argument 291 GlobalHashes = Hashes; in mergeIdRecords() 299 ArrayRef<GloballyHashedType> Hashes, in mergeTypesAndIds() argument 304 GlobalHashes = Hashes; in mergeTypesAndIds() 440 ArrayRef<GloballyHashedType> Hashes, Optional<uint32_t> &PCHSignature) { in mergeTypeAndIdRecords() argument [all …]
|
/external/llvm-project/llvm/lib/DebugInfo/CodeView/ |
D | TypeStreamMerger.cpp | 91 ArrayRef<GloballyHashedType> Hashes, 96 ArrayRef<GloballyHashedType> Hashes); 98 ArrayRef<GloballyHashedType> Hashes, 274 ArrayRef<GloballyHashedType> Hashes, in mergeTypeRecords() argument 278 GlobalHashes = Hashes; in mergeTypeRecords() 287 ArrayRef<GloballyHashedType> Hashes) { in mergeIdRecords() argument 291 GlobalHashes = Hashes; in mergeIdRecords() 299 ArrayRef<GloballyHashedType> Hashes, in mergeTypesAndIds() argument 304 GlobalHashes = Hashes; in mergeTypesAndIds() 457 ArrayRef<GloballyHashedType> Hashes, Optional<uint32_t> &PCHSignature) { in mergeTypeAndIdRecords() argument [all …]
|
/external/llvm-project/llvm/tools/llvm-pdbutil/ |
D | MinimalTypeDumper.h | 28 bool Hashes, codeview::LazyRandomTypeCollection &Types, in MinimalTypeDumpVisitor() argument 33 : P(P), Width(Width), RecordBytes(RecordBytes), Hashes(Hashes), in MinimalTypeDumpVisitor() 59 bool Hashes = false; variable
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | CodeViewYAMLTypeHashing.cpp | 32 io.mapOptional("HashValues", DebugH.Hashes); in mapping() 61 DHS.Hashes.emplace_back(S); in fromDebugH() 69 uint32_t Size = 8 + 8 * DebugH.Hashes.size(); in toDebugH() 78 for (const auto &H : DebugH.Hashes) { in toDebugH()
|
/external/llvm-project/llvm/lib/ObjectYAML/ |
D | CodeViewYAMLTypeHashing.cpp | 32 io.mapOptional("HashValues", DebugH.Hashes); in mapping() 61 DHS.Hashes.emplace_back(S); in fromDebugH() 69 uint32_t Size = 8 + 8 * DebugH.Hashes.size(); in toDebugH() 78 for (const auto &H : DebugH.Hashes) { in toDebugH()
|
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
D | TpiStreamBuilder.cpp | 78 ArrayRef<uint32_t> Hashes) { in addTypeRecords() argument 81 assert(Sizes.empty() && Hashes.empty()); in addTypeRecords() 88 assert(Sizes.size() == Hashes.size() && "sizes and hashes should be in sync"); in addTypeRecords() 94 TypeHashes.insert(TypeHashes.end(), Hashes.begin(), Hashes.end()); in addTypeRecords()
|
/external/rust/crates/ahash/smhasher/ |
D | 0002-Add-support-for-aHash.patch | 8 Hashes.h | 5 +++++ 30 diff --git a/Hashes.h b/Hashes.h 32 --- a/Hashes.h 33 +++ b/Hashes.h 162 diff --git a/Hashes.h b/Hashes.h 164 --- a/Hashes.h 165 +++ b/Hashes.h
|
D | 0001-Add-support-for-aHash.patch | 8 Hashes.h | 5 +++++ 30 diff --git a/Hashes.h b/Hashes.h 32 --- a/Hashes.h 33 +++ b/Hashes.h
|
/external/rust/crates/libfuzzer-sys/libfuzzer/ |
D | FuzzerCorpus.h | 232 Hashes.insert(Sha1Str); in AddToCorpus() 286 Hashes.erase(Sha1ToString(II->Sha1)); in Replace() 289 Hashes.insert(Sha1ToString(II->Sha1)); in Replace() 295 bool HasUnit(const Unit &U) { return Hashes.count(Hash(U)); } in HasUnit() 296 bool HasUnit(const std::string &H) { return Hashes.count(H); } in HasUnit() 563 std::unordered_set<std::string> Hashes; variable
|
/external/llvm-project/compiler-rt/lib/fuzzer/ |
D | FuzzerCorpus.h | 232 Hashes.insert(Sha1Str); in AddToCorpus() 286 Hashes.erase(Sha1ToString(II->Sha1)); in Replace() 289 Hashes.insert(Sha1ToString(II->Sha1)); in Replace() 295 bool HasUnit(const Unit &U) { return Hashes.count(Hash(U)); } in HasUnit() 296 bool HasUnit(const std::string &H) { return Hashes.count(H); } in HasUnit() 563 std::unordered_set<std::string> Hashes; variable
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | CodeViewYAMLTypeHashing.h | 46 std::vector<GlobalHash> Hashes; member
|
/external/llvm-project/llvm/include/llvm/ObjectYAML/ |
D | CodeViewYAMLTypeHashing.h | 46 std::vector<GlobalHash> Hashes; member
|
/external/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
D | TpiStreamBuilder.h | 58 ArrayRef<uint32_t> Hashes);
|
/external/llvm-project/llvm/test/tools/dsymutil/X86/ |
D | basic-lto-linking-x86.test | 207 CHECK-NEXT: Hashes count: 7 300 CHECK-NEXT: Hashes count: 2 356 CHECK-NEXT: Hashes count: 0 377 CHECK-NEXT: Hashes count: 0
|
D | objc.test | 19 CHECK-NEXT: Hashes count: 2
|
/external/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
D | RegisterBankInfo.cpp | 307 SmallVector<size_t, 8> Hashes(NumBreakDowns); in hashValueMapping() local 309 Hashes.push_back(hash_value(BreakDown[Idx])); in hashValueMapping() 310 return hash_combine_range(Hashes.begin(), Hashes.end()); in hashValueMapping()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
D | RegisterBankInfo.cpp | 307 SmallVector<size_t, 8> Hashes(NumBreakDowns); in hashValueMapping() local 309 Hashes.push_back(hash_value(BreakDown[Idx])); in hashValueMapping() 310 return hash_combine_range(Hashes.begin(), Hashes.end()); in hashValueMapping()
|
/external/llvm/test/DebugInfo/ |
D | dwarfdump-accel.test | 25 CHECK: Hashes count = 42
|
/external/llvm-project/llvm/test/DebugInfo/ |
D | dwarfdump-accel.test | 26 CHECK: Hashes count: 42
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfAccelTable.h | 242 HashList Hashes; variable
|