Home
last modified time | relevance | path

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

/external/icu/icu4c/source/common/
Ducnvscsu.c48 UC0=0xE0, /* Select window 0 */ enumerator
478 … while(source+1<sourceLimit && target<targetLimit && (uint8_t)((b=*source)-UC0)>(Urs-UC0)) { in _SCSUToUnicodeWithOffsets()
501 if((uint8_t)(b-UC0)>(Urs-UC0)) { in _SCSUToUnicodeWithOffsets()
507 dynamicWindow=(int8_t)(b-UC0); in _SCSUToUnicodeWithOffsets()
782 … while(source+1<sourceLimit && target<targetLimit && (uint8_t)((b=*source)-UC0)>(Urs-UC0)) { in _SCSUToUnicode()
799 if((uint8_t)(b-UC0)>(Urs-UC0)) { in _SCSUToUnicode()
805 dynamicWindow=(int8_t)(b-UC0); in _SCSUToUnicode()
1271 c|=((uint32_t)(UC0+dynamicWindow)<<8)|c; in _SCSUFromUnicodeWithOffsets()
1280 c=((uint32_t)(UC0+dynamicWindow)<<8)|(c-currentOffset)|0x80; in _SCSUFromUnicodeWithOffsets()
1342 c=((uint32_t)(UC0+dynamicWindow)<<8)|(c-currentOffset)|0x80; in _SCSUFromUnicodeWithOffsets()
[all …]
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetSCSU.java40 private static final short UC0=0xE0; /* Select window 0 */ field in CharsetSCSU
339 …emaining() && (((b=source.get(source.position()))-UC0)&UConverterConstants.UNSIGNED_BYTE_MASK)>(Ur… in fastSingle()
519 if((short)((b -UC0)&UConverterConstants.UNSIGNED_BYTE_MASK)>(Urs - UC0)){ in singleByteMode()
525 dynamicWindow = (byte)(b - UC0); in singleByteMode()
993 c |=((UC0+dynamicWindow)<<8)|c; in loop()
1003 c = ((UC0+dynamicWindow)<<8) | (c- currentOffset) | 0x80; in loop()
1122 c = ((UC0+dynamicWindow)<<8 | (c-currentOffset) | 0x80); in getTrailUnicode()