Home
last modified time | relevance | path

Searched refs:readLongestContiguousChunk (Results 1 – 22 of 22) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DBinaryStreamRef.cpp29 Error readLongestContiguousChunk(uint32_t Offset, in readLongestContiguousChunk() function in __anona6344a4d0111::ArrayRefImpl
31 return BBS.readLongestContiguousChunk(Offset, Buffer); in readLongestContiguousChunk()
52 Error readLongestContiguousChunk(uint32_t Offset, in readLongestContiguousChunk() function in __anona6344a4d0111::MutableArrayRefImpl
54 return BBS.readLongestContiguousChunk(Offset, Buffer); in readLongestContiguousChunk()
87 Error BinaryStreamRef::readLongestContiguousChunk( in readLongestContiguousChunk() function in BinaryStreamRef
93 BorrowedImpl->readLongestContiguousChunk(ViewOffset + Offset, Buffer)) in readLongestContiguousChunk()
DBinaryStreamReader.cpp29 Error BinaryStreamReader::readLongestContiguousChunk( in readLongestContiguousChunk() function in BinaryStreamReader
31 if (auto EC = Stream.readLongestContiguousChunk(Offset, Buffer)) in readLongestContiguousChunk()
50 if (auto EC = readLongestContiguousChunk(Buffer)) in readCString()
DBinaryStreamWriter.cpp62 if (auto EC = SrcReader.readLongestContiguousChunk(Chunk)) in writeStreamRef()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DBinaryByteStream.h50 Error readLongestContiguousChunk(uint32_t Offset, in readLongestContiguousChunk() function
106 Error readLongestContiguousChunk(uint32_t Offset, in readLongestContiguousChunk() function
108 return ImmutableStream.readLongestContiguousChunk(Offset, Buffer); in readLongestContiguousChunk()
162 Error readLongestContiguousChunk(uint32_t Offset, in readLongestContiguousChunk() function
249 Error readLongestContiguousChunk(uint32_t Offset, in readLongestContiguousChunk() function
251 return Impl.readLongestContiguousChunk(Offset, Buffer); in readLongestContiguousChunk()
DBinaryStream.h50 virtual Error readLongestContiguousChunk(uint32_t Offset,
DBinaryItemStream.h56 Error readLongestContiguousChunk(uint32_t Offset, in readLongestContiguousChunk() function
DBinaryStreamReader.h58 Error readLongestContiguousChunk(ArrayRef<uint8_t> &Buffer);
DBinaryStreamRef.h197 Error readLongestContiguousChunk(uint32_t Offset,
/external/llvm/lib/DebugInfo/CodeView/
DStreamReader.cpp20 Error StreamReader::readLongestContiguousChunk(ArrayRef<uint8_t> &Buffer) { in readLongestContiguousChunk() function in StreamReader
21 if (auto EC = Stream.readLongestContiguousChunk(Offset, Buffer)) in readLongestContiguousChunk()
DStreamWriter.cpp71 if (auto EC = SrcReader.readLongestContiguousChunk(Chunk)) in writeStreamRef()
DByteStream.cpp47 Error ByteStream<Writable>::readLongestContiguousChunk( in readLongestContiguousChunk() function in ByteStream
/external/llvm/include/llvm/DebugInfo/CodeView/
DStreamRef.h41 Error readLongestContiguousChunk(uint32_t Offset, in readLongestContiguousChunk() function
46 if (auto EC = Stream->readLongestContiguousChunk(Offset, Buffer)) in readLongestContiguousChunk()
DStreamInterface.h39 virtual Error readLongestContiguousChunk(uint32_t Offset,
DByteStream.h36 Error readLongestContiguousChunk(uint32_t Offset,
DStreamReader.h31 Error readLongestContiguousChunk(ArrayRef<uint8_t> &Buffer);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/MSF/
DMappedBlockStream.h66 Error readLongestContiguousChunk(uint32_t Offset,
133 Error readLongestContiguousChunk(uint32_t Offset,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/MSF/
DMappedBlockStream.cpp167 Error MappedBlockStream::readLongestContiguousChunk(uint32_t Offset, in readLongestContiguousChunk() function in MappedBlockStream
379 Error WritableMappedBlockStream::readLongestContiguousChunk( in readLongestContiguousChunk() function in WritableMappedBlockStream
381 return ReadInterface.readLongestContiguousChunk(Offset, Buffer); in readLongestContiguousChunk()
/external/llvm/include/llvm/DebugInfo/PDB/Raw/
DMappedBlockStream.h34 Error readLongestContiguousChunk(uint32_t Offset,
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DBinaryStreamTest.cpp54 Error readLongestContiguousChunk(uint32_t Offset, in readLongestContiguousChunk() function in __anonb96296ec0111::BrokenStream
230 ASSERT_THAT_ERROR(Ref.readLongestContiguousChunk(2, Buffer), Succeeded()); in TEST_F()
238 EXPECT_THAT_ERROR(Ref.readLongestContiguousChunk(6, Buffer), Failed()); in TEST_F()
250 ASSERT_THAT_ERROR(Ref.readLongestContiguousChunk(2, Buffer), Succeeded()); in TEST_F()
263 ASSERT_THAT_ERROR(Ref.readLongestContiguousChunk(2, Buffer), Succeeded()); in TEST_F()
/external/llvm/lib/DebugInfo/PDB/Raw/
DMappedBlockStream.cpp122 Error MappedBlockStream::readLongestContiguousChunk( in readLongestContiguousChunk() function in MappedBlockStream
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/MSF/
DMappedBlockStreamTest.cpp48 Error readLongestContiguousChunk(uint32_t Offset, in readLongestContiguousChunk() function in __anon20d442d40111::DiscontiguousStream
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DCOFFDumper.cpp195 if (auto EC = Reader.readLongestContiguousChunk(Data)) { in getRecordOffset()