Lines Matching refs:unicodeCodeUnits
499 const uint16_t *unicodeCodeUnits; in enumToU() local
504 unicodeCodeUnits=mbcsTable->unicodeCodeUnits; in enumToU()
546 c=unicodeCodeUnits[finalOffset]; in enumToU()
554 c=unicodeCodeUnits[finalOffset++]; in enumToU()
559 c=((c&0x3ff)<<10)+unicodeCodeUnits[finalOffset]+(0x10000-0xdc00); in enumToU()
562 c=unicodeCodeUnits[finalOffset]; in enumToU()
1628 mbcsTable->unicodeCodeUnits=(const uint16_t *)(raw+header->offsetToUCodeUnits); in ucnv_MBCSLoad()
2325 const uint16_t *unicodeCodeUnits; in ucnv_MBCSToUnicodeWithOffsets() local
2374 unicodeCodeUnits=cnv->sharedData->mbcs.unicodeCodeUnits; in ucnv_MBCSToUnicodeWithOffsets()
2423 (c=unicodeCodeUnits[offset+MBCS_ENTRY_FINAL_VALUE_16(entry)])<0xfffe in ucnv_MBCSToUnicodeWithOffsets()
2458 (c=unicodeCodeUnits[offset+MBCS_ENTRY_FINAL_VALUE_16(entry)])<0xfffe in ucnv_MBCSToUnicodeWithOffsets()
2532 c=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2562 c=unicodeCodeUnits[offset++]; in ucnv_MBCSToUnicodeWithOffsets()
2578 *target++=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2584 cnv->UCharErrorBuffer[0]=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2593 *target++=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2824 const uint16_t *unicodeCodeUnits; in ucnv_MBCSGetNextUChar() local
2861 unicodeCodeUnits=cnv->sharedData->mbcs.unicodeCodeUnits; in ucnv_MBCSGetNextUChar()
2887 (c=unicodeCodeUnits[offset+MBCS_ENTRY_FINAL_VALUE_16(entry)])<0xfffe in ucnv_MBCSGetNextUChar()
2912 c=unicodeCodeUnits[offset]; in ucnv_MBCSGetNextUChar()
2926 c=unicodeCodeUnits[offset++]; in ucnv_MBCSGetNextUChar()
2932 c=((c&0x3ff)<<10)+unicodeCodeUnits[offset]+(0x10000-0xdc00); in ucnv_MBCSGetNextUChar()
2936 c=unicodeCodeUnits[offset]; in ucnv_MBCSGetNextUChar()
3119 const uint16_t *unicodeCodeUnits; in ucnv_MBCSSimpleGetNextUChar() local
3151 unicodeCodeUnits=sharedData->mbcs.unicodeCodeUnits; in ucnv_MBCSSimpleGetNextUChar()
3175 c=unicodeCodeUnits[offset]; in ucnv_MBCSSimpleGetNextUChar()
3189 c=unicodeCodeUnits[offset++]; in ucnv_MBCSSimpleGetNextUChar()
3194 c=(UChar32)(((c&0x3ff)<<10)+unicodeCodeUnits[offset]+(0x10000-0xdc00)); in ucnv_MBCSSimpleGetNextUChar()
3197 c=unicodeCodeUnits[offset]; in ucnv_MBCSSimpleGetNextUChar()