Searched refs:readRawByte (Results 1 – 8 of 8) sorted by relevance
192 public byte readRawByte() { in readRawByte() method in EncodedBuffer214 final byte b = readRawByte(); in readRawUnsigned()230 return (readRawByte() & 0x0ff) in readRawFixed32()231 | ((readRawByte() & 0x0ff) << 8) in readRawFixed32()232 | ((readRawByte() & 0x0ff) << 16) in readRawFixed32()233 | ((readRawByte() & 0x0ff) << 24); in readRawFixed32()
2511 while ((mBuffer.readRawByte() & 0x80) != 0) { in editEncodedSize()2579 while ((mBuffer.readRawByte() & 0x80) != 0) { } in compactSizes()
219 EncodedBuffer::readRawByte() in readRawByte() function in android::util::EncodedBuffer232 uint8_t byte = readRawByte(); in readRawVarint()245 val += (uint32_t)readRawByte() << i; in readRawFixed32()255 val += (uint64_t)readRawByte() << i; in readRawFixed64()
373 } while ((mBuffer.readRawByte() & 0x80) != 0); in editEncodedSize()424 while ((mBuffer.readRawByte() & 0x80) != 0) {} in compactSize()
132 uint8_t readRawByte();
1075 method public byte readRawByte();
47075 Landroid/util/proto/EncodedBuffer;->readRawByte()B
6414 HPLandroid/util/proto/EncodedBuffer;->readRawByte()B