HomeSort by relevance Sort by last modified time
    Searched refs:readByte (Results 1 - 25 of 184) sorted by null

1 2 3 4 5 6 7 8

  /dalvik/dx/src/com/android/dx/util/
ByteInput.java 29 byte readByte();
ByteArrayByteInput.java 28 @Override public byte readByte() {
Mutf8.java 36 char a = (char) (in.readByte() & 0xff);
44 int b = in.readByte() & 0xff;
50 int b = in.readByte() & 0xff;
51 int c = in.readByte() & 0xff;
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteInput.java 29 byte readByte();
ByteArrayByteInput.java 28 @Override public byte readByte() {
Mutf8.java 36 char a = (char) (in.readByte() & 0xff);
44 int b = in.readByte() & 0xff;
50 int b = in.readByte() & 0xff;
51 int c = in.readByte() & 0xff;
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
DnaBlockData.java 68 identifier = inputStream.readByte() << 24 | inputStream.readByte() << 16
69 | inputStream.readByte() << 8 | inputStream.readByte();
76 identifier = inputStream.readByte() << 24 | inputStream.readByte() << 16
77 | inputStream.readByte() << 8 | inputStream.readByte();
92 identifier = inputStream.readByte() << 24 | inputStream.readByte() << 16
    [all...]
BlenderInputStream.java 181 char pointerSizeSign = (char) this.readByte();
189 endianess = (char) this.readByte();
203 return this.readByte();
213 public int readByte() {
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...]
FileBlockHeader.java 88 code = inputStream.readByte() << 24 | inputStream.readByte() << 16
89 | inputStream.readByte() << 8 | inputStream.readByte();
  /external/okhttp/src/main/java/libcore/io/
BufferIterator.java 45 public abstract byte readByte();
  /libcore/luni/src/main/java/libcore/io/
BufferIterator.java 45 public abstract byte readByte();
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
SimpleDERReader.java 45 private byte readByte() throws IOException
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;
  /dalvik/dx/tests/117-modified-utf8/com/android/dx/util/
Mutf8Test.java 28 assertEquals('A', in.readByte());
30 assertEquals('E', in.readByte());
  /external/llvm/include/llvm/Support/
MemoryObject.h 39 /// readByte - Tries to read a single byte from the region.
45 virtual int readByte(uint64_t address, uint8_t* ptr) const = 0;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
Input.java 62 public byte readByte();
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
TGALoader.java 225 data[1] = dis.readByte();
226 data[0] = dis.readByte();
250 // blue = dis.readByte();
251 // green = dis.readByte();
252 // red = dis.readByte();
265 blue = dis.readByte();
266 green = dis.readByte();
267 red = dis.readByte();
268 alpha = dis.readByte();
294 int count = dis.readByte();
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapResponseParser.java 128 private int readByte() throws IOException {
197 int b = readByte();
213 final int next = readByte();
227 final int ch = readByte();
261 readByte(); // skip +
276 readByte(); // skip *
290 readByte(); // skip ' '
299 readByte();
338 readByte(); // Skip "
343 readByte(); // Consume \
    [all...]
  /external/llvm/lib/Support/
MemoryObject.cpp 27 if (readByte(current, &buf[(current - address)]))
  /libcore/luni/src/main/java/java/io/
DataInput.java 71 public abstract byte readByte() throws IOException;
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pInfo.java 84 info.groupFormed = (in.readByte() == 1);
85 info.isGroupOwner = (in.readByte() == 1);
86 if (in.readByte() == 1) {
  /external/skia/src/images/
SkImageDecoder_libico.cpp 37 #define readByte(buffer,begin) buffer[begin]
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(buf, begin + 4*j + 2)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
SerializedGrammar.java 101 int version = in.readByte();
102 char grammarType = (char)in.readByte();
122 byte R = in.readByte();
126 byte B = in.readByte();
128 byte period = in.readByte();
147 byte A = in.readByte();
149 byte cmd = in.readByte();
176 cmd = in.readByte();
183 byte c = in.readByte();
187 c = in.readByte();
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketNewKeys.java 30 int packet_type = tr.readByte();
  /external/guava/guava/src/com/google/common/io/
ByteArrayDataInput.java 36 @Override byte readByte();
  /external/llvm/tools/llvm-objdump/
llvm-objdump.h 36 int readByte(uint64_t Addr, uint8_t *Byte) const {

Completed in 729 milliseconds

1 2 3 4 5 6 7 8