Home
last modified time | relevance | path

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

/external/icu/icu4c/source/common/
Ducnvscsu.c240 int8_t quoteWindow, dynamicWindow; in _SCSUToUnicodeWithOffsets() local
260 dynamicWindow=scsu->toUDynamicWindow; in _SCSUToUnicodeWithOffsets()
301 uint32_t c=scsu->toUDynamicOffsets[dynamicWindow]+(b&0x7f); in _SCSUToUnicodeWithOffsets()
356 dynamicWindow=(int8_t)(b-SC0); in _SCSUToUnicodeWithOffsets()
360 dynamicWindow=(int8_t)(b-SD0); in _SCSUToUnicodeWithOffsets()
440 dynamicWindow=(int8_t)((b>>5)&7); in _SCSUToUnicodeWithOffsets()
447 scsu->toUDynamicOffsets[dynamicWindow]=0x10000+(byteOne<<15UL | b<<7UL); in _SCSUToUnicodeWithOffsets()
458 scsu->toUDynamicOffsets[dynamicWindow]=b<<7UL; in _SCSUToUnicodeWithOffsets()
460 scsu->toUDynamicOffsets[dynamicWindow]=(b<<7UL)+gapOffset; in _SCSUToUnicodeWithOffsets()
462 scsu->toUDynamicOffsets[dynamicWindow]=fixedOffsets[b-fixedThreshold]; in _SCSUToUnicodeWithOffsets()
[all …]
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetSCSU.java222 private byte dynamicWindow ; field in CharsetSCSU.CharsetDecoderSCSU
242 dynamicWindow = data.toUDynamicWindow; in decodeLoop()
304 int c = data.toUDynamicOffsets[dynamicWindow] + (b&0x7f); in fastSingle()
378 dynamicWindow = (byte)(b-SC0); in singleByteMode()
383 dynamicWindow = (byte)(b - SD0); in singleByteMode()
469 dynamicWindow = (byte)((b>>5)&7); in singleByteMode()
476 data.toUDynamicOffsets[dynamicWindow] = 0x10000 + (byteOne<<15L | b<<7L); in singleByteMode()
489 data.toUDynamicOffsets[dynamicWindow] = b<<7L; in singleByteMode()
491 data.toUDynamicOffsets[dynamicWindow] = (b<<7L) + gapOffset; in singleByteMode()
493 data.toUDynamicOffsets[dynamicWindow] = fixedOffsets[b-fixedThreshold]; in singleByteMode()
[all …]