Home
last modified time | relevance | path

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

/external/icu/icu4c/source/common/
Ducnvscsu.c242 int8_t quoteWindow, dynamicWindow; in _SCSUToUnicodeWithOffsets() local
262 dynamicWindow=scsu->toUDynamicWindow; in _SCSUToUnicodeWithOffsets()
303 uint32_t c=scsu->toUDynamicOffsets[dynamicWindow]+(b&0x7f); in _SCSUToUnicodeWithOffsets()
358 dynamicWindow=(int8_t)(b-SC0); in _SCSUToUnicodeWithOffsets()
362 dynamicWindow=(int8_t)(b-SD0); in _SCSUToUnicodeWithOffsets()
442 dynamicWindow=(int8_t)((b>>5)&7); in _SCSUToUnicodeWithOffsets()
449 scsu->toUDynamicOffsets[dynamicWindow]=0x10000+(byteOne<<15UL | b<<7UL); in _SCSUToUnicodeWithOffsets()
460 scsu->toUDynamicOffsets[dynamicWindow]=b<<7UL; in _SCSUToUnicodeWithOffsets()
462 scsu->toUDynamicOffsets[dynamicWindow]=(b<<7UL)+gapOffset; in _SCSUToUnicodeWithOffsets()
464 scsu->toUDynamicOffsets[dynamicWindow]=fixedOffsets[b-fixedThreshold]; in _SCSUToUnicodeWithOffsets()
[all …]
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetSCSU.java223 private byte dynamicWindow ; field in CharsetSCSU.CharsetDecoderSCSU
244 dynamicWindow = data.toUDynamicWindow; in decodeLoop()
306 int c = data.toUDynamicOffsets[dynamicWindow] + (b&0x7f); in fastSingle()
380 dynamicWindow = (byte)(b-SC0); in singleByteMode()
385 dynamicWindow = (byte)(b - SD0); in singleByteMode()
471 dynamicWindow = (byte)((b>>5)&7); in singleByteMode()
478 data.toUDynamicOffsets[dynamicWindow] = 0x10000 + (byteOne<<15L | b<<7L); in singleByteMode()
491 data.toUDynamicOffsets[dynamicWindow] = b<<7L; in singleByteMode()
493 data.toUDynamicOffsets[dynamicWindow] = (b<<7L) + gapOffset; in singleByteMode()
495 data.toUDynamicOffsets[dynamicWindow] = fixedOffsets[b-fixedThreshold]; in singleByteMode()
[all …]