Home
last modified time | relevance | path

Searched refs:Hashes (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeHashing.h44 std::vector<LocallyHashedType> Hashes; in hashTypes() local
45 Hashes.reserve(std::distance(std::begin(Records), std::end(Records))); in hashTypes()
47 Hashes.push_back(hashType(R)); in hashTypes()
49 return Hashes; in hashTypes()
54 std::vector<LocallyHashedType> Hashes; in hashTypeCollection() local
55 Types.ForEachRecord([&Hashes](TypeIndex TI, const CVType &Type) { in hashTypeCollection()
56 Hashes.push_back(hashType(Type.RecordData)); in hashTypeCollection()
58 return Hashes; in hashTypeCollection()
124 std::vector<GloballyHashedType> Hashes; in hashTypes() local
127 GloballyHashedType H = hashType(R, Hashes, Hashe in hashTypes()
170 std::vector<GloballyHashedType> Hashes; hashTypeCollection() local
[all...]
H A DTypeStreamMerger.h99 ArrayRef<GloballyHashedType> Hashes,
105 ArrayRef<GloballyHashedType> Hashes,
111 ArrayRef<GloballyHashedType> Hashes);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeStreamMerger.cpp92 ArrayRef<GloballyHashedType> Hashes,
97 ArrayRef<GloballyHashedType> Hashes);
99 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()
298 const CVTypeArray &IdsAndTypes, ArrayRef<GloballyHashedType> Hashes, in mergeTypesAndIds() argument
303 GlobalHashes = Hashes; in mergeTypesAndIds()
456 ArrayRef<GloballyHashedType> Hashes, in mergeTypeAndIdRecords() argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DConcurrentHashtable.h59 /// BucketsArray[BucketIdx].Hashes[EntryIdx]:
62 /// [Bucket 0].Hashes -> [uint32_t][uint32_t]
65 /// [Bucket 1].Hashes -> [uint32_t][uint32_t][uint32_t][uint32_t]
68 /// [Bucket N].Hashes -> [uint32_t][uint32_t][uint32_t]
134 HashesPtr Hashes = new ExtHashBitsTy[InitialBucketSize]; in MultiThreadAllocator()
135 memset(Hashes, 0, sizeof(ExtHashBitsTy) * InitialBucketSize); in MultiThreadAllocator() local
141 BucketsArray[Idx].Hashes = Hashes; in MultiThreadAllocator()
162 delete[] BucketsArray[Idx].Hashes; in ~ConcurrentHashTableByPtr()
182 HashesPtr BucketHashes = CurBucket.Hashes; in insert()
287 HashesPtr Hashes = nullptr; global() member
[all...]
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.h28 bool Hashes, codeview::LazyRandomTypeCollection &Types, in MinimalTypeDumpVisitor() argument
33 : P(P), Width(Width), RecordBytes(RecordBytes), Hashes(Hashes), in MinimalTypeDumpVisitor()
59 bool Hashes = false; variable
H A DMinimalTypeDumper.cpp234 if (Hashes) { in visitTypeBegin()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypeHashing.cpp32 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()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DTpiStreamBuilder.cpp75 ArrayRef<uint32_t> Hashes) { in addTypeRecords()
78 assert(Sizes.empty() && Hashes.empty()); in addTypeRecords()
85 assert(Sizes.size() == Hashes.size() && "sizes and hashes should be in sync"); in addTypeRecords()
91 llvm::append_range(TypeHashes, Hashes); in addTypeRecords()
74 addTypeRecords(ArrayRef<uint8_t> Types,ArrayRef<uint16_t> Sizes,ArrayRef<uint32_t> Hashes) addTypeRecords() argument
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerCorpus.h236 Hashes.insert(Sha1Str); in AddToCorpus()
291 Hashes.erase(Sha1ToString(II->Sha1)); in Replace()
294 Hashes.insert(Sha1ToString(II->Sha1)); in Replace()
301 bool HasUnit(const Unit &U) { return Hashes.count(Hash(U)); } in HasUnit()
302 bool HasUnit(const std::string &H) { return Hashes.count(H); } in ChooseUnitToMutate()
573 std::unordered_set<std::string> Hashes;
572 std::unordered_set<std::string> Hashes; global() variable
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DCodeViewYAMLTypeHashing.h46 std::vector<GlobalHash> Hashes; member
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterBankInfo.cpp309 SmallVector<size_t, 8> Hashes(NumBreakDowns); in hashValueMapping() local
311 Hashes.push_back(hash_value(BreakDown[Idx])); in hashValueMapping()
312 return hash_combine_range(Hashes.begin(), Hashes.end()); in hashValueMapping()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DTpiStreamBuilder.h50 ArrayRef<uint32_t> Hashes);
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DODRDiagsEmitter.cpp893 auto PopulateHashes = [](DeclHashes &Hashes, const RecordDecl *Record, in diagnoseMismatch()
898 Hashes.emplace_back(D, computeODRHash(D)); in diagnoseMismatch()
1573 auto PopulateHashes = [](DeclHashes &Hashes, const RecordDecl *Record, in diagnoseMismatch()
1578 Hashes.emplace_back(D, computeODRHash(D)); in diagnoseMismatch()
1869 auto PopulateHashes = [FirstEnum](DeclHashes &Hashes, const EnumDecl *Enum) { in diagnoseMismatch() argument
1876 Hashes.emplace_back(cast<EnumConstantDecl>(D), computeODRHash(D)); in diagnoseMismatch()
2010 auto PopulateHashes = [](DeclHashes &Hashes, const ObjCInterfaceDecl *ID, in diagnoseMismatch()
2015 Hashes.emplace_back(D, computeODRHash(D)); in diagnoseMismatch()
2138 auto PopulateHashes = [](DeclHashes &Hashes, const ObjCProtocolDecl *ID, in diagnoseMismatch()
2143 Hashes.emplace_back(D, computeODRHash(D)); in diagnoseMismatch()
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-rehash.pod.in64 Hashes for CRL's look similar except the letter B<r> appears after
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DAccelTable.h174 HashList Hashes; variable
/freebsd/crypto/openssh/
H A DPROTOCOL.krl167 Hashes in this section must appear in numeric order, treating each hash
/freebsd/crypto/openssl/doc/man3/
H A DEVP_DigestInit.pod245 Hashes I<count> bytes of data at I<data> using a digest I<type> from ENGINE
277 Hashes I<cnt> bytes of data at I<d> into the digest context I<ctx>. This
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1466 std::vector<GloballyHashedType> Hashes = in mergeCodeViewTypes() local
1470 Types, Hashes, PCHInfo)) in mergeCodeViewTypes()