Searched refs:currentByteValue (Results 1 – 1 of 1) sorted by relevance
53 int currentByteValue; in readSleb128() local61 currentByteValue = buf[end++] & 0xff; in readSleb128()62 result = (result & 0x7f) | ((currentByteValue & 0x7f) << 7); in readSleb128()63 if (currentByteValue <= 0x7f) { in readSleb128()66 currentByteValue = buf[end++] & 0xff; in readSleb128()67 result |= (currentByteValue & 0x7f) << 14; in readSleb128()68 if (currentByteValue <= 0x7f) { in readSleb128()71 currentByteValue = buf[end++] & 0xff; in readSleb128()72 result |= (currentByteValue & 0x7f) << 21; in readSleb128()73 if (currentByteValue <= 0x7f) { in readSleb128()[all …]