Home
last modified time | relevance | path

Searched refs:byteOne (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/common/
Ducnvscsu.c239 uint8_t state, byteOne; in _SCSUToUnicodeWithOffsets() local
261 byteOne=scsu->toUByteOne; in _SCSUToUnicodeWithOffsets()
387 byteOne=b; in _SCSUToUnicodeWithOffsets()
393 *target++=(UChar)((byteOne<<8)|b); in _SCSUToUnicodeWithOffsets()
441 byteOne=(uint8_t)(b&0x1f); in _SCSUToUnicodeWithOffsets()
447 scsu->toUDynamicOffsets[dynamicWindow]=0x10000+(byteOne<<15UL | b<<7UL); in _SCSUToUnicodeWithOffsets()
502 byteOne=b; in _SCSUToUnicodeWithOffsets()
537 byteOne=b; in _SCSUToUnicodeWithOffsets()
543 *target++=(UChar)((byteOne<<8)|b); in _SCSUToUnicodeWithOffsets()
567 scsu->toUByteOne=byteOne; in _SCSUToUnicodeWithOffsets()
[all …]
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetSCSU.java223 private short byteOne; field in CharsetSCSU.CharsetDecoderSCSU
243 byteOne = data.toUByteOne; in decodeLoop()
412 byteOne = b; in singleByteMode()
418 target.put((char)((byteOne<< 8) | b)); in singleByteMode()
470 byteOne = (byte)(b&0x1f); in singleByteMode()
476 data.toUDynamicOffsets[dynamicWindow] = 0x10000 + (byteOne<<15L | b<<7L); in singleByteMode()
520 byteOne = b; in singleByteMode()
559 byteOne = b; in singleByteMode()
565 target.put((char)((byteOne<<8) | b)); in singleByteMode()
590 data.toUByteOne = byteOne; in endLoop()