/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/skia/src/images/ |
D | SkImageDecoder_libico.cpp | 34 #define readByte(buffer,begin) buffer[begin] macro 108 int width = readByte(buf, 6 + i*16); in onDecode() 109 int height = readByte(buf, 7 + i*16); in onDecode() 145 int w = readByte(buf, 6 + choice*16); in onDecode() 146 int h = readByte(buf, 7 + choice*16); in onDecode() 147 int colorCount = readByte(buf, 8 + choice*16); in onDecode() 224 blue = readByte(buf, begin + 4*j); in onDecode() 225 green = readByte(buf, begin + 4*j + 1); in onDecode() 226 red = readByte(buf, begin + 4*j + 2); in onDecode() 275 int alphaByte = readByte(buf, andOffset + (andPixelNo >> 3)); in onDecode() [all …]
|
/external/chromium_org/third_party/skia/src/images/ |
D | SkImageDecoder_libico.cpp | 34 #define readByte(buffer,begin) buffer[begin] macro 108 int width = readByte(buf, 6 + i*16); in onDecode() 109 int height = readByte(buf, 7 + i*16); in onDecode() 145 int w = readByte(buf, 6 + choice*16); in onDecode() 146 int h = readByte(buf, 7 + choice*16); in onDecode() 147 int colorCount = readByte(buf, 8 + choice*16); in onDecode() 224 blue = readByte(buf, begin + 4*j); in onDecode() 225 green = readByte(buf, begin + 4*j + 1); in onDecode() 226 red = readByte(buf, begin + 4*j + 2); in onDecode() 275 int alphaByte = readByte(buf, andOffset + (andPixelNo >> 3)); in onDecode() [all …]
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/ |
D | SimpleDERReader.java | 45 private byte readByte() throws IOException in readByte() method in SimpleDERReader 75 int len = readByte() & 0xff; in readLength() 90 len = len | (readByte() & 0xff); in readLength() 99 int type = readByte() & 0xff; in ignoreNextObject() 113 int type = readByte() & 0xff; in readInt() 130 int type = readByte() & 0xff; in readSequenceAsByteArray() 145 int type = readByte() & 0xff; in readOctetString()
|
/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/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()
|
D | ByteInput.java | 29 byte readByte(); in readByte() method
|
D | ByteArrayByteInput.java | 28 @Override public byte readByte() { in readByte() method in ByteArrayByteInput
|
/external/llvm/lib/Support/ |
D | StreamableMemoryObject.cpp | 31 virtual int readByte(uint64_t address, uint8_t* ptr) const LLVM_OVERRIDE; 61 int RawMemoryObject::readByte(uint64_t address, uint8_t* ptr) const { in readByte() function in __anon46bbb5380111::RawMemoryObject 103 int StreamingMemoryObject::readByte(uint64_t address, uint8_t* ptr) const { in readByte() function in llvm::StreamingMemoryObject
|
D | MemoryObject.cpp | 26 if (readByte(current, &buf[(current - address)])) in readBytes()
|
D | StringRefMemoryObject.cpp | 14 int StringRefMemoryObject::readByte(uint64_t Addr, uint8_t *Byte) const { in readByte() function in StringRefMemoryObject
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
D | SFTPv3Client.java | 392 int t = tr.readByte(); in fstat() 431 int t = tr.readByte(); in statBoth() 507 int t = tr.readByte(); in readLink() 545 int t = tr.readByte(); in expectStatusOKMessage() 667 int t = tr.readByte(); in canonicalPath() 719 int t = tr.readByte(); in scanDirectory() 781 int t = tr.readByte(); in openDirectory() 844 int t = tr.readByte(); in init() 1227 int t = tr.readByte(); in openFile() 1391 int t = tr.readByte(); in read() [all …]
|
/external/proguard/src/proguard/classfile/io/ |
D | RuntimeDataInput.java | 56 public byte readByte() in readByte() method in RuntimeDataInput 60 return dataInput.readByte(); in readByte()
|
/external/llvm/include/llvm/Support/ |
D | StreamableMemoryObject.h | 57 virtual int readByte(uint64_t address, uint8_t *ptr) const LLVM_OVERRIDE = 0; 110 virtual int readByte(uint64_t address, uint8_t *ptr) const LLVM_OVERRIDE;
|
D | MemoryObject.h | 45 virtual int readByte(uint64_t address, uint8_t *ptr) const = 0;
|
D | StringRefMemoryObject.h | 35 int readByte(uint64_t Addr, uint8_t *Byte) const LLVM_OVERRIDE;
|
/external/guava/guava-tests/test/com/google/common/io/ |
D | LittleEndianDataOutputStreamTest.java | 70 assertEquals(100, in.readByte()); in testWriteLittleEndian() 71 assertEquals(-100, in.readByte()); in testWriteLittleEndian()
|
D | LittleEndianDataInputStreamTest.java | 114 assertEquals(100, in.readByte()); in testReadLittleEndian() 115 assertEquals(-100, in.readByte()); in testReadLittleEndian()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
D | VCSUtils.pm | 1989 sub readByte($$) subroutine 2015 $cmd = readByte($binaryChunk, $i++); 2052 if ($cmd & 0x01) { $offset = readByte($binaryChunk, $i++); } 2053 if ($cmd & 0x02) { $offset |= readByte($binaryChunk, $i++) << 8; } 2054 if ($cmd & 0x04) { $offset |= readByte($binaryChunk, $i++) << 16; } 2055 if ($cmd & 0x08) { $offset |= readByte($binaryChunk, $i++) << 24; } 2056 if ($cmd & 0x10) { $size = readByte($binaryChunk, $i++); } 2057 if ($cmd & 0x20) { $size |= readByte($binaryChunk, $i++) << 8; } 2058 if ($cmd & 0x40) { $size |= readByte($binaryChunk, $i++) << 16; }
|
/external/proguard/src/proguard/classfile/instruction/ |
D | Instruction.java | 793 protected static int readByte(byte[] code, int offset) in readByte() method in Instruction 817 case 1: return readByte( code, offset); in readValue()
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
D | Input.java | 62 public byte readByte(); in readByte() method
|