Searched refs:rawByte (Results 1 – 1 of 1) sorted by relevance
101 int rawByte = readUnsignedByte(); in readUleb128() local106 value |= ((rawByte & 0x7f) << shift); in readUleb128()110 if ((rawByte & 0x80) == 0) { in readUleb128()113 rawByte = readUnsignedByte(); in readUleb128()181 int rawByte = readUnsignedByte(); in readSleb128() local187 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 …]