Home
last modified time | relevance | path

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

123

/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/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DSocksProxy.java115 int version = fromSource.readByte() & 0xff; in hello()
116 int methodCount = fromSource.readByte() & 0xff; in hello()
124 int candidateMethod = fromSource.readByte() & 0xff; in hello()
145 int version = fromSource.readByte() & 0xff; in acceptCommand()
147 int command = fromSource.readByte() & 0xff; in acceptCommand()
148 int reserved = fromSource.readByte() & 0xff; in acceptCommand()
151 int addressType = fromSource.readByte() & 0xff; in acceptCommand()
159 int domainNameLength = fromSource.readByte() & 0xff; in acceptCommand()
/external/autotest/client/common_lib/
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/okhttp/okio/okio/src/test/java/okio/
DGzipSourceTest.java160 assertEquals('a', gunzippedSource.readByte()); in gunzipExhaustsSource()
161 assertEquals('b', gunzippedSource.readByte()); in gunzipExhaustsSource()
162 assertEquals('c', gunzippedSource.readByte()); in gunzipExhaustsSource()
175 assertEquals('a', gunzippedSource.readByte()); in gunzipThrowsIfSourceIsNotExhausted()
176 assertEquals('b', gunzippedSource.readByte()); in gunzipThrowsIfSourceIsNotExhausted()
177 assertEquals('c', gunzippedSource.readByte()); in gunzipThrowsIfSourceIsNotExhausted()
179 gunzippedSource.readByte(); in gunzipThrowsIfSourceIsNotExhausted()
/external/conscrypt/platform/src/main/java/org/conscrypt/ct/
DSerialization.java44 int tag = readByte(input) & DER_TAG_MASK; in readDEROctetString()
138 result = (result << 8) | (readByte(input) & 0xFF); in readNumber()
158 result = (result << 8) | (readByte(input) & 0xFF); in readLong()
168 public static byte readByte(InputStream input) throws SerializationException { in readByte() method in Serialization
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
DHttp2.java134 byte type = (byte) (source.readByte() & 0xff); in nextFrame()
135 byte flags = (byte) (source.readByte() & 0xff); in nextFrame()
189 short padding = (flags & FLAG_PADDED) != 0 ? (short) (source.readByte() & 0xff) : 0; in readHeaders()
225 short padding = (flags & FLAG_PADDED) != 0 ? (short) (source.readByte() & 0xff) : 0; in readData()
243 int weight = (source.readByte() & 0xff) + 1; in readPriority()
314 short padding = (flags & FLAG_PADDED) != 0 ? (short) (source.readByte() & 0xff) : 0; in readPushPromise()
632 byte type = (byte) (source.readByte() & 0xff); in readContinuationHeader()
633 flags = (byte) (source.readByte() & 0xff); in readContinuationHeader()
761 return (source.readByte() & 0xff) << 16
762 | (source.readByte() & 0xff) << 8
[all …]
DHpack.java193 int b = source.readByte() & 0xff; in readHeaders()
317 private int readByte() throws IOException { in readByte() method in Hpack.Reader
318 return source.readByte() & 0xff; in readByte()
331 int b = readByte(); in readInt()
345 int firstByte = readByte(); in readByteString()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/data/
DCompactDataInput.java44 final int value = 0xFF & readByte(); in readVarInt()
63 buffer = readByte(); in readBooleanArray()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DDexBackedInstruction12x.java50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterA()
55 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterB()
DDexBackedInstruction11n.java50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterA()
55 return NibbleUtils.extractHighSignedNibble(dexFile.readByte(instructionStart + 1)); in getNarrowLiteral()
DDexBackedInstruction22t.java50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterA()
55 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterB()
DDexBackedInstruction22cs.java50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterA()
55 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterB()
DDexBackedInstruction22s.java50 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterA()
55 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterB()
DDexBackedInstruction22c.java52 return NibbleUtils.extractLowUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterA()
57 return NibbleUtils.extractHighUnsignedNibble(dexFile.readByte(instructionStart + 1)); in getRegisterB()
/external/guava/guava/src/com/google/common/io/
DGwtWorkarounds.java124 int readByte = read();
125 if (readByte == -1) {
128 b[off + dst] = (byte) readByte;
/external/proguard/src/proguard/classfile/io/
DRuntimeDataInput.java56 public byte readByte() in readByte() method in RuntimeDataInput
60 return dataInput.readByte(); in readByte()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DBaseDexReader.java269 public int readByte() { in readByte() method in BaseDexReader
271 int result = dexBuf.readByte(offset); in readByte()
285 public int readByte(int offset) { return dexBuf.readByte(offset); } in readByte() method in BaseDexReader
/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/proguard/src/proguard/classfile/instruction/
DInstruction.java1010 protected static int readByte(byte[] code, int offset) in readByte() method in Instruction
1034 case 1: return readByte( code, offset); in readValue()
/external/okhttp/okio/okio/src/main/java/okio/
DBuffer.java112 if (size > 0) return readByte() & 0xff;
272 @Override public byte readByte() {
312 int s = (readByte() & 0xff) << 8
313 | (readByte() & 0xff);
341 return (readByte() & 0xff) << 24
342 | (readByte() & 0xff) << 16
343 | (readByte() & 0xff) << 8
344 | (readByte() & 0xff);
437 if (!negative) buffer.readByte(); // Skip negative sign.
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
DPatchReader.java102 dataIn.readByte(), in readPatchApplyPlan()
125 dataIn.readByte(), in readPatchApplyPlan()
/external/r8/src/test/examples/shaking2/
DStaticFields.java17 public static byte readByte; field in StaticFields
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DMemoryObject.h45 virtual int readByte(uint64_t address, uint8_t* ptr) const = 0;
/external/swiftshader/third_party/LLVM/lib/Support/
DMemoryObject.cpp27 if (readByte(current, &buf[(current - address)])) in readBytes()

123