/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
D | HeaderItem.java | 177 out.annotate(4, "file_size: %d", dexFile.readInt(out.getCursor())); in makeAnnotator() 179 headerSize = dexFile.readInt(out.getCursor()); in makeAnnotator() 182 int endianTag = dexFile.readInt(out.getCursor()); in makeAnnotator() 185 out.annotate(4, "link_size: %d", dexFile.readInt(out.getCursor())); in makeAnnotator() 186 out.annotate(4, "link_offset: 0x%x", dexFile.readInt(out.getCursor())); in makeAnnotator() 188 out.annotate(4, "map_off: 0x%x", dexFile.readInt(out.getCursor())); in makeAnnotator() 190 out.annotate(4, "string_ids_size: %d", dexFile.readInt(out.getCursor())); in makeAnnotator() 191 out.annotate(4, "string_ids_off: 0x%x", dexFile.readInt(out.getCursor())); in makeAnnotator() 193 out.annotate(4, "type_ids_size: %d", dexFile.readInt(out.getCursor())); in makeAnnotator() 194 out.annotate(4, "type_ids_off: 0x%x", dexFile.readInt(out.getCursor())); in makeAnnotator() [all …]
|
/external/chromium_org/third_party/skia/src/core/ |
D | SkPicturePlayback.cpp | 27 uint32_t temp = reader->readInt(); in ReadOpAndSize() 36 *size = reader->readInt(); in ReadOpAndSize() 60 size_t length = text->fByteLength = reader->readInt(); in get_text() 180 uint32_t packed = reader->readInt(); in handleOp() 183 size_t offsetToRestore = reader->readInt(); in handleOp() 193 uint32_t packed = reader->readInt(); in handleOp() 195 size_t offsetToRestore = reader->readInt(); in handleOp() 204 uint32_t packed = reader->readInt(); in handleOp() 207 size_t offsetToRestore = reader->readInt(); in handleOp() 217 uint32_t packed = reader->readInt(); in handleOp() [all …]
|
D | SkReadBuffer.cpp | 92 return fReader.readInt(); in readColor() 99 int32_t SkReadBuffer::readInt() { in readInt() function in SkReadBuffer 100 return fReader.readInt(); in readInt() 112 return fReader.readInt(); in read32() 122 SkDEBUGCODE(int32_t encodingType = ) fReader.readInt(); in readEncodedString() 124 *length = fReader.readInt(); in readEncodedString() 193 const int width = this->readInt(); in readBitmap() 194 const int height = this->readInt(); in readBitmap() 224 const int32_t xOffset = this->readInt(); in readBitmap() 225 const int32_t yOffset = this->readInt(); in readBitmap()
|
D | SkValidatingReadBuffer.cpp | 59 uint32_t value = this->readInt(); in readBool() 66 return this->readInt(); in readColor() 70 return this->readInt(); in readFixed() 73 int32_t SkValidatingReadBuffer::readInt() { in readInt() function in SkValidatingReadBuffer 76 return fError ? 0 : fReader.readInt(); in readInt() 86 return this->readInt(); in readUInt() 90 return this->readInt(); in read32() 110 const int32_t encodingType = this->readInt(); in readEncodedString() 112 *length = this->readInt(); in readEncodedString()
|
D | SkReader32.h | 53 bool readBool() { return this->readInt() != 0; } in readBool() 55 int32_t readInt() { in readInt() function 104 uint8_t readU8() { return (uint8_t)this->readInt(); } in readU8() 105 uint16_t readU16() { return (uint16_t)this->readInt(); } in readU16() 106 int32_t readS32() { return this->readInt(); } in readS32() 107 uint32_t readU32() { return this->readInt(); } in readU32()
|
D | SkPictureData.h | 107 const int index = reader->readInt(); in getBitmap() 118 int index = reader->readInt() - 1; in getPath() 123 int index = reader->readInt(); in getPicture() 129 int index = reader->readInt(); in getPaint() 137 int index = reader->readInt(); in getTextBlob()
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowParcel.java | 119 int N = readInt(); in readString() 143 public int readInt() { in readInt() method in ShadowParcel 206 int N = readInt(); in readBooleanArray() 227 int N = readInt(); in createBooleanArray() 240 int N = readInt(); in readCharArray() 261 int N = readInt(); in createCharArray() 274 int N = readInt(); in readFloatArray() 295 int N = readInt(); in createFloatArray() 319 int N = readInt(); in readDoubleArray() 329 int N = readInt(); in createDoubleArray() [all …]
|
/external/llvm/lib/IR/ |
D | GCOV.cpp | 34 if (!Buffer.readInt(Checksum)) return false; in readGCNO() 60 if (!Buffer.readInt(GCDAChecksum)) return false; in readGCDA() 77 if (!Buffer.readInt(Length)) return false; in readGCDA() 78 if (!Buffer.readInt(Dummy)) return false; // checksum in readGCDA() 79 if (!Buffer.readInt(Dummy)) return false; // num in readGCDA() 80 if (!Buffer.readInt(RunCount)) return false; in readGCDA() 85 if (!Buffer.readInt(Length)) return false; in readGCDA() 115 if (!Buff.readInt(Dummy)) return false; // Function header length in readGCNO() 116 if (!Buff.readInt(Ident)) return false; in readGCNO() 117 if (!Buff.readInt(Checksum)) return false; in readGCNO() [all …]
|
/external/skia/third_party/ktx/ |
D | ktx.cpp | 93 uint32_t SkKTXFile::readInt(const uint8_t** buf, size_t* bytesLeft) const { in readInt() function in SkKTXFile 156 uint32_t endianness = this->readInt(&buf, &bytesLeft); in readKTXFile() 160 fHeader.fGLType = this->readInt(&buf, &bytesLeft); in readKTXFile() 161 fHeader.fGLTypeSize = this->readInt(&buf, &bytesLeft); in readKTXFile() 162 fHeader.fGLFormat = this->readInt(&buf, &bytesLeft); in readKTXFile() 163 fHeader.fGLInternalFormat = this->readInt(&buf, &bytesLeft); in readKTXFile() 164 fHeader.fGLBaseInternalFormat = this->readInt(&buf, &bytesLeft); in readKTXFile() 165 fHeader.fPixelWidth = this->readInt(&buf, &bytesLeft); in readKTXFile() 166 fHeader.fPixelHeight = this->readInt(&buf, &bytesLeft); in readKTXFile() 167 fHeader.fPixelDepth = this->readInt(&buf, &bytesLeft); in readKTXFile() [all …]
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
D | ClassReader.java | 297 item.set(readInt(index)); in copyPool() 301 item.set(Float.intBitsToFloat(readInt(index))); in copyPool() 487 v += 6 + readInt(v + 2); in accept() 496 v += 6 + readInt(v + 2); in accept() 533 int len = readInt(v + 2); in accept() 541 readInt(v + 2), in accept() 550 v += 6 + readInt(v + 2); in accept() 553 classVisitor.visit(readInt(4), in accept() 650 readInt(u + 2), in accept() 659 u += 6 + readInt(u + 2); in accept() [all …]
|
/external/chromium_org/third_party/skia/third_party/ktx/ |
D | ktx.cpp | 137 uint32_t SkKTXFile::readInt(const uint8_t** buf, size_t* bytesLeft) const { in readInt() function in SkKTXFile 211 uint32_t endianness = this->readInt(&buf, &bytesLeft); in readKTXFile() 215 fHeader.fGLType = this->readInt(&buf, &bytesLeft); in readKTXFile() 216 fHeader.fGLTypeSize = this->readInt(&buf, &bytesLeft); in readKTXFile() 217 fHeader.fGLFormat = this->readInt(&buf, &bytesLeft); in readKTXFile() 218 fHeader.fGLInternalFormat = this->readInt(&buf, &bytesLeft); in readKTXFile() 219 fHeader.fGLBaseInternalFormat = this->readInt(&buf, &bytesLeft); in readKTXFile() 220 fHeader.fPixelWidth = this->readInt(&buf, &bytesLeft); in readKTXFile() 221 fHeader.fPixelHeight = this->readInt(&buf, &bytesLeft); in readKTXFile() 222 fHeader.fPixelDepth = this->readInt(&buf, &bytesLeft); in readKTXFile() [all …]
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
D | Spdy3.java | 133 w1 = source.readInt(); in nextFrame() 134 w2 = source.readInt(); in nextFrame() 197 int w1 = source.readInt(); in readSynStream() 198 int w2 = source.readInt(); in readSynStream() 213 int w1 = source.readInt(); in readSynReply() 222 int streamId = source.readInt() & 0x7fffffff; in readRstStream() 223 int errorCodeInt = source.readInt(); in readRstStream() 232 int w1 = source.readInt(); in readHeaders() 240 int w1 = source.readInt(); in readWindowUpdate() 241 int w2 = source.readInt(); in readWindowUpdate() [all …]
|
D | Http20Draft09.java | 98 w1 = source.readInt(); in nextFrame() 99 w2 = source.readInt(); in nextFrame() 163 priority = source.readInt() & 0x7fffffff; in readHeaders() 197 int w1 = source.readInt(); in readPriority() 207 int errorCodeInt = source.readInt(); in readRstStream() 227 int w1 = source.readInt(); in readSettings() 228 int value = source.readInt(); in readSettings() 244 int promisedStreamId = source.readInt() & 0x7fffffff; in readPushPromise() 254 int payload1 = source.readInt(); in readPing() 255 int payload2 = source.readInt(); in readPing() [all …]
|
/external/skia/src/core/ |
D | SkReadBuffer.cpp | 94 return fReader.readInt(); in readColor() 101 int32_t SkReadBuffer::readInt() { in readInt() function in SkReadBuffer 102 return fReader.readInt(); in readInt() 114 return fReader.readInt(); in read32() 124 SkDEBUGCODE(int32_t encodingType = ) fReader.readInt(); in readEncodedString() 126 *length = fReader.readInt(); in readEncodedString() 195 const int width = this->readInt(); in readBitmap() 196 const int height = this->readInt(); in readBitmap() 226 const int32_t xOffset = this->readInt(); in readBitmap() 227 const int32_t yOffset = this->readInt(); in readBitmap()
|
D | SkValidatingReadBuffer.cpp | 59 uint32_t value = this->readInt(); in readBool() 66 return this->readInt(); in readColor() 70 return this->readInt(); in readFixed() 73 int32_t SkValidatingReadBuffer::readInt() { in readInt() function in SkValidatingReadBuffer 76 return fError ? 0 : fReader.readInt(); in readInt() 86 return this->readInt(); in readUInt() 90 return this->readInt(); in read32() 110 const int32_t encodingType = this->readInt(); in readEncodedString() 112 *length = this->readInt(); in readEncodedString()
|
/external/skia/include/core/ |
D | SkReader32.h | 53 bool readBool() { return this->readInt() != 0; } in readBool() 55 int32_t readInt() { in readInt() function 104 uint8_t readU8() { return (uint8_t)this->readInt(); } in readU8() 105 uint16_t readU16() { return (uint16_t)this->readInt(); } in readU16() 106 int32_t readS32() { return this->readInt(); } in readS32() 107 uint32_t readU32() { return this->readInt(); } in readU32()
|
/external/guava/guava-gwt/src/com/google/common/collect/ |
D | Multiset_CustomFieldSerializerBase.java | 37 int distinctElements = reader.readInt(); in instantiate() 40 int count = reader.readInt(); in instantiate() 49 int distinctElements = reader.readInt(); in populate() 52 int count = reader.readInt(); in populate()
|
D | Multimap_CustomFieldSerializerBase.java | 41 int keyCount = reader.readInt(); in instantiate() 44 int valueCount = reader.readInt(); in instantiate() 56 int keyCount = reader.readInt(); in populate() 59 int valueCount = reader.readInt(); in populate()
|
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/prefixmapper/ |
D | FlyweightMapStorage.java | 113 prefixSizeInBytes = objectInput.readInt(); in readExternal() 114 descIndexSizeInBytes = objectInput.readInt(); in readExternal() 117 int sizeOfLengths = objectInput.readInt(); in readExternal() 120 possibleLengths.add(objectInput.readInt()); in readExternal() 124 int descriptionPoolSize = objectInput.readInt(); in readExternal() 141 numOfEntries = objectInput.readInt(); in readEntries() 205 outputBuffer.putInt(wordIndex, objectInput.readInt()); in readExternalWord()
|
D | DefaultMapStorage.java | 63 numOfEntries = objectInput.readInt(); in readExternal() 71 phoneNumberPrefixes[i] = objectInput.readInt(); in readExternal() 74 int sizeOfLengths = objectInput.readInt(); in readExternal() 77 possibleLengths.add(objectInput.readInt()); in readExternal()
|
/external/proguard/src/proguard/classfile/instruction/ |
D | LookUpSwitchInstruction.java | 89 defaultOffset = readInt(code, offset); offset += 4; in readInfo() 90 int jumpOffsetCount = readInt(code, offset); offset += 4; in readInfo() 98 cases[index] = readInt(code, offset); offset += 4; in readInfo() 99 jumpOffsets[index] = readInt(code, offset); offset += 4; in readInfo()
|
D | TableSwitchInstruction.java | 93 defaultOffset = readInt(code, offset); offset += 4; in readInfo() 94 lowCase = readInt(code, offset); offset += 4; in readInfo() 95 highCase = readInt(code, offset); offset += 4; in readInfo() 102 jumpOffsets[index] = readInt(code, offset); offset += 4; in readInfo()
|
/external/guava/guava/src/com/google/common/collect/ |
D | Serialization.java | 50 return stream.readInt(); in readCount() 76 int size = stream.readInt(); in populateMap() 121 int distinctElements = stream.readInt(); in populateMultiset() 136 int count = stream.readInt(); in populateMultiset() 170 int distinctKeys = stream.readInt(); in populateMultimap() 186 int valueCount = stream.readInt(); in populateMultimap()
|
/external/chromium_org/third_party/angle/src/libGLESv2/ |
D | ProgramBinary.cpp | 1090 GLenum format = stream.readInt<GLenum>(); in load() 1097 int majorVersion = stream.readInt<int>(); in load() 1098 int minorVersion = stream.readInt<int>(); in load() 1113 int compileFlags = stream.readInt<int>(); in load() 1122 stream.readInt(&mLinkedAttribute[i].type); in load() 1124 stream.readInt(&mShaderAttributes[i].type); in load() 1126 stream.readInt(&mSemanticIndex[i]); in load() 1131 const unsigned int psSamplerCount = stream.readInt<unsigned int>(); in load() 1136 stream.readInt(&sampler.logicalTextureUnit); in load() 1137 stream.readInt(&sampler.textureType); in load() [all …]
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/dexbacked/ |
D | BaseDexBufferTest.java | 163 Assert.assertEquals(0x44332211, dexBuf.readInt(0)); in testReadInt() 166 Assert.assertEquals(0, dexBuf.readInt(0)); in testReadInt() 169 Assert.assertEquals(Integer.MAX_VALUE, dexBuf.readInt(0)); in testReadInt() 172 Assert.assertEquals(Integer.MIN_VALUE, dexBuf.readInt(0)); in testReadInt() 175 Assert.assertEquals(0x80ffffff, dexBuf.readInt(0)); in testReadInt() 178 Assert.assertEquals(-1, dexBuf.readInt(0)); in testReadInt() 235 Assert.assertEquals(val, dexBuf.readInt(0)); in testReadRandom()
|