/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 | SymbolStream.cpp | 35 if (auto EC = Reader.readArray(SymbolRecords, Stream->getLength())) 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 | NameHashTable.cpp | 53 if (auto EC = Stream.readArray(IDs, *HashCount)) in load()
|
/external/skia/src/core/ |
D | SkValidatingReadBuffer.cpp | 198 bool SkValidatingReadBuffer::readArray(void* value, size_t size, size_t elementSize) { in readArray() function in SkValidatingReadBuffer 214 return this->readArray(static_cast<unsigned char*>(value), size, sizeof(unsigned char)); in readByteArray() 218 return this->readArray(colors, size, sizeof(SkColor)); in readColorArray() 222 return this->readArray(colors, size, sizeof(SkColor4f)); in readColor4fArray() 226 return this->readArray(values, size, sizeof(int32_t)); in readIntArray() 230 return this->readArray(points, size, sizeof(SkPoint)); in readPointArray() 234 return this->readArray(values, size, sizeof(SkScalar)); in readScalarArray()
|
D | SkReadBuffer.cpp | 184 bool SkReadBuffer::readArray(void* value, size_t size, size_t elementSize) { in readArray() function in SkReadBuffer 198 return readArray(static_cast<unsigned char*>(value), size, sizeof(unsigned char)); in readByteArray() 202 return readArray(colors, size, sizeof(SkColor)); in readColorArray() 206 return readArray(colors, size, sizeof(SkColor4f)); in readColor4fArray() 210 return readArray(values, size, sizeof(int32_t)); in readIntArray() 214 return readArray(points, size, sizeof(SkPoint)); in readPointArray() 218 return readArray(values, size, sizeof(SkScalar)); in readScalarArray()
|
D | SkValidatingReadBuffer.h | 74 bool readArray(void* value, size_t size, size_t elementSize);
|
D | SkReadBuffer.h | 249 bool readArray(void* value, size_t size, size_t elementSize);
|
/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/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()
|
D | TypeDumper.cpp | 687 if (auto EC = Reader.readArray(Types, Reader.getLength())) in dump()
|
/external/jsoncpp/include/json/ |
D | reader.h | 201 bool readArray(Token& token);
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | SslWrapper.java | 496 int readArray(byte[] destJava, int destOffset, int destLength) in readArray() method in SslWrapper 570 int readArray(byte[] destJava, int destOffset, int destLength) throws IOException { in readArray() method in SslWrapper.BioWrapper
|
/external/llvm/unittests/DebugInfo/PDB/ |
D | MappedBlockStreamTest.cpp | 375 EXPECT_NO_ERROR(Reader.readArray(byteArray[1], byteArray[0].size())); in TEST() 384 EXPECT_NO_ERROR(Reader.readArray(intArray[1], intArray[0].size())); in TEST()
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowParcel.java | 600 public Object[] readArray(ClassLoader loader) { in readArray() method in ShadowParcel 740 return readArray(loader); in readValue()
|
/external/jsoncpp/src/lib_json/ |
D | json_reader.cpp | 175 successful = readArray(token); in readValue() 461 bool Reader::readArray(Token& tokenStart) { in readArray() function in Json::Reader
|
/external/protobuf/conformance/third_party/jsoncpp/ |
D | jsoncpp.cpp | 370 successful = readArray(token); in readValue() 702 bool Reader::readArray(Token& tokenStart) { in readArray() function in Json::Reader 1175 bool readArray(Token& token); 1295 successful = readArray(token); in readValue() 1684 bool OurReader::readArray(Token& tokenStart) { in readArray() function in Json::OurReader
|
D | json.h | 1450 bool readArray(Token& token);
|
/external/llvm/tools/llvm-readobj/ |
D | COFFDumper.cpp | 959 if (auto EC = Reader.readArray(Symbols, Reader.getLength())) { in printCodeViewSymbolsSubsection() 1067 if (auto EC = Reader.readArray(Types, Reader.getLength())) { in mergeCodeViewTypes()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | CodeViewDebug.cpp | 481 Error E = Reader.readArray(Types, Reader.getLength()); in emitTypeInformation()
|