Lines Matching refs:unicodeCodeUnits
501 const uint16_t *unicodeCodeUnits; in enumToU() local
506 unicodeCodeUnits=mbcsTable->unicodeCodeUnits; in enumToU()
548 c=unicodeCodeUnits[finalOffset]; in enumToU()
556 c=unicodeCodeUnits[finalOffset++]; in enumToU()
561 c=((c&0x3ff)<<10)+unicodeCodeUnits[finalOffset]+(0x10000-0xdc00); in enumToU()
564 c=unicodeCodeUnits[finalOffset]; in enumToU()
1629 mbcsTable->unicodeCodeUnits=(const uint16_t *)(raw+header->offsetToUCodeUnits); in ucnv_MBCSLoad()
2326 const uint16_t *unicodeCodeUnits; in ucnv_MBCSToUnicodeWithOffsets() local
2375 unicodeCodeUnits=cnv->sharedData->mbcs.unicodeCodeUnits; in ucnv_MBCSToUnicodeWithOffsets()
2424 (c=unicodeCodeUnits[offset+MBCS_ENTRY_FINAL_VALUE_16(entry)])<0xfffe in ucnv_MBCSToUnicodeWithOffsets()
2459 (c=unicodeCodeUnits[offset+MBCS_ENTRY_FINAL_VALUE_16(entry)])<0xfffe in ucnv_MBCSToUnicodeWithOffsets()
2533 c=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2563 c=unicodeCodeUnits[offset++]; in ucnv_MBCSToUnicodeWithOffsets()
2579 *target++=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2585 cnv->UCharErrorBuffer[0]=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2594 *target++=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2825 const uint16_t *unicodeCodeUnits; in ucnv_MBCSGetNextUChar() local
2862 unicodeCodeUnits=cnv->sharedData->mbcs.unicodeCodeUnits; in ucnv_MBCSGetNextUChar()
2888 (c=unicodeCodeUnits[offset+MBCS_ENTRY_FINAL_VALUE_16(entry)])<0xfffe in ucnv_MBCSGetNextUChar()
2913 c=unicodeCodeUnits[offset]; in ucnv_MBCSGetNextUChar()
2927 c=unicodeCodeUnits[offset++]; in ucnv_MBCSGetNextUChar()
2933 c=((c&0x3ff)<<10)+unicodeCodeUnits[offset]+(0x10000-0xdc00); in ucnv_MBCSGetNextUChar()
2937 c=unicodeCodeUnits[offset]; in ucnv_MBCSGetNextUChar()
3120 const uint16_t *unicodeCodeUnits; in ucnv_MBCSSimpleGetNextUChar() local
3152 unicodeCodeUnits=sharedData->mbcs.unicodeCodeUnits; in ucnv_MBCSSimpleGetNextUChar()
3176 c=unicodeCodeUnits[offset]; in ucnv_MBCSSimpleGetNextUChar()
3190 c=unicodeCodeUnits[offset++]; in ucnv_MBCSSimpleGetNextUChar()
3195 c=(UChar32)(((c&0x3ff)<<10)+unicodeCodeUnits[offset]+(0x10000-0xdc00)); in ucnv_MBCSSimpleGetNextUChar()
3198 c=unicodeCodeUnits[offset]; in ucnv_MBCSSimpleGetNextUChar()