Home
last modified time | relevance | path

Searched refs:thirdByte (Results 1 – 5 of 5) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
DCharsetRecog_mbcs.java334 int thirdByte = 0; in nextChar() local
375 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() local
508 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()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DCharsetRecog_mbcs.java333 int thirdByte = 0; in nextChar() local
374 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() local
507 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()
/external/icu/icu4c/source/i18n/
Dcsrmbcs.cpp296 int32_t thirdByte = 0; in nextChar() local
344 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() local
492 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()
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/z/
DZCompressorInputStream.java46 final int thirdByte = (int) in.readBits(8); in ZCompressorInputStream() local
47 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()
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/
DEUCTool.java306 int thirdByte = 0; in nextChar() local
347 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()