Searched refs:thirdByte (Results 1 – 6 of 6) 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()
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()
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()