Home
last modified time | relevance | path

Searched refs:MsfBuffer (Results 1 – 8 of 8) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
DPDBFileBuilder.h82 void commitFpm(WritableBinaryStream &MsfBuffer, const msf::MSFLayout &Layout);
83 void commitInjectedSources(WritableBinaryStream &MsfBuffer,
85 void commitSrcHeaderBlock(WritableBinaryStream &MsfBuffer,
DDbiModuleDescriptorBuilder.h81 WritableBinaryStreamRef MsfBuffer);
DDbiStreamBuilder.h75 Error commit(const msf::MSFLayout &Layout, WritableBinaryStreamRef MsfBuffer);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DPDBFileBuilder.cpp226 void PDBFileBuilder::commitSrcHeaderBlock(WritableBinaryStream &MsfBuffer, in commitSrcHeaderBlock() argument
232 Layout, MsfBuffer, SN, Allocator); in commitSrcHeaderBlock()
246 void PDBFileBuilder::commitInjectedSources(WritableBinaryStream &MsfBuffer, in commitInjectedSources() argument
251 commitSrcHeaderBlock(MsfBuffer, Layout); in commitInjectedSources()
257 Layout, MsfBuffer, SN, Allocator); in commitInjectedSources()
DDbiStreamBuilder.cpp355 WritableBinaryStreamRef MsfBuffer) { in commit() argument
360 Layout, MsfBuffer, StreamDBI, Allocator); in commit()
367 if (auto EC = M->commit(Writer, Layout, MsfBuffer)) in commit()
407 Layout, MsfBuffer, Stream->StreamNumber, Allocator); in commit()
DDbiModuleDescriptorBuilder.cpp127 WritableBinaryStreamRef MsfBuffer) { in commit() argument
141 MsfLayout, MsfBuffer, Layout.ModDiStream, MSF.getAllocator()); in commit()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/MSF/
DMappedBlockStreamTest.cpp514 std::vector<uint8_t> MsfBuffer(NumFileBlocks * SB.BlockSize); in TEST() local
515 MutableBinaryByteStream MsfStream(MsfBuffer, llvm::support::little); in TEST()
528 EXPECT_THAT(MsfBuffer, BlockIsFilledWith(L, 1 + I * SB.BlockSize, 0xFF)); in TEST()
529 EXPECT_THAT(MsfBuffer, BlockIsFilledWith(L, 2 + I * SB.BlockSize, 0)); in TEST()
532 ::memset(MsfBuffer.data(), 0, MsfBuffer.size()); in TEST()
543 EXPECT_THAT(MsfBuffer, BlockIsFilledWith(L, 1 + I * SB.BlockSize, 0)); in TEST()
544 EXPECT_THAT(MsfBuffer, BlockIsFilledWith(L, 2 + I * SB.BlockSize, 0xFF)); in TEST()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/MSF/
DMSFBuilder.cpp314 static void commitFpm(WritableBinaryStream &MsfBuffer, const MSFLayout &Layout, in commitFpm() argument
317 WritableMappedBlockStream::createFpmStream(Layout, MsfBuffer, Allocator); in commitFpm()
320 WritableMappedBlockStream::createFpmStream(Layout, MsfBuffer, Allocator, in commitFpm()