mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-13 06:34:24 +00:00
Function names should start with lowercase letters.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@272225 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
92be720123
commit
45d1685851
@ -14,8 +14,8 @@
|
||||
|
||||
namespace llvm {
|
||||
namespace pdb {
|
||||
uint32_t HashStringV1(StringRef Str);
|
||||
uint32_t HashStringV2(StringRef Str);
|
||||
uint32_t hashStringV1(StringRef Str);
|
||||
uint32_t hashStringV2(StringRef Str);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -17,7 +17,7 @@ using namespace llvm::support;
|
||||
|
||||
// Corresponds to `Hasher::lhashPbCb` in PDB/include/misc.h.
|
||||
// Used for name hash table and TPI/IPI hashes.
|
||||
uint32_t pdb::HashStringV1(StringRef Str) {
|
||||
uint32_t pdb::hashStringV1(StringRef Str) {
|
||||
uint32_t Result = 0;
|
||||
uint32_t Size = Str.size();
|
||||
|
||||
@ -53,7 +53,7 @@ uint32_t pdb::HashStringV1(StringRef Str) {
|
||||
|
||||
// Corresponds to `HasherV2::HashULONG` in PDB/include/misc.h.
|
||||
// Used for name hash table.
|
||||
uint32_t pdb::HashStringV2(StringRef Str) {
|
||||
uint32_t pdb::hashStringV2(StringRef Str) {
|
||||
uint32_t Hash = 0xb170a1bf;
|
||||
|
||||
ArrayRef<char> Buffer(Str.begin(), Str.end());
|
||||
|
@ -80,7 +80,7 @@ StringRef NameHashTable::getStringForID(uint32_t ID) const {
|
||||
}
|
||||
|
||||
uint32_t NameHashTable::getIDForString(StringRef Str) const {
|
||||
uint32_t Hash = (HashVersion == 1) ? HashStringV1(Str) : HashStringV2(Str);
|
||||
uint32_t Hash = (HashVersion == 1) ? hashStringV1(Str) : hashStringV2(Str);
|
||||
size_t Count = IDs.size();
|
||||
uint32_t Start = Hash % Count;
|
||||
for (size_t I = 0; I < Count; ++I) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user