Home
last modified time | relevance | path

Searched refs:thirdByte (Results 1 – 9 of 9) 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/core/src/main/java/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.cpp293 int32_t thirdByte = 0; in nextChar() local
341 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() local
489 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()
/external/cronet/tot/third_party/icu/source/i18n/
Dcsrmbcs.cpp293 int32_t thirdByte = 0; in nextChar() local
341 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() local
489 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()
/external/cronet/stable/third_party/icu/source/i18n/
Dcsrmbcs.cpp293 int32_t thirdByte = 0; in nextChar() local
341 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() local
489 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()
/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/main/java/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()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/ts/
DH262Reader.java235 int thirdByte = csdData[6] & 0xFF; in parseCsdBuffer() local
237 int height = (secondByte & 0x0F) << 8 | thirdByte; in parseCsdBuffer()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/ts/
DH262Reader.java235 int thirdByte = csdData[6] & 0xFF; in parseCsdBuffer() local
237 int height = (secondByte & 0x0F) << 8 | thirdByte; in parseCsdBuffer()