Searched refs:thirdByte (Results 1 – 5 of 5) 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()
296 int32_t thirdByte = 0; in nextChar() local344 thirdByte = it->nextByte(det); in nextChar()345 it->charValue = (it->charValue << 8) | thirdByte; in nextChar()347 if (thirdByte < 0xa1) { in nextChar()461 int32_t thirdByte = 0; in nextChar() local492 thirdByte = it->nextByte(det); in nextChar()494 if (thirdByte >= 0x81 && thirdByte <= 0xFE) { in nextChar()498 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()