Searched defs:readByte (Results 1 - 25 of 42) sorted by relevance

12

/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteInput.java29 byte readByte(); method in interface:ByteInput
H A DByteArrayByteInput.java28 @Override public byte readByte() { method in class:ByteArrayByteInput
/external/llvm/lib/Support/
H A DStringRefMemoryObject.cpp14 int StringRefMemoryObject::readByte(uint64_t Addr, uint8_t *Byte) const { function in class:StringRefMemoryObject
H A 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 { function in class:__anon21304::RawMemoryObject
103 int StreamingMemoryObject::readByte(uint64_t address, uint8_t* ptr) const { function in class:llvm::StreamingMemoryObject
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
H A DSimpleDERReader.java45 private byte readByte() throws IOException method in class:SimpleDERReader
75 int len = readByte() & 0xff;
90 len = len | (readByte() & 0xff);
99 int type = readByte() & 0xff;
113 int type = readByte() & 0xff;
130 int type = readByte() & 0xff;
145 int type = readByte() & 0xff;
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
H A DTypesReader.java55 public int readByte() throws IOException method in class:TypesReader
/external/guava/guava/src/com/google/common/io/
H A DByteArrayDataInput.java36 @Override byte readByte(); method in interface:ByteArrayDataInput
H A DLittleEndianDataInputStream.java205 public byte readByte() throws IOException { method in class:LittleEndianDataInputStream
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/
H A DBitstreamReader.java76 throw new IllegalArgumentException("Can not readByte more then 64 bit");
97 * @see ua.org.jplayer.javcodec.h264.RBSPInputStream#readByte()
99 public int readByte() throws IOException { method in class:BitstreamReader
/external/proguard/src/proguard/classfile/io/
H A DRuntimeDataInput.java56 public byte readByte() method in class:RuntimeDataInput
60 return dataInput.readByte();
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DInput.java62 public byte readByte(); method in interface:Input
H A DByteArrayInput.java88 public byte readByte() { method in class:ByteArrayInput
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
H A DBlenderInputStream.java181 char pointerSizeSign = (char) this.readByte();
189 endianess = (char) this.readByte();
203 return this.readByte();
213 public int readByte() { method in class:BlenderInputStream
226 bytes[i] = (byte) this.readByte();
236 int part1 = this.readByte();
237 int part2 = this.readByte();
250 int part1 = this.readByte();
251 int part2 = this.readByte();
252 int part3 = this.readByte();
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DLittleEndien.java89 public byte readByte() throws IOException { method in class:LittleEndien
/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp42 int readByte(uint64_t Addr, uint8_t *Byte) const { function in class:__anon21749::VectorMemoryObject
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_debug.cpp159 int readByte(uint64_t addr, uint8_t *byte) const function in class:BufferMemoryObject
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder_libico.cpp35 #define readByte(buffer,begin) buffer[begin] macro
108 int width = readByte(buf, 6 + i*16);
109 int height = readByte(buf, 7 + i*16);
145 int w = readByte(buf, 6 + choice*16);
146 int h = readByte(buf, 7 + choice*16);
147 int colorCount = readByte(buf, 8 + choice*16);
148 //int reservedToo = readByte(buf, 9 + choice*16); //0
224 blue = readByte(buf, begin + 4*j);
225 green = readByte(buf, begin + 4*j + 1);
226 red = readByte(bu
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DDNSIncoming.java54 public int readByte() { method in class:DNSIncoming.MessageInputStream
/external/jmonkeyengine/engine/src/core/com/jme3/export/
H A DInputCapsule.java54 public byte readByte(String name, byte defVal) throws IOException; method in interface:InputCapsule
/external/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp137 int readByte(uint64_t Addr, uint8_t *Byte) const { function in class:__anon21263::DisasmMemoryObject
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_debug.cpp159 int readByte(uint64_t addr, uint8_t *byte) const function in class:BufferMemoryObject
/external/proguard/src/proguard/classfile/instruction/
H A DInstruction.java793 protected static int readByte(byte[] code, int offset) method in class:Instruction
817 case 1: return readByte( code, offset);
/external/skia/src/images/
H A DSkImageDecoder_libico.cpp34 #define readByte(buffer,begin) buffer[begin] macro
108 int width = readByte(buf, 6 + i*16);
109 int height = readByte(buf, 7 + i*16);
145 int w = readByte(buf, 6 + choice*16);
146 int h = readByte(buf, 7 + choice*16);
147 int colorCount = readByte(buf, 8 + choice*16);
148 //int reservedToo = readByte(buf, 9 + choice*16); //0
224 blue = readByte(buf, begin + 4*j);
225 green = readByte(buf, begin + 4*j + 1);
226 red = readByte(bu
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DDataInputStreamTest.java89 * @tests java.io.DataInputStream#readByte()
95 assertTrue("Incorrect byte read", dis.readByte() == (byte) 127);
470 public byte readByte() throws IOException { method in class:DataInputStreamTest.TestDataInputStream
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A 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; }

Completed in 1296 milliseconds

12