Lines Matching refs:targetByteUnit
2370 uint32_t targetByteUnit = 0x0000; in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC() local
2401 targetByteUnit = missingCharMarker; in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC()
2414 …length = MBCS_FROM_UCHAR32_ISO2022(sharedData,sourceChar,&targetByteUnit,useFallback,MBCS_OUTPUT_2… in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC()
2421 (length == 1 && targetByteUnit > 0x7f) || in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC()
2423 ((uint16_t)(targetByteUnit - 0xa1a1) > (0xfefe - 0xa1a1) || in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC()
2424 (uint8_t)(targetByteUnit - 0xa1) > (0xfe - 0xa1))) in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC()
2426 targetByteUnit=missingCharMarker; in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC()
2428 if (targetByteUnit != missingCharMarker){ in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC()
2431 isTargetByteDBCS = (UBool)(targetByteUnit>0x00FF); in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC()
2443 if(targetByteUnit <= 0x00FF){ in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC()
2445 *(target++) = (unsigned char) targetByteUnit; in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC()
2451 …rter->charErrorBuffer[args->converter->charErrorBufferLength++] = (unsigned char) (targetByteUnit); in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC()
2456 *(target++) =(unsigned char) ((targetByteUnit>>8) -0x80); in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC()
2461 *(target++) =(unsigned char) (targetByteUnit -0x80); in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC()
2466 …charErrorBuffer[args->converter->charErrorBufferLength++] = (unsigned char) (targetByteUnit -0x80); in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC()
2470 …rrorBuffer[args->converter->charErrorBufferLength++] = (unsigned char) ((targetByteUnit>>8) -0x80); in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC()
2471 …>charErrorBuffer[args->converter->charErrorBufferLength++] = (unsigned char) (targetByteUnit-0x80); in UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC()