Home
last modified time | relevance | path

Searched refs:rawByte (Results 1 – 1 of 1) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/rawdex/
DDexRandomAccessFile.java101 int rawByte = readUnsignedByte(); in readUleb128() local
106 value |= ((rawByte & 0x7f) << shift); in readUleb128()
110 if ((rawByte & 0x80) == 0) { in readUleb128()
113 rawByte = readUnsignedByte(); in readUleb128()
181 int rawByte = readUnsignedByte(); in readSleb128() local
187 value |= ((rawByte & 0x7f) << shift); in readSleb128()
191 if ((rawByte & 0x80) == 0) { in readSleb128()
193 if ((rawByte & 0x60) != 0) { in readSleb128()
198 rawByte = readUnsignedByte(); in readSleb128()
266 byte rawByte = readByte(); in readDexUtf()
[all …]