reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/DebugInfo/PDB/Native/Hash.h
   19 uint32_t hashStringV1(StringRef Str);

References

lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp
  145     size_t BucketIdx = hashStringV1(Name) % IPHR_HASH;
lib/DebugInfo/PDB/Native/GlobalsStream.cpp
   53   size_t ExpandedBucketIndex = hashStringV1(Name) % IPHR_HASH;
lib/DebugInfo/PDB/Native/NamedStreamMap.cpp
   38   return static_cast<uint16_t>(hashStringV1(S));
   97   return hashStringV1(getString(Offset));
lib/DebugInfo/PDB/Native/PDBStringTable.cpp
  115       (Header->HashVersion == 1) ? hashStringV1(Str) : hashStringV2(Str);
lib/DebugInfo/PDB/Native/PDBStringTableBuilder.cpp
  183     uint32_t Hash = hashStringV1(S);
lib/DebugInfo/PDB/Native/TpiHashing.cpp
   36     return hashStringV1(Rec.getName());
   38     return hashStringV1(Rec.getUniqueName());
   73   uint32_t FullHash = hashStringV1(NameToHash);
   85   return hashStringV1(StringRef(Buf, 4));
lib/DebugInfo/PDB/Native/TpiStream.cpp
  164   uint32_t Bucket = hashStringV1(Name) % Header->NumHashBuckets;
unittests/DebugInfo/PDB/HashTableTest.cpp
  223     return llvm::pdb::hashStringV1(S);