/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
D | DnaBlockData.java | 68 identifier = inputStream.readByte() << 24 | inputStream.readByte() << 16 in DnaBlockData() 69 | inputStream.readByte() << 8 | inputStream.readByte(); in DnaBlockData() 76 identifier = inputStream.readByte() << 24 | inputStream.readByte() << 16 in DnaBlockData() 77 | inputStream.readByte() << 8 | inputStream.readByte(); in DnaBlockData() 92 identifier = inputStream.readByte() << 24 | inputStream.readByte() << 16 in DnaBlockData() 93 | inputStream.readByte() << 8 | inputStream.readByte(); in DnaBlockData() 108 identifier = inputStream.readByte() << 24 | inputStream.readByte() << 16 in DnaBlockData() 109 | inputStream.readByte() << 8 | inputStream.readByte(); in DnaBlockData() 120 identifier = inputStream.readByte() << 24 | inputStream.readByte() << 16 in DnaBlockData() 121 | inputStream.readByte() << 8 | inputStream.readByte(); in DnaBlockData()
|
D | BlenderInputStream.java | 181 char pointerSizeSign = (char) this.readByte(); in readFileHeader() 189 endianess = (char) this.readByte(); in readFileHeader() 203 return this.readByte(); in read() 213 public int readByte() { in readByte() method in BlenderInputStream 226 bytes[i] = (byte) this.readByte(); in readBytes() 236 int part1 = this.readByte(); in readShort() 237 int part2 = this.readByte(); in readShort() 250 int part1 = this.readByte(); in readInt() 251 int part2 = this.readByte(); in readInt() 252 int part3 = this.readByte(); in readInt() [all …]
|
D | FileBlockHeader.java | 88 code = inputStream.readByte() << 24 | inputStream.readByte() << 16 in FileBlockHeader() 89 | inputStream.readByte() << 8 | inputStream.readByte(); in FileBlockHeader()
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/ |
D | TGALoader.java | 225 data[1] = dis.readByte(); in load() 226 data[0] = dis.readByte(); in load() 265 blue = dis.readByte(); in load() 266 green = dis.readByte(); in load() 267 red = dis.readByte(); in load() 268 alpha = dis.readByte(); in load() 294 int count = dis.readByte(); in load() 299 blue = dis.readByte(); in load() 300 green = dis.readByte(); in load() 301 red = dis.readByte(); in load() [all …]
|
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
D | UBJsonReader.java | 62 return parse(din, din.readByte()); in parse() 84 return new JsonValue(oldFormat ? (long)din.readShort() : (long)din.readByte()); in parse() 107 byte type = din.readByte(); in parseArray() 110 valueType = din.readByte(); in parseArray() 111 type = din.readByte(); in parseArray() 118 type = valueType == 0 ? din.readByte() : valueType; in parseArray() 135 type = valueType == 0 ? din.readByte() : valueType; in parseArray() 142 byte type = din.readByte(); in parseObject() 145 valueType = din.readByte(); in parseObject() 146 type = din.readByte(); in parseObject() [all …]
|
/external/skia/src/images/ |
D | SkImageDecoder_libico.cpp | 35 #define readByte(buffer,begin) buffer[begin] macro 116 int w = readByte(buf, 6); in onDecode() 117 int h = readByte(buf, 7); in onDecode() 119 int colorCount = readByte(buf, 8); in onDecode() 228 blue = readByte(buf, begin + 4*j); in onDecode() 229 green = readByte(buf, begin + 4*j + 1); in onDecode() 230 red = readByte(buf, begin + 4*j + 2); in onDecode() 318 int alphaByte = readByte(buf, andOffset + (andPixelNo >> 3)); in onDecode() 342 int byte = readByte(buf, xorOffset + (pixelNo >> 3)); in editPixelBit1() 370 int byte = readByte(buf, xorOffset + (pixelNo >> 1)); in editPixelBit4() [all …]
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
D | SerializedGrammar.java | 101 int version = in.readByte(); in readFile() 102 char grammarType = (char)in.readByte(); in readFile() 122 byte R = in.readByte(); in readRule() 126 byte B = in.readByte(); in readRule() 128 byte period = in.readByte(); in readRule() 147 byte A = in.readByte(); in readAlt() 149 byte cmd = in.readByte(); in readAlt() 176 cmd = in.readByte(); in readAlt() 183 byte c = in.readByte(); in readString() 187 c = in.readByte(); in readString()
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
D | SocksProxy.java | 113 int version = fromSource.readByte() & 0xff; in hello() 114 int methodCount = fromSource.readByte() & 0xff; in hello() 122 int candidateMethod = fromSource.readByte() & 0xff; in hello() 143 int version = fromSource.readByte() & 0xff; in acceptCommand() 145 int command = fromSource.readByte() & 0xff; in acceptCommand() 146 int reserved = fromSource.readByte() & 0xff; in acceptCommand() 149 int addressType = fromSource.readByte() & 0xff; in acceptCommand() 157 int domainNameLength = fromSource.readByte() & 0xff; in acceptCommand()
|
/external/autotest/client/common_lib/ |
D | smogcheck_pca9555.py | 97 byte_read = self.readByte(PCA_REG['OUT0']) 145 if PCA_BIT_ONE[key] & self.readByte(PCA_REG['OUT0']): 192 byte_read = self.readByte(PCA_REG['OUT1']) 216 byte_read = self.readByte(PCA_REG['IN1']) 242 byte_read = self.readByte(PCA_REG['OUT1'])
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
D | Mutf8.java | 36 char a = (char) (in.readByte() & 0xff); in decode() 44 int b = in.readByte() & 0xff; in decode() 50 int b = in.readByte() & 0xff; in decode() 51 int c = in.readByte() & 0xff; in decode()
|
D | Leb128Utils.java | 89 cur = in.readByte() & 0xff; in readSignedLeb128() 116 cur = in.readByte() & 0xff; in readUnsignedLeb128()
|
/external/okhttp/okio/okio/src/test/java/okio/ |
D | GzipSourceTest.java | 160 assertEquals('a', gunzippedSource.readByte()); in gunzipExhaustsSource() 161 assertEquals('b', gunzippedSource.readByte()); in gunzipExhaustsSource() 162 assertEquals('c', gunzippedSource.readByte()); in gunzipExhaustsSource() 175 assertEquals('a', gunzippedSource.readByte()); in gunzipThrowsIfSourceIsNotExhausted() 176 assertEquals('b', gunzippedSource.readByte()); in gunzipThrowsIfSourceIsNotExhausted() 177 assertEquals('c', gunzippedSource.readByte()); in gunzipThrowsIfSourceIsNotExhausted() 179 gunzippedSource.readByte(); in gunzipThrowsIfSourceIsNotExhausted()
|
/external/conscrypt/src/main/java/org/conscrypt/ct/ |
D | Serialization.java | 39 int tag = readByte(input) & DER_TAG_MASK; in readDEROctetString() 133 result = (result << 8) | (readByte(input) & 0xFF); in readNumber() 153 result = (result << 8) | (readByte(input) & 0xFF); in readLong() 163 public static byte readByte(InputStream input) throws SerializationException { in readByte() method in Serialization
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/ |
D | DataInputCompressor.java | 47 public byte readByte() throws IOException { in readByte() method in DataInputCompressor 48 return dataInput.readByte(); in readByte() 147 long input = readByte(); in readLong() 166 int input = readByte(); in readULong()
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
D | DataInputCompressor.java | 46 public byte readByte() throws IOException { in readByte() method in DataInputCompressor 47 return dataInput.readByte(); in readByte() 146 long input = readByte(); in readLong() 165 int input = readByte(); in readULong()
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/data/ |
D | CompactDataInput.java | 44 final int value = 0xFF & readByte(); in readVarInt() 63 buffer = readByte(); in readBooleanArray()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/ |
D | Http2.java | 134 byte type = (byte) (source.readByte() & 0xff); in nextFrame() 135 byte flags = (byte) (source.readByte() & 0xff); in nextFrame() 189 short padding = (flags & FLAG_PADDED) != 0 ? (short) (source.readByte() & 0xff) : 0; in readHeaders() 225 short padding = (flags & FLAG_PADDED) != 0 ? (short) (source.readByte() & 0xff) : 0; in readData() 243 int weight = (source.readByte() & 0xff) + 1; in readPriority() 314 short padding = (flags & FLAG_PADDED) != 0 ? (short) (source.readByte() & 0xff) : 0; in readPushPromise() 632 byte type = (byte) (source.readByte() & 0xff); in readContinuationHeader() 633 flags = (byte) (source.readByte() & 0xff); in readContinuationHeader() 761 return (source.readByte() & 0xff) << 16 762 | (source.readByte() & 0xff) << 8 [all …]
|
D | Hpack.java | 193 int b = source.readByte() & 0xff; in readHeaders() 317 private int readByte() throws IOException { in readByte() method in Hpack.Reader 318 return source.readByte() & 0xff; in readByte() 331 int b = readByte(); in readInt() 345 int firstByte = readByte(); in readByteString()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/ |
D | DexBackedInstruction11n.java | 50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterA() 55 return NibbleUtils.extractHighSignedNibble(dexFile.readByte(instructionStart + 1)); in getNarrowLiteral()
|
D | DexBackedInstruction12x.java | 50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterA() 55 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterB()
|
D | DexBackedInstruction22cs.java | 50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterA() 55 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterB()
|
D | DexBackedInstruction22t.java | 50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterA() 55 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterB()
|
D | DexBackedInstruction22s.java | 50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterA() 55 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterB()
|
D | DexBackedInstruction22c.java | 52 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterA() 57 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterB()
|
/external/guava/guava/src/com/google/common/io/ |
D | GwtWorkarounds.java | 124 int readByte = read(); 125 if (readByte == -1) { 128 b[off + dst] = (byte) readByte;
|