Searched refs:thirdByte (Results 1 – 9 of 9) sorted by relevance
334 int thirdByte = 0; in nextChar() local375 thirdByte = it.nextByte(det); in nextChar()376 it.charValue = (it.charValue << 8) | thirdByte; in nextChar()377 if (thirdByte < 0xa1) { in nextChar()480 int thirdByte = 0; in nextChar() local508 thirdByte = it.nextByte(det); in nextChar()510 if (thirdByte >= 0x81 && thirdByte <= 0xFE) { in nextChar()514 … it.charValue = (it.charValue << 16) | (thirdByte << 8) | fourthByte; in nextChar()
333 int thirdByte = 0; in nextChar() local374 thirdByte = it.nextByte(det); in nextChar()375 it.charValue = (it.charValue << 8) | thirdByte; in nextChar()376 if (thirdByte < 0xa1) { in nextChar()479 int thirdByte = 0; in nextChar() local507 thirdByte = it.nextByte(det); in nextChar()509 if (thirdByte >= 0x81 && thirdByte <= 0xFE) { in nextChar()513 … it.charValue = (it.charValue << 16) | (thirdByte << 8) | fourthByte; in nextChar()
293 int32_t thirdByte = 0; in nextChar() local341 thirdByte = it->nextByte(det); in nextChar()342 it->charValue = (it->charValue << 8) | thirdByte; in nextChar()344 if (thirdByte < 0xa1) { in nextChar()458 int32_t thirdByte = 0; in nextChar() local489 thirdByte = it->nextByte(det); in nextChar()491 if (thirdByte >= 0x81 && thirdByte <= 0xFE) { in nextChar()495 it->charValue = (it->charValue << 16) | (thirdByte << 8) | fourthByte; in nextChar()
46 final int thirdByte = (int) in.readBits(8); in ZCompressorInputStream() local47 if (firstByte != MAGIC_1 || secondByte != MAGIC_2 || thirdByte < 0) { in ZCompressorInputStream()50 blockMode = (thirdByte & BLOCK_MODE_MASK) != 0; in ZCompressorInputStream()51 maxCodeSize = thirdByte & MAX_CODE_SIZE_MASK; in ZCompressorInputStream()
306 int thirdByte = 0; in nextChar() local347 thirdByte = it.nextByte(); in nextChar()348 it.charValue = (it.charValue << 8) | thirdByte; in nextChar()349 if (thirdByte < 0xa1) { in nextChar()357 … + " " + Integer.toHexString(thirdByte) + " " + Integer.toHexString(fourthByte)); in nextChar()
235 int thirdByte = csdData[6] & 0xFF; in parseCsdBuffer() local237 int height = (secondByte & 0x0F) << 8 | thirdByte; in parseCsdBuffer()