Lines Matching refs:unicodeCodeUnits

638     const uint16_t *unicodeCodeUnits;  in enumToU()  local
643 unicodeCodeUnits=mbcsTable->unicodeCodeUnits; in enumToU()
685 c=unicodeCodeUnits[finalOffset]; in enumToU()
693 c=unicodeCodeUnits[finalOffset++]; in enumToU()
698 c=((c&0x3ff)<<10)+unicodeCodeUnits[finalOffset]+(0x10000-0xdc00); in enumToU()
701 c=unicodeCodeUnits[finalOffset]; in enumToU()
1766 mbcsTable->unicodeCodeUnits=(const uint16_t *)(raw+header->offsetToUCodeUnits); in ucnv_MBCSLoad()
2463 const uint16_t *unicodeCodeUnits; in ucnv_MBCSToUnicodeWithOffsets() local
2512 unicodeCodeUnits=cnv->sharedData->mbcs.unicodeCodeUnits; in ucnv_MBCSToUnicodeWithOffsets()
2561 (c=unicodeCodeUnits[offset+MBCS_ENTRY_FINAL_VALUE_16(entry)])<0xfffe in ucnv_MBCSToUnicodeWithOffsets()
2596 (c=unicodeCodeUnits[offset+MBCS_ENTRY_FINAL_VALUE_16(entry)])<0xfffe in ucnv_MBCSToUnicodeWithOffsets()
2670 c=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2700 c=unicodeCodeUnits[offset++]; in ucnv_MBCSToUnicodeWithOffsets()
2716 *target++=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2722 cnv->UCharErrorBuffer[0]=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2731 *target++=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2962 const uint16_t *unicodeCodeUnits; in ucnv_MBCSGetNextUChar() local
2999 unicodeCodeUnits=cnv->sharedData->mbcs.unicodeCodeUnits; in ucnv_MBCSGetNextUChar()
3025 (c=unicodeCodeUnits[offset+MBCS_ENTRY_FINAL_VALUE_16(entry)])<0xfffe in ucnv_MBCSGetNextUChar()
3050 c=unicodeCodeUnits[offset]; in ucnv_MBCSGetNextUChar()
3064 c=unicodeCodeUnits[offset++]; in ucnv_MBCSGetNextUChar()
3070 c=((c&0x3ff)<<10)+unicodeCodeUnits[offset]+(0x10000-0xdc00); in ucnv_MBCSGetNextUChar()
3074 c=unicodeCodeUnits[offset]; in ucnv_MBCSGetNextUChar()
3257 const uint16_t *unicodeCodeUnits; in ucnv_MBCSSimpleGetNextUChar() local
3289 unicodeCodeUnits=sharedData->mbcs.unicodeCodeUnits; in ucnv_MBCSSimpleGetNextUChar()
3313 c=unicodeCodeUnits[offset]; in ucnv_MBCSSimpleGetNextUChar()
3327 c=unicodeCodeUnits[offset++]; in ucnv_MBCSSimpleGetNextUChar()
3332 c=(UChar32)(((c&0x3ff)<<10)+unicodeCodeUnits[offset]+(0x10000-0xdc00)); in ucnv_MBCSSimpleGetNextUChar()
3335 c=unicodeCodeUnits[offset]; in ucnv_MBCSSimpleGetNextUChar()