Searched refs:lengthByte1 (Results 1 – 1 of 1) sorted by relevance
169 Byte lengthByte1 = buffer.get(); in readVarLength() local170 if ((lengthByte1 & 0x80) != 0) { in readVarLength()172 length = (short) ((length << 7) + (lengthByte1 & 0x7F)); in readVarLength()174 length = lengthByte1; in readVarLength()