Home
last modified time | relevance | path

Searched refs:readByte (Results 1 – 25 of 82) sorted by relevance

1234

/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
DDnaBlockData.java68 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()
DBlenderInputStream.java181 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 …]
DFileBlockHeader.java88 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/
DTGALoader.java225 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/
DSkImageDecoder_libico.cpp34 #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/
DSkImageDecoder_libico.cpp34 #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/
DSimpleDERReader.java45 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/
DSerializedGrammar.java101 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/
DMutf8.java36 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()
DLeb128Utils.java89 cur = in.readByte() & 0xff; in readSignedLeb128()
116 cur = in.readByte() & 0xff; in readUnsignedLeb128()
DByteInput.java29 byte readByte(); in readByte() method
DByteArrayByteInput.java28 @Override public byte readByte() { in readByte() method in ByteArrayByteInput
/external/llvm/lib/Support/
DStreamableMemoryObject.cpp31 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
DMemoryObject.cpp26 if (readByte(current, &buf[(current - address)])) in readBytes()
DStringRefMemoryObject.cpp14 int StringRefMemoryObject::readByte(uint64_t Addr, uint8_t *Byte) const { in readByte() function in StringRefMemoryObject
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
DSFTPv3Client.java392 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/
DRuntimeDataInput.java56 public byte readByte() in readByte() method in RuntimeDataInput
60 return dataInput.readByte(); in readByte()
/external/llvm/include/llvm/Support/
DStreamableMemoryObject.h57 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;
DMemoryObject.h45 virtual int readByte(uint64_t address, uint8_t *ptr) const = 0;
DStringRefMemoryObject.h35 int readByte(uint64_t Addr, uint8_t *Byte) const LLVM_OVERRIDE;
/external/guava/guava-tests/test/com/google/common/io/
DLittleEndianDataOutputStreamTest.java70 assertEquals(100, in.readByte()); in testWriteLittleEndian()
71 assertEquals(-100, in.readByte()); in testWriteLittleEndian()
DLittleEndianDataInputStreamTest.java114 assertEquals(100, in.readByte()); in testReadLittleEndian()
115 assertEquals(-100, in.readByte()); in testReadLittleEndian()
/external/chromium_org/third_party/WebKit/Tools/Scripts/
DVCSUtils.pm1989 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/
DInstruction.java793 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/
DInput.java62 public byte readByte(); in readByte() method

1234