/external/llvm/lib/DebugInfo/PDB/Raw/ |
D | PublicsStream.cpp | 110 if (auto EC = Reader.readArray(HashRecords, NumHashRecords)) in reload() 131 if (auto EC = Reader.readArray(HashBuckets, NumBuckets)) in reload() 138 if (auto EC = Reader.readArray(AddressMap, NumAddressMapEntries)) in reload() 144 if (auto EC = Reader.readArray(ThunkMap, Header->NumThunks)) in reload() 150 if (auto EC = Reader.readArray(SectionOffsets, Header->NumSections)) in reload()
|
D | DbiStream.cpp | 77 if (auto EC = Reader.readArray(Output, Count)) in loadSectionContribs() 148 if (auto EC = Reader.readArray(ModInfoArray, Header->ModiSubstreamSize)) in reload() 166 if (auto EC = Reader.readArray(DbgStreams, Header->OptionalDbgHdrSize / in reload() 300 if (auto EC = Reader.readArray(SectionHeaders, NumSections)) in initializeSectionHeadersData() 330 if (auto EC = Reader.readArray(FpoRecords, NumRecords)) in initializeFpoRecords() 342 if (auto EC = SMReader.readArray(SectionMap, Header->SecCount)) in initializeSectionMapData() 379 if (auto EC = FISR.readArray(ModIndexArray, ModuleInfos.size())) in initializeFileInfo() 381 if (auto EC = FISR.readArray(ModFileCountArray, ModuleInfos.size())) in initializeFileInfo() 397 if (auto EC = FISR.readArray(FileNameOffsets, NumSourceFiles)) in initializeFileInfo()
|
D | TpiStream.cpp | 184 if (auto EC = Reader.readArray(TypeRecords, Header->TypeRecordBytes)) in reload() 204 if (auto EC = HSR.readArray(HashValues, NumHashValues)) in reload() 210 if (auto EC = HSR.readArray(TypeIndexOffsets, NumTypeIndexOffsets)) in reload() 216 if (auto EC = HSR.readArray(HashAdjustments, NumHashAdjustments)) in reload()
|
D | ModStream.cpp | 44 if (auto EC = Reader.readArray(SymbolsSubstream, SymbolSize - 4)) in reload() 53 if (auto EC = LineReader.readArray(LineInfo, LineReader.bytesRemaining())) in reload()
|
D | PDBFile.cpp | 115 if (auto EC = Reader.readArray(DirectoryBlocks, getNumDirectoryBlocks())) in parseFileHeaders() 140 if (auto EC = Reader.readArray(StreamSizes, NumStreams)) in parseStreamData() 155 if (auto EC = Reader.readArray(Blocks, NumExpectedStreamBlocks)) in parseStreamData()
|
D | SymbolStream.cpp | 35 if (auto EC = Reader.readArray(SymbolRecords, Stream->getLength())) in reload()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/ |
D | PublicsStream.cpp | 79 if (auto EC = Reader.readArray(AddressMap, NumAddressMapEntries)) in reload() 85 if (auto EC = Reader.readArray(ThunkMap, Header->NumThunks)) in reload() 92 if (auto EC = Reader.readArray(SectionOffsets, Header->NumSections)) in reload()
|
D | DbiModuleList.cpp | 181 if (auto EC = Reader.readArray(Descriptors, ModInfo.getLength())) in initializeModInfo() 200 if (auto EC = FISR.readArray(ModuleIndices, FileInfoHeader->NumModules)) in initializeFileInfo() 202 if (auto EC = FISR.readArray(ModFileCountArray, FileInfoHeader->NumModules)) in initializeFileInfo() 217 if (auto EC = FISR.readArray(FileNameOffsets, NumSourceFiles)) in initializeFileInfo()
|
D | DbiStream.cpp | 43 if (auto EC = Reader.readArray(Output, Count)) in loadSectionContribs() 116 if (auto EC = Reader.readArray( in reload() 273 if (auto EC = Reader.readArray(SectionHeaders, NumSections)) in initializeSectionHeadersData() 308 if (auto EC = Reader.readArray(FpoRecords, NumRecords)) in initializeFpoRecords() 345 if (auto EC = SMReader.readArray(SectionMap, Header->SecCount)) in initializeSectionMapData()
|
D | TpiStream.cpp | 74 RecordReader.readArray(TypeRecords, TypeRecordsSubstream.size())) in reload() 96 if (auto EC = HSR.readArray(HashValues, NumHashValues)) in reload() 102 if (auto EC = HSR.readArray(TypeIndexOffsets, NumTypeIndexOffsets)) in reload()
|
D | GlobalsStream.cpp | 79 if (auto EC = Reader.readArray(HashRecords, NumHashRecords)) in readGSIHashRecords() 107 if (auto EC = Reader.readArray(HashBuckets, NumBuckets)) in readGSIHashBuckets()
|
D | ModuleDebugStream.cpp | 59 SymbolReader.readArray(SymbolArray, SymbolReader.bytesRemaining())) in reload() 63 if (auto EC = SubsectionsReader.readArray(Subsections, in reload()
|
/external/skia/src/core/ |
D | SkReadBuffer.cpp | 224 bool SkReadBuffer::readArray(void* value, size_t size, size_t elementSize) { in readArray() function in SkReadBuffer 231 return this->readArray(value, size, sizeof(uint8_t)); in readByteArray() 235 return this->readArray(colors, size, sizeof(SkColor)); in readColorArray() 239 return this->readArray(colors, size, sizeof(SkColor4f)); in readColor4fArray() 243 return this->readArray(values, size, sizeof(int32_t)); in readIntArray() 247 return this->readArray(points, size, sizeof(SkPoint)); in readPointArray() 251 return this->readArray(values, size, sizeof(SkScalar)); in readScalarArray()
|
/external/skqp/src/core/ |
D | SkReadBuffer.cpp | 224 bool SkReadBuffer::readArray(void* value, size_t size, size_t elementSize) { in readArray() function in SkReadBuffer 231 return this->readArray(value, size, sizeof(uint8_t)); in readByteArray() 235 return this->readArray(colors, size, sizeof(SkColor)); in readColorArray() 239 return this->readArray(colors, size, sizeof(SkColor4f)); in readColor4fArray() 243 return this->readArray(values, size, sizeof(int32_t)); in readIntArray() 247 return this->readArray(points, size, sizeof(SkPoint)); in readPointArray() 251 return this->readArray(values, size, sizeof(SkScalar)); in readScalarArray()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/ |
D | FirstOrderIntegratorWithJacobians.java | 765 readArray(in, y); in readExternal() 766 readArray(in, dydy0); in readExternal() 767 readArray(in, dydp); in readExternal() 768 readArray(in, yDot); in readExternal() 769 readArray(in, dydy0Dot); in readExternal() 770 readArray(in, dydpDot); in readExternal() 820 private static void readArray(final ObjectInput in, final double[] array) in readArray() method in FirstOrderIntegratorWithJacobians.StepInterpolatorWrapper 832 private static void readArray(final ObjectInput in, final double[][] array) in readArray() method in FirstOrderIntegratorWithJacobians.StepInterpolatorWrapper 835 readArray(in, array[i]); in readArray()
|
/external/llvm/include/llvm/DebugInfo/CodeView/ |
D | StreamReader.h | 57 Error readArray(ArrayRef<T> &Array, uint32_t NumElements) { in readArray() function 74 Error readArray(VarStreamArray<T, U> &Array, uint32_t Size) { in readArray() function 83 Error readArray(FixedStreamArray<T> &Array, uint32_t NumItems) { in readArray() function
|
D | ModuleSubstreamVisitor.h | 54 if (auto EC = Reader.readArray(Item.LineNumbers, BlockHeader->NumLines)) in operator() 57 if (auto EC = Reader.readArray(Item.Columns, BlockHeader->NumLines)) in operator()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | BinaryStreamReader.h | 176 Error readArray(ArrayRef<T> &Array, uint32_t NumElements) { in readArray() function 206 Error readArray(VarStreamArray<T, U> &Array, uint32_t Size) { in readArray() function 223 Error readArray(FixedStreamArray<T> &Array, uint32_t NumItems) { in readArray() function
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/ |
D | DebugLinesSubsection.cpp | 45 if (auto EC = Reader.readArray(Item.LineNumbers, BlockHeader->NumLines)) in operator ()() 48 if (auto EC = Reader.readArray(Item.Columns, BlockHeader->NumLines)) in operator ()() 62 if (auto EC = Reader.readArray(LinesAndColumns, Reader.bytesRemaining())) in initialize()
|
D | DebugCrossImpSubsection.cpp | 40 if (auto EC = Reader.readArray(Item.Imports, Item.Header->Count)) in operator ()() 47 return Reader.readArray(References, Reader.bytesRemaining()); in initialize()
|
D | DebugInlineeLinesSubsection.cpp | 35 if (auto EC = Reader.readArray(Item.ExtraFiles, ExtraFileCount)) in operator ()() 51 if (auto EC = Reader.readArray(Lines, Reader.bytesRemaining())) in initialize()
|
D | DebugSymbolRVASubsection.cpp | 24 return Reader.readArray(RVAs, Reader.bytesRemaining() / sizeof(uint32_t)); in initialize()
|
D | DebugSymbolsSubsection.cpp | 16 return Reader.readArray(Records, Reader.getLength()); in initialize()
|
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/ |
D | ReadableBuffersTest.java | 48 ReadableBuffers.readArray(null); in readArray_checksNotNull() 54 assertArrayEquals(new byte[]{'h', 'e', 'l', 'l', 'o'}, ReadableBuffers.readArray(buffer)); in readArray_returnsBufferArray()
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | ModuleSubstreamVisitor.cpp | 70 if (auto EC = Reader.readArray(LineInfos, Reader.bytesRemaining())) in visitModuleSubstream() 79 if (auto EC = Reader.readArray(Checksums, Reader.bytesRemaining())) in visitModuleSubstream()
|