Searched refs:targetByteUnit (Results 1 – 2 of 2) sorted by relevance
/external/icu4c/common/ |
D | ucnvisci.c | 779 #define WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,targetByteUnit,err){ \ argument 782 if(targetByteUnit <= 0xFF){ \ 783 *(target)++ = (uint8_t)(targetByteUnit); \ 788 *(target)++ = (uint8_t)(targetByteUnit>>8); \ 793 *(target)++ = (uint8_t) targetByteUnit; \ 799 (uint8_t) (targetByteUnit); \ 804 if(targetByteUnit & 0xFF00){ \ 806 (uint8_t) (targetByteUnit >>8); \ 809 (uint8_t) (targetByteUnit); \ 829 uint32_t targetByteUnit = 0x0000; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC() local [all …]
|
D | ucnv2022.c | 2196 uint32_t targetByteUnit = 0x0000; in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC() local 2227 targetByteUnit = missingCharMarker; in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC() 2240 …length = MBCS_FROM_UCHAR32_ISO2022(sharedData,sourceChar,&targetByteUnit,useFallback,MBCS_OUTPUT_2… in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC() 2246 if(length > 2 || length==0 ||(((targetByteUnit & 0x8080) != 0x8080)&& length==2)){ in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC() 2247 targetByteUnit=missingCharMarker; in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC() 2249 if (targetByteUnit != missingCharMarker){ in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC() 2252 isTargetByteDBCS = (UBool)(targetByteUnit>0x00FF); in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC() 2264 if(targetByteUnit <= 0x00FF){ in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC() 2266 *(target++) = (unsigned char) targetByteUnit; in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC() 2272 …rter->charErrorBuffer[args->converter->charErrorBufferLength++] = (unsigned char) (targetByteUnit); in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC() [all …]
|