HomeSort by relevance Sort by last modified time
    Searched refs:HashType (Results 1 - 6 of 6) sorted by null

  /art/compiler/utils/
dedupe_set.h 34 // A set of Keys that support a HashFunc returning HashType. Used to find duplicates of Key in the
37 template <typename InKey, typename StoreKey, typename HashType, typename HashFunc,
38 HashType kShard = 1>
40 typedef std::pair<HashType, const InKey*> HashedInKey;
44 HashType store_hash; // Valid if store_ptr != null.
52 HashType a_hash = (a.store_ptr != nullptr) ? a.store_hash : a.in_key->first;
53 HashType b_hash = (b.store_ptr != nullptr) ? b.store_hash : b.in_key->first;
79 HashType raw_hash = HashFunc()(key);
84 HashType shard_hash = raw_hash / kShard;
85 HashType shard_bin = raw_hash % kShard
    [all...]
  /external/llvm/lib/ProfileData/
InstrProfIndexed.h 51 const HashT HashType = HashT::MD5;
InstrProfWriter.cpp 36 return IndexedInstrProf::ComputeHash(IndexedInstrProf::HashType, K);
123 LE.write<uint64_t>(static_cast<uint64_t>(IndexedInstrProf::HashType));
InstrProfReader.cpp 303 return IndexedInstrProf::ComputeHash(HashType, K);
338 IndexedInstrProf::HashT HashType = static_cast<IndexedInstrProf::HashT>(
340 if (HashType > IndexedInstrProf::HashT::Last)
346 InstrProfLookupTrait(HashType)));
  /external/llvm/include/llvm/ProfileData/
InstrProfReader.h 210 IndexedInstrProf::HashT HashType;
212 InstrProfLookupTrait(IndexedInstrProf::HashT HashType) : HashType(HashType) {}
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 111 enum HashType : unsigned char {
133 static_assert(LastHashType <= TooBig, "Too many types in HashType");
138 void combine(HashType Type);
190 PGOHash::HashType getHashType(const Stmt *S) {
620 void PGOHash::combine(HashType Type) {

Completed in 260 milliseconds