Searched refs:readArray (Results 1 - 25 of 35) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugSymbolRVASubsection.cpp23 return Reader.readArray(RVAs, Reader.bytesRemaining() / sizeof(uint32_t));
H A DDebugSymbolsSubsection.cpp15 return Reader.readArray(Records, Reader.getLength());
H A DDebugCrossExSubsection.cpp26 return Reader.readArray(References, Size);
H A DDebugLinesSubsection.cpp44 if (auto EC = Reader.readArray(Item.LineNumbers, BlockHeader->NumLines))
47 if (auto EC = Reader.readArray(Item.Columns, BlockHeader->NumLines))
61 if (auto EC = Reader.readArray(LinesAndColumns, Reader.bytesRemaining()))
H A DDebugCrossImpSubsection.cpp39 if (auto EC = Reader.readArray(Item.Imports, Item.Header->Count))
46 return Reader.readArray(References, Reader.bytesRemaining());
H A DDebugInlineeLinesSubsection.cpp34 if (auto EC = Reader.readArray(Item.ExtraFiles, ExtraFileCount))
50 if (auto EC = Reader.readArray(Lines, Reader.bytesRemaining()))
H A DDebugFrameDataSubsection.cpp26 if (auto EC = Reader.readArray(Frames, Count))
H A DDebugChecksumsSubsection.cpp52 if (auto EC = Reader.readArray(Checksums, Reader.bytesRemaining()))
H A DLazyRandomTypeCollection.cpp65 error(Reader.readArray(Types, Reader.bytesRemaining()));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPublicsStream.cpp78 if (auto EC = Reader.readArray(AddressMap, NumAddressMapEntries))
84 if (auto EC = Reader.readArray(ThunkMap, Header->NumThunks))
91 if (auto EC = Reader.readArray(SectionOffsets, Header->NumSections))
H A DSymbolStream.cpp30 if (auto EC = Reader.readArray(SymbolRecords, Stream->getLength()))
H A DGlobalsStream.cpp119 if (auto EC = Reader.readArray(HashRecords, NumHashRecords))
140 if (auto EC = Reader.readArray(HashBitmap, NumBitmapEntries))
163 if (auto EC = Reader.readArray(HashBuckets, NumBuckets))
H A DDbiModuleList.cpp180 if (auto EC = Reader.readArray(Descriptors, ModInfo.getLength()))
199 if (auto EC = FISR.readArray(ModuleIndices, FileInfoHeader->NumModules))
201 if (auto EC = FISR.readArray(ModFileCountArray, FileInfoHeader->NumModules))
216 if (auto EC = FISR.readArray(FileNameOffsets, NumSourceFiles))
H A DModuleDebugStream.cpp72 if (auto EC = SymbolReader.readArray(
77 if (auto EC = SubsectionsReader.readArray(Subsections,
H A DTpiStream.cpp76 RecordReader.readArray(TypeRecords, TypeRecordsSubstream.size()))
97 if (auto EC = HSR.readArray(HashValues, NumHashValues))
103 if (auto EC = HSR.readArray(TypeIndexOffsets, NumTypeIndexOffsets))
H A DDbiStream.cpp42 if (auto EC = Reader.readArray(Output, Count))
115 if (auto EC = Reader.readArray(
275 if (auto EC = Reader.readArray(SectionHeaders, NumSections))
301 if (auto EC = Reader.readArray(OldFpoRecords, NumRecords))
373 if (auto EC = SMReader.readArray(SectionMap, Header->SecCount))
H A DPDBFile.cpp173 if (auto EC = Reader.readArray(ContainerLayout.DirectoryBlocks,
198 if (auto EC = Reader.readArray(ContainerLayout.StreamSizes, NumStreams))
212 // class, we can be guaranteed that readArray() will return a stable
215 if (auto EC = Reader.readArray(Blocks, NumExpectedStreamBlocks))
H A DPDBStringTable.cpp67 if (auto EC = Reader.readArray(IDs, *HashCount)) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DAbstractBasicReader.h57 // ArrayRef<ValueType> readArray(llvm::SmallVectorImpl<ValueType> &buffer);
147 llvm::ArrayRef<T> readArray(llvm::SmallVectorImpl<T> &buffer) { function in class:clang::serialization::DataStreamBasicReader
192 esi.Exceptions = asImpl().template readArray<QualType>(buffer);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamReader.h187 Error readArray(ArrayRef<T> &Array, uint32_t NumElements) { function in class:llvm::BinaryStreamReader
217 Error readArray(VarStreamArray<T, U> &Array, uint32_t Size, function in class:llvm::BinaryStreamReader
235 Error readArray(FixedStreamArray<T> &Array, uint32_t NumItems) { function in class:llvm::BinaryStreamReader
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DGsymReader.cpp111 FileData.readArray(AddrOffsets,
118 FileData.readArray(AddrInfoOffsets, Hdr->NumAddresses))
124 if (FileData.readInteger(NumFiles) || FileData.readArray(Files, NumFiles))
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DRecordSerialization.h95 return Reader.readArray(Item, Func());
145 return Reader.readArray(Item, Count);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DTypeReferenceTracker.cpp65 cantFail(Reader.readArray(Symbols, Reader.getLength()));
H A DInputFile.cpp99 cantFail(Reader.readArray(Subsections, Reader.bytesRemaining()));
108 cantFail(Reader.readArray(Types, Reader.bytesRemaining()));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamReader.cpp116 if (auto EC = readArray(Dest, Length))

Completed in 279 milliseconds

12