HomeSort by relevance Sort by last modified time
    Searched defs:HashValue (Results 1 - 14 of 14) sorted by null

  /device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/
Hash.c 23 @return HashValue.
32 UINT32 HashValue;
41 gBS->CalculateCrc32 (UpCasedLongFileName, StrSize (UpCasedLongFileName), &HashValue);
42 return (HashValue & HASH_TABLE_MASK);
51 @return HashValue
60 UINT32 HashValue;
61 gBS->CalculateCrc32 (ShortNameString, FAT_NAME_LEN, &HashValue);
62 return (HashValue & HASH_TABLE_MASK);
FileName.c 190 } HashValue;
218 gBS->CalculateCrc32 (DirEnt->FileString, StrSize (DirEnt->FileString), &HashValue.Crc);
226 Segment = HashValue.Hex[Index].Segment;
  /external/compiler-rt/lib/ubsan/
ubsan_type_hash.h 20 typedef uptr HashValue;
52 bool checkDynamicType(void *Object, void *Type, HashValue Hash);
66 HashValue __ubsan_vptr_type_cache[VptrTypeCacheSize];
  /device/linaro/bootloader/edk2/CryptoPkg/Application/Cryptest/
RsaVerify.c 95 UINT8 HashValue[SHA1_DIGEST_SIZE];
306 ZeroMem (HashValue, HashSize);
322 Status = Sha1Final (Sha1Ctx, HashValue);
362 Status = RsaPkcs1Sign (Rsa, HashValue, HashSize, NULL, &SigSize);
369 Status = RsaPkcs1Sign (Rsa, HashValue, HashSize, Signature, &SigSize);
391 Status = RsaPkcs1Verify (Rsa, HashValue, HashSize, Signature, SigSize);
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfAccelTable.cpp 48 uniques[i] = Data[i]->HashValue;
97 uint32_t bucket = Data[i]->HashValue % Header.bucket_count;
108 return LHS->HashValue < RHS->HashValue;
153 uint32_t HashValue = HD->HashValue;
154 if (PrevHash != HashValue)
156 PrevHash = HashValue;
169 uint32_t HashValue = (*HI)->HashValue;
    [all...]
DwarfAccelTable.h 190 uint32_t HashValue;
195 HashValue = DwarfAccelTable::HashDJB(S);
200 O << " Hash Value: " << format("0x%x", HashValue) << "\n";
  /external/deqp-deps/SPIRV-Tools/source/opt/
types.cpp 229 size_t Type::HashValue() const {
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
types.cpp 229 size_t Type::HashValue() const {
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
AccelTable.h 145 uint32_t HashValue;
150 : Name(Name), HashValue(Hash(Name.getString())) {}
SelectionDAG.h 98 unsigned HashValue;
103 HashValue = ID.ComputeHash();
121 if (X.HashValue != IDHash)
127 return X.HashValue;
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/Lan9118Dxe/
Lan9118Dxe.c 559 UINT8 HashValue;
624 HashValue = (Crc >> 26) & 0x3F;
627 if ((HashValue & 0x20) == 0) {
628 MultHashTableLow |= (1 << HashValue);
630 MultHashTableHigh |= (1 << (HashValue & 0x1F));
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
AccelTable.cpp 39 Uniques.push_back(E.second.HashValue);
76 uint32_t Bucket = E.second.HashValue % BucketCount;
86 return LHS->HashValue < RHS->HashValue;
254 uint32_t HashValue = Hash->HashValue;
255 if (SkipIdenticalHashes && PrevHash == HashValue)
258 Asm->emitInt32(HashValue);
259 PrevHash = HashValue;
270 uint32_t HashValue = Hash->HashValue
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DWARFAcceleratorTable.cpp 334 unsigned HashValue = djbHash(Key);
335 unsigned Bucket = HashValue % Hdr.BucketCount;
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 55 unsigned HashValue;
59 HashValue = ID.ComputeHash();
75 if (X.HashValue != IDHash)
80 return X.HashValue;
    [all...]

Completed in 691 milliseconds