• Home
  • Raw
  • Download

Lines Matching refs:unicodeCodeUnits

642     const uint16_t *unicodeCodeUnits;  in enumToU()  local
647 unicodeCodeUnits=mbcsTable->unicodeCodeUnits; in enumToU()
689 c=unicodeCodeUnits[finalOffset]; in enumToU()
697 c=unicodeCodeUnits[finalOffset++]; in enumToU()
702 c=((c&0x3ff)<<10)+unicodeCodeUnits[finalOffset]+(0x10000-0xdc00); in enumToU()
705 c=unicodeCodeUnits[finalOffset]; in enumToU()
1773 mbcsTable->unicodeCodeUnits=(const uint16_t *)(raw+header->offsetToUCodeUnits); in ucnv_MBCSLoad()
2474 const uint16_t *unicodeCodeUnits; in ucnv_MBCSToUnicodeWithOffsets() local
2523 unicodeCodeUnits=cnv->sharedData->mbcs.unicodeCodeUnits; in ucnv_MBCSToUnicodeWithOffsets()
2572 (c=unicodeCodeUnits[offset+MBCS_ENTRY_FINAL_VALUE_16(entry)])<0xfffe in ucnv_MBCSToUnicodeWithOffsets()
2607 (c=unicodeCodeUnits[offset+MBCS_ENTRY_FINAL_VALUE_16(entry)])<0xfffe in ucnv_MBCSToUnicodeWithOffsets()
2681 c=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2711 c=unicodeCodeUnits[offset++]; in ucnv_MBCSToUnicodeWithOffsets()
2727 *target++=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2733 cnv->UCharErrorBuffer[0]=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2742 *target++=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2973 const uint16_t *unicodeCodeUnits; in ucnv_MBCSGetNextUChar() local
3010 unicodeCodeUnits=cnv->sharedData->mbcs.unicodeCodeUnits; in ucnv_MBCSGetNextUChar()
3036 (c=unicodeCodeUnits[offset+MBCS_ENTRY_FINAL_VALUE_16(entry)])<0xfffe in ucnv_MBCSGetNextUChar()
3061 c=unicodeCodeUnits[offset]; in ucnv_MBCSGetNextUChar()
3075 c=unicodeCodeUnits[offset++]; in ucnv_MBCSGetNextUChar()
3081 c=((c&0x3ff)<<10)+unicodeCodeUnits[offset]+(0x10000-0xdc00); in ucnv_MBCSGetNextUChar()
3085 c=unicodeCodeUnits[offset]; in ucnv_MBCSGetNextUChar()
3268 const uint16_t *unicodeCodeUnits; in ucnv_MBCSSimpleGetNextUChar() local
3300 unicodeCodeUnits=sharedData->mbcs.unicodeCodeUnits; in ucnv_MBCSSimpleGetNextUChar()
3324 c=unicodeCodeUnits[offset]; in ucnv_MBCSSimpleGetNextUChar()
3338 c=unicodeCodeUnits[offset++]; in ucnv_MBCSSimpleGetNextUChar()
3343 c=(UChar32)(((c&0x3ff)<<10)+unicodeCodeUnits[offset]+(0x10000-0xdc00)); in ucnv_MBCSSimpleGetNextUChar()
3346 c=unicodeCodeUnits[offset]; in ucnv_MBCSSimpleGetNextUChar()