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

  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
IPDBFile.h 36 virtual Expected<ArrayRef<uint8_t>> getBlockData(uint32_t BlockIndex,
38 virtual Error setBlockData(uint32_t BlockIndex, uint32_t Offset,
PDBFile.h 91 Expected<ArrayRef<uint8_t>> getBlockData(uint32_t BlockIndex,
93 Error setBlockData(uint32_t BlockIndex, uint32_t Offset,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/MSF/
IMSFFile.h 33 virtual Expected<ArrayRef<uint8_t>> getBlockData(uint32_t BlockIndex,
35 virtual Error setBlockData(uint32_t BlockIndex, uint32_t Offset,
  /device/linaro/bootloader/edk2/Omap35xxPkg/Flash/
Flash.c 54 UINTN BlockIndex,
60 return ((BlockIndex << gNandFlashInfo->BlockAddressStart) + (PageIndex << gNandFlashInfo->PageAddressStart));
284 IN UINTN BlockIndex,
299 Address = GetActualPageAddressInBytes(BlockIndex, PageIndex);
353 IN UINTN BlockIndex,
367 Address = GetActualPageAddressInBytes(BlockIndex, PageIndex);
432 IN UINTN BlockIndex
440 Address = GetActualPageAddressInBytes(BlockIndex, 0);
471 DEBUG ((EFI_D_ERROR, "Erase block timed out for Block: %d.\n", BlockIndex));
491 UINTN BlockIndex;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
ExpandMemCmp.cpp 91 Value *getCompareLoadPairs(unsigned BlockIndex, unsigned &LoadIndex);
92 void emitLoadCompareBlock(unsigned BlockIndex);
93 void emitLoadCompareBlockMultipleLoads(unsigned BlockIndex,
95 void emitLoadCompareByteBlock(unsigned BlockIndex, unsigned GEPIndex);
196 void MemCmpExpansion::emitLoadCompareByteBlock(unsigned BlockIndex,
201 Builder.SetInsertPoint(LoadCmpBlocks[BlockIndex]);
224 PhiRes->addIncoming(Diff, LoadCmpBlocks[BlockIndex]);
226 if (BlockIndex < (LoadCmpBlocks.size() - 1)) {
232 BranchInst::Create(EndBlock, LoadCmpBlocks[BlockIndex + 1], Cmp);
244 Value *MemCmpExpansion::getCompareLoadPairs(unsigned BlockIndex,
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/FwVol/
FwVol.c 86 UINTN BlockIndex;
93 BlockIndex = 0;
121 BlockIndex = 0;
122 while (BlockIndex < NumberOfBlocks && DataSize >= BlockSize) {
123 Status = Fvb->Read (Fvb, *StartLba + BlockIndex, 0, &BlockSize, Data);
129 BlockIndex ++;
149 Status = Fvb->Read (Fvb, *StartLba + BlockIndex, 0, &DataSize, Data);
158 *StartLba += BlockIndex;
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/FwVolBlock/
FwVolBlock.c 463 UINTN BlockIndex;
551 BlockIndex = 0;
556 FvbDev->LbaCache[BlockIndex].Base = LinearOffset;
557 FvbDev->LbaCache[BlockIndex].Length = PtrBlockMapEntry->Length;
559 BlockIndex++;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
PDBFile.h 70 Expected<ArrayRef<uint8_t>> getBlockData(uint32_t BlockIndex,
72 Error setBlockData(uint32_t BlockIndex, uint32_t Offset,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
MergeICmps.cpp 641 for (int BlockIndex = NumBlocks - 1; BlockIndex > 0; --BlockIndex) {
645 LLVM_DEBUG(dbgs() << "skip: block " << BlockIndex
649 Blocks[BlockIndex] = CurBlock;
653 LLVM_DEBUG(dbgs() << "skip: block " << BlockIndex
659 LLVM_DEBUG(dbgs() << "skip: block " << BlockIndex
RewriteStatepointsForGC.cpp     [all...]
  /external/llvm/lib/DebugInfo/PDB/Raw/
PDBFile.cpp 76 Expected<ArrayRef<uint8_t>> PDBFile::getBlockData(uint32_t BlockIndex,
78 uint64_t StreamBlockOffset = blockToOffset(BlockIndex, getBlockSize());
86 Error PDBFile::setBlockData(uint32_t BlockIndex, uint32_t Offset,
97 uint64_t StreamBlockOffset = blockToOffset(BlockIndex, getBlockSize());
  /external/llvm/unittests/DebugInfo/PDB/
MappedBlockStreamTest.cpp 64 Expected<ArrayRef<uint8_t>> getBlockData(uint32_t BlockIndex,
66 return ArrayRef<uint8_t>(&Data[BlockIndex], NumBytes);
69 Error setBlockData(uint32_t BlockIndex, uint32_t Offset,
71 if (BlockIndex >= Blocks.size())
75 ::memcpy(&Data[BlockIndex] + Offset, SrcData.data(), SrcData.size());
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
PDBFile.cpp 104 Expected<ArrayRef<uint8_t>> PDBFile::getBlockData(uint32_t BlockIndex,
106 uint64_t StreamBlockOffset = msf::blockToOffset(BlockIndex, getBlockSize());
114 Error PDBFile::setBlockData(uint32_t BlockIndex, uint32_t Offset,
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
ExplainOutputStyle.cpp 234 uint32_t BlockIndex = FileOffset / BlockSize;
235 uint32_t OffsetInBlock = FileOffset - BlockIndex * BlockSize;
237 auto Iter = llvm::find(StreamBlocks, BlockIndex);
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/MSF/
MappedBlockStreamTest.cpp 495 MATCHER_P3(BlockIsFilledWith, Layout, BlockIndex, Byte, "succeeded") {
496 uint64_t Offset = msf::blockToOffset(BlockIndex, Layout.SB->BlockSize);
  /device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/
Variable.c 138 UINTN BlockIndex;
217 for (BlockIndex = 0; BlockIndex < PtrBlockMapEntry->NumBlocks; BlockIndex++) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
RewriteStatepointsForGC.cpp     [all...]

Completed in 513 milliseconds