Searched defs:readByte (Results 1 - 25 of 31) 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/tools/llvm-objdump/
H A Dllvm-objdump.h36 int readByte(uint64_t Addr, uint8_t *Byte) const { function in class:llvm::StringRefMemoryObject
/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
H A DByteStreams.java323 @Override public byte readByte() { method in class:ByteStreams.ByteArrayDataInputStream
325 return input.readByte();
/external/llvm/lib/Support/
H A DStreamableMemoryObject.cpp28 virtual int readByte(uint64_t address, uint8_t* ptr) const;
56 int RawMemoryObject::readByte(uint64_t address, uint8_t* ptr) const { function in class:__anon7506::RawMemoryObject
100 int StreamingMemoryObject::readByte(uint64_t address, uint8_t* ptr) const { function in class:llvm::StreamingMemoryObject
/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/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.cpp123 int readByte(uint64_t Addr, uint8_t *Byte) const { function in class:__anon7464::DisasmMemoryObject
H A DEDDisassembler.cpp210 int readByte(uint64_t address, uint8_t *ptr) const { function in class:__anon7465::EDMemoryObject
/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp46 int readByte(uint64_t Addr, uint8_t *Byte) const { function in class:__anon7889::VectorMemoryObject
/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.cpp37 #define readByte(buffer,begin) buffer[begin] macro
110 int width = readByte(buf, 6 + i*16);
111 int height = readByte(buf, 7 + i*16);
147 int w = readByte(buf, 6 + choice*16);
148 int h = readByte(buf, 7 + choice*16);
149 int colorCount = readByte(buf, 8 + choice*16);
150 //int reservedToo = readByte(buf, 9 + choice*16); //0
212 blue = readByte(buf, begin + 4*j);
213 green = readByte(buf, begin + 4*j + 1);
214 red = readByte(bu
[all...]
/external/webkit/Tools/Scripts/
H A DVCSUtils.pm1846 sub readByte($$) subroutine
1872 $cmd = readByte($binaryChunk, $i++);
1909 if ($cmd & 0x01) { $offset = readByte($binaryChunk, $i++); }
1910 if ($cmd & 0x02) { $offset |= readByte($binaryChunk, $i++) << 8; }
1911 if ($cmd & 0x04) { $offset |= readByte($binaryChunk, $i++) << 16; }
1912 if ($cmd & 0x08) { $offset |= readByte($binaryChunk, $i++) << 24; }
1913 if ($cmd & 0x10) { $size = readByte($binaryChunk, $i++); }
1914 if ($cmd & 0x20) { $size |= readByte($binaryChunk, $i++) << 8; }
1915 if ($cmd & 0x40) { $size |= readByte($binaryChunk, $i++) << 16; }
/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/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
H A DDOMInputCapsule.java125 public byte readByte(String name, byte defVal) throws IOException { method in class:DOMInputCapsule
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
H A DBinaryInputCapsule.java103 value = readByte(content);
296 public byte readByte(String name, byte defVal) throws IOException { method in class:BinaryInputCapsule
748 protected byte readByte(byte[] content) throws IOException { method in class:BinaryInputCapsule
766 value[x] = readByte(content);

Completed in 427 milliseconds

12