Home
last modified time | relevance | path

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

/external/icu/icu4c/source/common/
Ducnvscsu.cpp241 uint8_t state, byteOne; in _SCSUToUnicodeWithOffsets() local
263 byteOne=scsu->toUByteOne; in _SCSUToUnicodeWithOffsets()
389 byteOne=b; in _SCSUToUnicodeWithOffsets()
395 *target++=(UChar)((byteOne<<8)|b); in _SCSUToUnicodeWithOffsets()
443 byteOne=(uint8_t)(b&0x1f); in _SCSUToUnicodeWithOffsets()
449 scsu->toUDynamicOffsets[dynamicWindow]=0x10000+(byteOne<<15UL | b<<7UL); in _SCSUToUnicodeWithOffsets()
504 byteOne=b; in _SCSUToUnicodeWithOffsets()
539 byteOne=b; in _SCSUToUnicodeWithOffsets()
545 *target++=(UChar)((byteOne<<8)|b); in _SCSUToUnicodeWithOffsets()
569 scsu->toUByteOne=byteOne; in _SCSUToUnicodeWithOffsets()
[all …]
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetSCSU.java224 private short byteOne; field in CharsetSCSU.CharsetDecoderSCSU
245 byteOne = data.toUByteOne; in decodeLoop()
414 byteOne = b; in singleByteMode()
420 target.put((char)((byteOne<< 8) | b)); in singleByteMode()
472 byteOne = (byte)(b&0x1f); in singleByteMode()
478 data.toUDynamicOffsets[dynamicWindow] = 0x10000 + (byteOne<<15L | b<<7L); in singleByteMode()
522 byteOne = b; in singleByteMode()
561 byteOne = b; in singleByteMode()
567 target.put((char)((byteOne<<8) | b)); in singleByteMode()
592 data.toUByteOne = byteOne; in endLoop()