| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeHashing.h | 44 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, Hashes); in hashTypes() [all …]
|
| H A D | TypeStreamMerger.h | 99 ArrayRef<GloballyHashedType> Hashes, 105 ArrayRef<GloballyHashedType> Hashes, 111 ArrayRef<GloballyHashedType> Hashes);
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeStreamMerger.cpp | 92 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 …]
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/ |
| H A 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
|
| H A D | MinimalTypeDumper.cpp | 232 if (Hashes) { in visitTypeBegin()
|
| /openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/ |
| H A 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()
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | TpiStreamBuilder.cpp | 74 ArrayRef<uint32_t> Hashes) { in addTypeRecords() argument 77 assert(Sizes.empty() && Hashes.empty()); in addTypeRecords() 84 assert(Sizes.size() == Hashes.size() && "sizes and hashes should be in sync"); in addTypeRecords() 90 llvm::append_range(TypeHashes, Hashes); in addTypeRecords()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerCorpus.h | 235 Hashes.insert(Sha1Str); in AddToCorpus() 290 Hashes.erase(Sha1ToString(II->Sha1)); in Replace() 293 Hashes.insert(Sha1ToString(II->Sha1)); in Replace() 300 bool HasUnit(const Unit &U) { return Hashes.count(Hash(U)); } in HasUnit() 301 bool HasUnit(const std::string &H) { return Hashes.count(H); } in HasUnit() 572 std::unordered_set<std::string> Hashes; variable
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/ |
| H A D | CodeViewYAMLTypeHashing.h | 46 std::vector<GlobalHash> Hashes; member
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | TpiStreamBuilder.h | 50 ArrayRef<uint32_t> Hashes);
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | RegisterBankInfo.cpp | 304 SmallVector<size_t, 8> Hashes(NumBreakDowns); in hashValueMapping() local 306 Hashes.push_back(hash_value(BreakDown[Idx])); in hashValueMapping() 307 return hash_combine_range(Hashes.begin(), Hashes.end()); in hashValueMapping()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | ODRDiagsEmitter.cpp | 891 auto PopulateHashes = [](DeclHashes &Hashes, const RecordDecl *Record, in diagnoseMismatch() 896 Hashes.emplace_back(D, computeODRHash(D)); in diagnoseMismatch() 1563 auto PopulateHashes = [](DeclHashes &Hashes, const RecordDecl *Record, in diagnoseMismatch() 1568 Hashes.emplace_back(D, computeODRHash(D)); in diagnoseMismatch() 1858 auto PopulateHashes = [FirstEnum](DeclHashes &Hashes, const EnumDecl *Enum) { in diagnoseMismatch() argument 1865 Hashes.emplace_back(cast<EnumConstantDecl>(D), computeODRHash(D)); in diagnoseMismatch() 1999 auto PopulateHashes = [](DeclHashes &Hashes, const ObjCInterfaceDecl *ID, in diagnoseMismatch() 2004 Hashes.emplace_back(D, computeODRHash(D)); in diagnoseMismatch() 2126 auto PopulateHashes = [](DeclHashes &Hashes, const ObjCProtocolDecl *ID, in diagnoseMismatch() 2131 Hashes.emplace_back(D, computeODRHash(D)); in diagnoseMismatch()
|
| /openbsd-src/gnu/usr.bin/perl/ext/Devel-Peek/ |
| H A D | Changes | 2 0.4: Hashes dumped recursively.
|
| /openbsd-src/gnu/usr.bin/perl/t/japh/ |
| H A D | abigail.t | 482 SKIP: Hashes are now randomized. 496 SKIP: Hashes are now randomized.
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | AccelTable.h | 167 HashList Hashes; variable
|
| /openbsd-src/usr.bin/ssh/ |
| H A D | PROTOCOL.krl | 167 Hashes in this section must appear in numeric order, treating each hash
|
| /openbsd-src/gnu/usr.bin/perl/pod/ |
| H A D | perlintro.pod | 242 =item Hashes 266 Hashes have no particular internal order, though you can sort the keys
|
| H A D | perltie.pod | 505 =head2 Tying Hashes 508 Hashes were the first Perl data type to be tied (see dbmopen()). A class
|
| H A D | perl58delta.pod | 321 behaviour. See L</"Localising Tied Arrays and Hashes Is Broken">. 470 =head2 Restricted Hashes 1773 Hashes now use Bob Jenkins "One-at-a-Time" hashing key algorithm 3158 =head2 Localising Tied Arrays and Hashes Is Broken
|
| H A D | perldata.pod | 15 by number, starting with 0. Hashes are unordered collections of scalar
|
| H A D | perlrun.pod | 1283 B<PLEASE NOTE: The hash seed is sensitive information>. Hashes are
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/ |
| H A D | COFFDumper.cpp | 1375 std::vector<GloballyHashedType> Hashes = in mergeCodeViewTypes() local 1379 Types, Hashes, PCHInfo)) in mergeCodeViewTypes()
|
| /openbsd-src/gnu/usr.bin/perl/regen/ |
| H A D | opcodes | 235 # Hashes.
|
| /openbsd-src/gnu/usr.bin/perl/cpan/perlfaq/lib/ |
| H A D | perlfaq4.pod | 1518 used a hash, not a list or array, to store your data. Hashes are 2076 =head1 Data: Hashes (Associative Arrays) 2310 Hashes contain pairs of scalars: the first is the key, the
|
| /openbsd-src/gnu/usr.bin/perl/ext/Pod-Html/corpus/ |
| H A D | perlvar-copy.pod | 1349 warn "Hashes not randomized!\n" if !$^V or $^V lt v5.8.1
|