HomeSort by relevance Sort by last modified time
    Searched defs:Hash (Results 226 - 250 of 285) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
OnDiskHashTable.h 1 //===--- OnDiskHashTable.h - On-Disk Hash Table Implementation --*- C++ -*-===//
11 /// \brief Defines facilities for reading and writing on-disk hash tables.
28 /// \brief Generates an on disk hash table.
30 /// This needs an \c Info that handles storing values into the hash table's
31 /// payload and computes the hash for a given key. This should provide the
41 /// typedef uint32_t hash_value_type; // The type the hash function returns.
44 /// /// Calculate the hash for Key
60 /// \brief A single item in the hash table.
66 const typename Info::hash_value_type Hash;
70 : Key(Key), Data(Data), Next(nullptr), Hash(InfoObj.ComputeHash(Key)) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/MC/MCParser/
MCAsmLexer.h 58 Amp, AmpAmp, Exclaim, ExclaimEqual, Percent, Hash,
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
OnDiskHashTable.h 1 //===--- OnDiskHashTable.h - On-Disk Hash Table Implementation --*- C++ -*-===//
11 /// \brief Defines facilities for reading and writing on-disk hash tables.
28 /// \brief Generates an on disk hash table.
30 /// This needs an \c Info that handles storing values into the hash table's
31 /// payload and computes the hash for a given key. This should provide the
41 /// typedef uint32_t hash_value_type; // The type the hash function returns.
44 /// /// Calculate the hash for Key
60 /// \brief A single item in the hash table.
66 const typename Info::hash_value_type Hash;
70 : Key(Key), Data(Data), Next(nullptr), Hash(InfoObj.ComputeHash(Key)) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/MC/MCParser/
MCAsmLexer.h 58 Amp, AmpAmp, Exclaim, ExclaimEqual, Percent, Hash,
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
OnDiskHashTable.h 1 //===--- OnDiskHashTable.h - On-Disk Hash Table Implementation --*- C++ -*-===//
11 /// \brief Defines facilities for reading and writing on-disk hash tables.
28 /// \brief Generates an on disk hash table.
30 /// This needs an \c Info that handles storing values into the hash table's
31 /// payload and computes the hash for a given key. This should provide the
41 /// typedef uint32_t hash_value_type; // The type the hash function returns.
44 /// /// Calculate the hash for Key
60 /// \brief A single item in the hash table.
66 const typename Info::hash_value_type Hash;
70 : Key(Key), Data(Data), Next(nullptr), Hash(InfoObj.ComputeHash(Key)) {
    [all...]
  /system/core/logd/
LogTags.cpp 465 size_t Hash = key2tag.hash_function()(Key);
466 uint32_t Tag = Hash;
480 // Algorithm to convert hash to next tag
482 Tag = (Hash >> i);
484 if ((sizeof(Hash) <= 4) || ((Hash & (uint64_t(-1LL) << 32)) == 0)) {
485 Tag |= Hash << (32 - i);
488 Tag = Hash + i - 31;
  /external/libtextclassifier/util/hash/
farmhash.cc 17 #include "util/hash/farmhash.h"
287 // Building blocks for hash functions
308 // A 32-bit to 32-bit integer hash copied from Murmur3.
417 // Return a 16-byte hash for 48 bytes. Quick and dirty.
430 // Return a 16-byte hash for s[0] ... s[31], a, and b. Quick and dirty.
441 // Return an 8-byte hash for 33 to 64 bytes.
1100 // This file provides a 32-bit hash equivalent to CityHash32 (v1.1.1)
1101 // and a 128-bit hash equivalent to CityHash128 (v1.1.1). It also provides
1102 // a seeded 32-bit hash function similar to CityHash32.
    [all...]
  /external/llvm/lib/CodeGen/
BranchFolding.cpp 278 /// HashMachineInstr - Compute a hash value for MI and its operands.
280 unsigned Hash = MI.getOpcode();
285 // hash_code here because it's not deterministic and we sort by hash value
313 Hash += ((OperandHash << 3) | Op.getType()) << (i & 31);
315 return Hash;
318 /// HashEndOfMBB - Hash the last instruction in the MBB.
659 /// hash CurHash (guaranteed to match the last element). Build the vector
703 /// RemoveBlocksWithHash - Remove all blocks with hash CurHash from
850 // Sort by hash value so that blocks with identical end sequences sort
858 // Build SameTails, identifying the set of blocks with this hash cod
    [all...]
  /external/skia/dm/
DM.cpp 72 "If true, write to FLAGS_writePath[0]/<hash>.png instead of "
330 struct Hash {
336 static SkTHashSet<Gold, Gold::Hash> gGold;
376 for (const SkString& hash : hashes) {
377 gUninterestingHashes.add(hash);
    [all...]
  /external/skia/src/gpu/text/
GrAtlasTextBlob.h 106 static uint32_t Hash(const Key& key) {
107 return SkOpts::hash(&key, sizeof(Key));
  /external/skqp/dm/
DM.cpp 68 "If true, write to FLAGS_writePath[0]/<hash>.png instead of "
318 struct Hash {
324 static SkTHashSet<Gold, Gold::Hash> gGold;
364 for (const SkString& hash : hashes) {
365 gUninterestingHashes.add(hash);
    [all...]
  /external/skqp/src/gpu/text/
GrAtlasTextBlob.h 101 static uint32_t Hash(const Key& key) {
102 return SkOpts::hash(&key, sizeof(Key));
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
BranchFolding.cpp 243 /// HashMachineInstr - Compute a hash value for MI and its operands.
245 unsigned Hash = MI->getOpcode();
271 Hash += ((OperandHash << 3) | Op.getType()) << (i&31);
273 return Hash;
276 /// HashEndOfMBB - Hash the last instruction in the MBB.
575 /// hash CurHash (guaranteed to match the last element). Build the vector
619 /// RemoveBlocksWithHash - Remove all blocks with hash CurHash from
720 // Sort by hash value so that blocks with identical end sequences sort
728 // Build SameTails, identifying the set of blocks with this hash code
735 // instructions in common, remove all blocks with this hash code and retry
    [all...]
MachineInstr.cpp     [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/
functionalize_control_flow.cc     [all...]
  /external/v8/src/ast/
ast.cc 520 uint32_t hash = literal->Hash(); local
521 ZoneHashMap::Entry* entry = table.LookupOrInsert(literal, hash, allocator);
    [all...]
  /external/v8/src/profiler/
heap-snapshot-generator.h 296 static uint32_t Hash(HeapThing thing) {
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ProfileData/
InstrProf.h 346 /// The number of hash mismatches.
369 /// Get the number of hash mismatches.
425 // A map from function runtime address to function name MD5 hash.
474 /// Map a function address to its name's MD5 hash. This interface
487 /// Return function's PGO name from the name's md5 hash value.
491 /// Return function from the name's md5 hash. Return nullptr if not found.
589 uint64_t Hash;
594 InstrProfRecord(StringRef Name, uint64_t Hash, std::vector<uint64_t> Counts)
595 : Name(Name), Hash(Hash), Counts(std::move(Counts)) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ProfileData/
InstrProf.h 346 /// The number of hash mismatches.
369 /// Get the number of hash mismatches.
425 // A map from function runtime address to function name MD5 hash.
474 /// Map a function address to its name's MD5 hash. This interface
487 /// Return function's PGO name from the name's md5 hash value.
491 /// Return function from the name's md5 hash. Return nullptr if not found.
589 uint64_t Hash;
594 InstrProfRecord(StringRef Name, uint64_t Hash, std::vector<uint64_t> Counts)
595 : Name(Name), Hash(Hash), Counts(std::move(Counts)) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ProfileData/
InstrProf.h 346 /// The number of hash mismatches.
369 /// Get the number of hash mismatches.
425 // A map from function runtime address to function name MD5 hash.
477 /// Map a function address to its name's MD5 hash. This interface
490 /// Return function's PGO name from the name's md5 hash value.
494 /// Return function from the name's md5 hash. Return nullptr if not found.
724 // Map indirect call target name hash to name string.
741 uint64_t Hash;
744 NamedInstrProfRecord(StringRef Name, uint64_t Hash,
746 : InstrProfRecord(std::move(Counts)), Name(Name), Hash(Hash) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ProfileData/
InstrProf.h 346 /// The number of hash mismatches.
369 /// Get the number of hash mismatches.
425 // A map from function runtime address to function name MD5 hash.
477 /// Map a function address to its name's MD5 hash. This interface
490 /// Return function's PGO name from the name's md5 hash value.
494 /// Return function from the name's md5 hash. Return nullptr if not found.
724 // Map indirect call target name hash to name string.
741 uint64_t Hash;
744 NamedInstrProfRecord(StringRef Name, uint64_t Hash,
746 : InstrProfRecord(std::move(Counts)), Name(Name), Hash(Hash) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ProfileData/
InstrProf.h 346 /// The number of hash mismatches.
369 /// Get the number of hash mismatches.
425 // A map from function runtime address to function name MD5 hash.
477 /// Map a function address to its name's MD5 hash. This interface
490 /// Return function's PGO name from the name's md5 hash value.
494 /// Return function from the name's md5 hash. Return nullptr if not found.
724 // Map indirect call target name hash to name string.
741 uint64_t Hash;
744 NamedInstrProfRecord(StringRef Name, uint64_t Hash,
746 : InstrProfRecord(std::move(Counts)), Name(Name), Hash(Hash) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ProfileData/
InstrProf.h 346 /// The number of hash mismatches.
369 /// Get the number of hash mismatches.
425 // A map from function runtime address to function name MD5 hash.
477 /// Map a function address to its name's MD5 hash. This interface
490 /// Return function's PGO name from the name's md5 hash value.
494 /// Return function from the name's md5 hash. Return nullptr if not found.
724 // Map indirect call target name hash to name string.
741 uint64_t Hash;
744 NamedInstrProfRecord(StringRef Name, uint64_t Hash,
746 : InstrProfRecord(std::move(Counts)), Name(Name), Hash(Hash) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ProfileData/
InstrProf.h 346 /// The number of hash mismatches.
369 /// Get the number of hash mismatches.
425 // A map from function runtime address to function name MD5 hash.
474 /// Map a function address to its name's MD5 hash. This interface
487 /// Return function's PGO name from the name's md5 hash value.
491 /// Return function from the name's md5 hash. Return nullptr if not found.
589 uint64_t Hash;
594 InstrProfRecord(StringRef Name, uint64_t Hash, std::vector<uint64_t> Counts)
595 : Name(Name), Hash(Hash), Counts(std::move(Counts)) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ProfileData/
InstrProf.h 346 /// The number of hash mismatches.
369 /// Get the number of hash mismatches.
425 // A map from function runtime address to function name MD5 hash.
474 /// Map a function address to its name's MD5 hash. This interface
487 /// Return function's PGO name from the name's md5 hash value.
491 /// Return function from the name's md5 hash. Return nullptr if not found.
589 uint64_t Hash;
594 InstrProfRecord(StringRef Name, uint64_t Hash, std::vector<uint64_t> Counts)
595 : Name(Name), Hash(Hash), Counts(std::move(Counts)) {
    [all...]

Completed in 1068 milliseconds

1 2 3 4 5 6 7 8 91011>>