• Home
  • Raw
  • Download

Lines Matching refs:unicodeCodeUnits

498     const uint16_t *unicodeCodeUnits;  in enumToU()  local
503 unicodeCodeUnits=mbcsTable->unicodeCodeUnits; in enumToU()
545 c=unicodeCodeUnits[finalOffset]; in enumToU()
553 c=unicodeCodeUnits[finalOffset++]; in enumToU()
558 c=((c&0x3ff)<<10)+unicodeCodeUnits[finalOffset]+(0x10000-0xdc00); in enumToU()
561 c=unicodeCodeUnits[finalOffset]; in enumToU()
1627 mbcsTable->unicodeCodeUnits=(const uint16_t *)(raw+header->offsetToUCodeUnits); in ucnv_MBCSLoad()
2324 const uint16_t *unicodeCodeUnits; in ucnv_MBCSToUnicodeWithOffsets() local
2373 unicodeCodeUnits=cnv->sharedData->mbcs.unicodeCodeUnits; in ucnv_MBCSToUnicodeWithOffsets()
2422 (c=unicodeCodeUnits[offset+MBCS_ENTRY_FINAL_VALUE_16(entry)])<0xfffe in ucnv_MBCSToUnicodeWithOffsets()
2457 (c=unicodeCodeUnits[offset+MBCS_ENTRY_FINAL_VALUE_16(entry)])<0xfffe in ucnv_MBCSToUnicodeWithOffsets()
2531 c=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2561 c=unicodeCodeUnits[offset++]; in ucnv_MBCSToUnicodeWithOffsets()
2577 *target++=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2583 cnv->UCharErrorBuffer[0]=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2592 *target++=unicodeCodeUnits[offset]; in ucnv_MBCSToUnicodeWithOffsets()
2823 const uint16_t *unicodeCodeUnits; in ucnv_MBCSGetNextUChar() local
2860 unicodeCodeUnits=cnv->sharedData->mbcs.unicodeCodeUnits; in ucnv_MBCSGetNextUChar()
2886 (c=unicodeCodeUnits[offset+MBCS_ENTRY_FINAL_VALUE_16(entry)])<0xfffe in ucnv_MBCSGetNextUChar()
2911 c=unicodeCodeUnits[offset]; in ucnv_MBCSGetNextUChar()
2925 c=unicodeCodeUnits[offset++]; in ucnv_MBCSGetNextUChar()
2931 c=((c&0x3ff)<<10)+unicodeCodeUnits[offset]+(0x10000-0xdc00); in ucnv_MBCSGetNextUChar()
2935 c=unicodeCodeUnits[offset]; in ucnv_MBCSGetNextUChar()
3118 const uint16_t *unicodeCodeUnits; in ucnv_MBCSSimpleGetNextUChar() local
3150 unicodeCodeUnits=sharedData->mbcs.unicodeCodeUnits; in ucnv_MBCSSimpleGetNextUChar()
3174 c=unicodeCodeUnits[offset]; in ucnv_MBCSSimpleGetNextUChar()
3188 c=unicodeCodeUnits[offset++]; in ucnv_MBCSSimpleGetNextUChar()
3193 c=(UChar32)(((c&0x3ff)<<10)+unicodeCodeUnits[offset]+(0x10000-0xdc00)); in ucnv_MBCSSimpleGetNextUChar()
3196 c=unicodeCodeUnits[offset]; in ucnv_MBCSSimpleGetNextUChar()