Home
last modified time | relevance | path

Searched refs:keep_front (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DBinaryStreamRef.h98 RefType keep_front(uint64_t N) const { in keep_front() function
118 return drop_front(Offset).keep_front(Len); in slice()
210 BinarySubstreamRef keep_front(uint64_t N) const { return slice(0, N); } in keep_front() function
213 return std::make_pair(keep_front(Off), drop_front(Off)); in split()
/llvm-project-15.0.7/llvm/lib/Support/
H A DBinaryStreamWriter.cpp88 First = First.keep_front(Off); in split()
H A DBinaryStreamReader.cpp175 First = First.keep_front(Off); in split()
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DLinePrinter.cpp212 Substream.StreamData = Slice.drop_front(Offset).keep_front(Size); in formatMsfStreamData()
H A DDbiStreamBuilder.cpp193 WritableBinaryStreamRef(FileInfoBuffer).keep_front(NamesOffset); in generateFileInfoSubstream()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DBinaryStreamTest.cpp340 Dropped = Original.keep_front(2); in TEST_F()