Searched refs:readByte (Results 1 - 25 of 135) sorted by relevance

123456

/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
H A DMutf8.java36 char a = (char) (in.readByte() & 0xff);
44 int b = in.readByte() & 0xff;
50 int b = in.readByte() & 0xff;
51 int c = in.readByte() & 0xff;
H A DLeb128Utils.java89 cur = in.readByte() & 0xff;
116 cur = in.readByte() & 0xff;
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
H A DUBJsonReader.java62 return parse(din, din.readByte());
84 return new JsonValue(oldFormat ? (long)din.readShort() : (long)din.readByte());
107 byte type = din.readByte();
110 valueType = din.readByte();
111 type = din.readByte();
118 type = valueType == 0 ? din.readByte() : valueType;
135 type = valueType == 0 ? din.readByte() : valueType;
142 byte type = din.readByte();
145 valueType = din.readByte();
146 type = din.readByte();
[all...]
H A DLittleEndianInputStream.java52 public byte readByte () throws IOException { method in class:LittleEndianInputStream
53 return din.readByte();
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/data/
H A DCompactDataInput.java44 final int value = 0xFF & readByte();
63 buffer = readByte();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
H A DDexBackedInstruction12x.java50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1));
55 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1));
H A DDexBackedInstruction11n.java50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1));
55 return NibbleUtils.extractHighSignedNibble(dexFile.readByte(instructionStart + 1));
H A DDexBackedInstruction22cs.java50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1));
55 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1));
H A DDexBackedInstruction22s.java50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1));
55 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1));
H A DDexBackedInstruction22t.java50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1));
55 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1));
H A DDexBackedInstruction10t.java47 @Override public int getCodeOffset() { return dexFile.readByte(instructionStart + 1); }
H A DDexBackedInstruction22b.java49 @Override public int getNarrowLiteral() { return dexFile.readByte(instructionStart + 3); }
H A DDexBackedInstruction22c.java52 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1));
57 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1));
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/io/
H A DDataInput.java22 public byte readByte () throws IOException; method in interface:DataInput
/external/autotest/client/common_lib/
H A Dsmogcheck_pca9555.py97 byte_read = self.readByte(PCA_REG['OUT0'])
145 if PCA_BIT_ONE[key] & self.readByte(PCA_REG['OUT0']):
192 byte_read = self.readByte(PCA_REG['OUT1'])
216 byte_read = self.readByte(PCA_REG['IN1'])
242 byte_read = self.readByte(PCA_REG['OUT1'])
/external/skia/src/images/
H A DSkImageDecoder_libico.cpp35 #define readByte(buffer,begin) buffer[begin] macro
116 int w = readByte(buf, 6);
117 int h = readByte(buf, 7);
119 int colorCount = readByte(buf, 8);
120 //int reservedToo = readByte(buf, 9 + choice*16); //0
228 blue = readByte(buf, begin + 4*j);
229 green = readByte(buf, begin + 4*j + 1);
230 red = readByte(buf, begin + 4*j + 2);
318 int alphaByte = readByte(buf, andOffset + (andPixelNo >> 3));
342 int byte = readByte(bu
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DSerializedGrammar.java101 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/guava/guava/src/com/google/common/io/
H A DByteArrayDataInput.java44 @Override byte readByte(); method in interface:ByteArrayDataInput
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DSocksProxy.java113 int version = fromSource.readByte() & 0xff;
114 int methodCount = fromSource.readByte() & 0xff;
122 int candidateMethod = fromSource.readByte() & 0xff;
143 int version = fromSource.readByte() & 0xff;
145 int command = fromSource.readByte() & 0xff;
146 int reserved = fromSource.readByte() & 0xff;
149 int addressType = fromSource.readByte() & 0xff;
157 int domainNameLength = fromSource.readByte() & 0xff;
/external/okhttp/okio/okio/src/test/java/okio/
H A DGzipSourceTest.java160 assertEquals('a', gunzippedSource.readByte());
161 assertEquals('b', gunzippedSource.readByte());
162 assertEquals('c', gunzippedSource.readByte());
175 assertEquals('a', gunzippedSource.readByte());
176 assertEquals('b', gunzippedSource.readByte());
177 assertEquals('c', gunzippedSource.readByte());
179 gunzippedSource.readByte();
/external/conscrypt/src/main/java/org/conscrypt/ct/
H A DSerialization.java39 int tag = readByte(input) & DER_TAG_MASK;
133 result = (result << 8) | (readByte(input) & 0xFF);
153 result = (result << 8) | (readByte(input) & 0xFF);
163 public static byte readByte(InputStream input) throws SerializationException { method in class:Serialization
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DDataInputCompressor.java47 public byte readByte() throws IOException { method in class:DataInputCompressor
48 return dataInput.readByte();
147 long input = readByte();
166 int input = readByte();
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/gwt/
H A DGwtBinaryTest.java37 bytes[i] = in.readByte();

Completed in 1760 milliseconds

123456