Home
last modified time | relevance | path

Searched refs:HashString (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/bolt/lib/Passes/
H A DIdenticalCodeFolding.cpp338 std::string HashString; in hashInteger() local
340 HashString.push_back(0); in hashInteger()
344 HashString.push_back(LSB); in hashInteger()
348 return HashString; in hashInteger()
352 std::string HashString; in hashSymbol() local
356 return HashString; in hashSymbol()
360 return HashString; in hashSymbol()
364 return HashString; in hashSymbol()
366 return HashString.append(hashInteger(*ErrorOrValue)); in hashSymbol()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DMappedHash.h31 static uint32_t HashString(uint32_t hash_function, llvm::StringRef s) { in HashString() function
212 MappedHash::HashString(m_header.hash_function, name); in Find()
/llvm-project-15.0.7/bolt/lib/Core/
H A DBinaryFunction.cpp3570 std::string HashString; in computeHash() local
3585 HashString.push_back(0); in computeHash()
3589 HashString.push_back(LSB); in computeHash()
3594 HashString.append(OperandHashFunc(Op)); in computeHash()
3598 return Hash = std::hash<std::string>{}(HashString); in computeHash()