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

  /art/compiler/utils/
dedupe_set-inl.h 39 typename HashType,
41 HashType kShard>
42 struct DedupeSet<InKey, StoreKey, Alloc, HashType, HashFunc, kShard>::Stats {
52 typename HashType,
54 HashType kShard>
55 class DedupeSet<InKey, StoreKey, Alloc, HashType, HashFunc, kShard>::Shard {
87 std::unordered_map<HashType, size_t> stats;
186 typename HashType,
188 HashType kShard>
189 const StoreKey* DedupeSet<InKey, StoreKey, Alloc, HashType, HashFunc, kShard>::Add
    [all...]
dedupe_set.h 30 // A set of Keys that support a HashFunc returning HashType. Used to find duplicates of Key in the
36 typename HashType,
38 HashType kShard = 1>
  /external/tensorflow/tensorflow/contrib/nearest_neighbor/kernels/
hyperplane_lsh_probes.h 35 template <typename CoordinateType, typename HashType>
116 HashType hash_mask = 1;
132 bool GetNextProbe(HashType* cur_probe, int_fast32_t* cur_table) {
168 HashType next_mask =
170 (HashType(1) << (num_hyperplanes_per_table_ - cur_index - 1)) ^
171 (HashType(1) << (num_hyperplanes_per_table_ - next_index - 1));
186 (HashType(1) << (num_hyperplanes_per_table_ - next_index - 1));
199 ProbeCandidate(int_fast32_t table = 0, HashType hash_mask = 0,
204 HashType hash_mask_;
227 std::vector<HashType> main_table_probe_
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Guid/
WinCertificate.h 65 EFI_GUID HashType;
  /external/libchrome/base/containers/
mru_cache.h 241 template <class KeyType, class ValueType, class HashType>
243 typedef std::unordered_map<KeyType, ValueType, HashType> Type;
249 template <class KeyType, class PayloadType, class HashType = std::hash<KeyType>>
251 : public MRUCacheBase<KeyType, PayloadType, HashType, MRUCacheHashMap> {
254 MRUCacheBase<KeyType, PayloadType, HashType, MRUCacheHashMap>;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/
UefiMultiPhase.h 121 EFI_GUID HashType;
  /external/llvm/include/llvm/ProfileData/
InstrProfReader.h 259 IndexedInstrProf::HashT HashType;
267 InstrProfLookupTrait(IndexedInstrProf::HashT HashType, unsigned FormatVersion)
268 : HashType(HashType), FormatVersion(FormatVersion),
337 IndexedInstrProf::HashT HashType, uint64_t Version);
InstrProf.h 792 const HashT HashType = HashT::MD5;
794 inline uint64_t ComputeHash(StringRef K) { return ComputeHash(HashType, K); }
802 uint64_t HashType;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/
InstrProfReader.h 283 IndexedInstrProf::HashT HashType;
291 InstrProfLookupTrait(IndexedInstrProf::HashT HashType, unsigned FormatVersion)
292 : HashType(HashType), FormatVersion(FormatVersion) {}
362 IndexedInstrProf::HashT HashType, uint64_t Version);
InstrProf.h     [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Library/FmpAuthenticationLibRsa2048Sha256/
FmpAuthenticationLibRsa2048Sha256.c 93 if (!CompareGuid(&CertBlockRsa2048Sha256->HashType, &gEfiHashAlgorithmSha256Guid)) {
94 DEBUG((DEBUG_ERROR, "FmpAuthenticatedHandlerRsa2048Sha256 - HashType: %g, expect - %g\n", &CertBlockRsa2048Sha256->HashType, &gEfiHashAlgorithmSha256Guid));
  /external/llvm/lib/ProfileData/
InstrProfReader.cpp 460 return IndexedInstrProf::ComputeHash(HashType, K);
557 const unsigned char *const Base, IndexedInstrProf::HashT HashType,
562 typename HashTableImpl::InfoType(HashType, Version)));
651 IndexedInstrProf::HashT HashType = static_cast<IndexedInstrProf::HashT>(
652 endian::byte_swap<uint64_t, little>(Header->HashType));
653 if (HashType > IndexedInstrProf::HashT::Last)
661 Start + HashOffset, Cur, Start, HashType, FormatVersion);
InstrProfWriter.cpp 231 Header.HashType = static_cast<uint64_t>(IndexedInstrProf::HashType);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
InstrProfReader.cpp 483 return IndexedInstrProf::ComputeHash(HashType, K);
581 const unsigned char *const Base, IndexedInstrProf::HashT HashType,
586 typename HashTableImpl::InfoType(HashType, Version)));
678 IndexedInstrProf::HashT HashType = static_cast<IndexedInstrProf::HashT>(
679 endian::byte_swap<uint64_t, little>(Header->HashType));
680 if (HashType > IndexedInstrProf::HashT::Last)
688 Start + HashOffset, Cur, Start, HashType, FormatVersion);
InstrProfWriter.cpp 269 Header.HashType = static_cast<uint64_t>(IndexedInstrProf::HashType);
  /external/tensorflow/tensorflow/python/lib/core/
bfloat16.cc 36 typedef long HashType; // NOLINT
71 typedef Py_hash_t HashType;
304 HashType PyBfloat16_Hash(PyObject* self) {
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Rsa2048Sha256Sign/
Rsa2048Sha256Sign.py 47 # EFI_GUID HashType;
52 EFI_CERT_BLOCK_RSA_2048_SHA256 = collections.namedtuple('EFI_CERT_BLOCK_RSA_2048_SHA256', ['HashType','PublicKey','Signature'])
202 if uuid.UUID(bytes_le = Header.HashType) <> EFI_HASH_ALGORITHM_SHA256_GUID:
  /device/linaro/bootloader/edk2/SecurityPkg/Library/DxeRsa2048Sha256GuidedSectionExtractLib/
DxeRsa2048Sha256GuidedSectionExtractLib.c 227 // Fail if the HashType is not SHA 256
229 if (!CompareGuid (&gEfiHashAlgorithmSha256Guid, &CertBlockRsa2048Sha256->HashType)) {
  /device/linaro/bootloader/edk2/SecurityPkg/Library/PeiRsa2048Sha256GuidedSectionExtractLib/
PeiRsa2048Sha256GuidedSectionExtractLib.c 211 // Fail if the HashType is not SHA 256
213 if (!CompareGuid (&gEfiHashAlgorithmSha256Guid, &CertBlockRsa2048Sha256->HashType)) {
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 78 enum HashType : unsigned char {
100 static_assert(LastHashType <= TooBig, "Too many types in HashType");
105 void combine(HashType Type);
157 PGOHash::HashType getHashType(const Stmt *S) {
577 void PGOHash::combine(HashType Type) {

Completed in 1382 milliseconds