Lines Matching refs:targetByteUnit

834 #define WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,targetByteUnit,err){      \  argument
838 if(targetByteUnit <= 0xFF){ \
839 *(target)++ = (uint8_t)(targetByteUnit); \
844 if (targetByteUnit > 0xFFFF) { \
845 *(target)++ = (uint8_t)(targetByteUnit>>16); \
853 (uint8_t)(targetByteUnit >> 8); \
855 (uint8_t)targetByteUnit; \
858 *(target)++ = (uint8_t)(targetByteUnit>>8); \
863 *(target)++ = (uint8_t) targetByteUnit; \
869 (uint8_t) (targetByteUnit); \
875 if (targetByteUnit & 0xFF0000) { \
877 (uint8_t) (targetByteUnit >>16); \
879 if(targetByteUnit & 0xFF00){ \
881 (uint8_t) (targetByteUnit >>8); \
884 (uint8_t) (targetByteUnit); \
903 uint32_t targetByteUnit = 0x0000; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC() local
928 targetByteUnit = ATR<<8; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
929 targetByteUnit += (uint8_t) lookupInitialData[range].isciiLang; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
932 WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,targetByteUnit,err); in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
941 targetByteUnit = missingCharMarker; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
957 targetByteUnit = ISCII_HALANT; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
967 targetByteUnit = ISCII_NUKTA; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
969 targetByteUnit =ISCII_INV; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1009 targetByteUnit=fromUnicodeTable[(uint8_t)sourceChar]; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1015 targetByteUnit=missingCharMarker; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1047 targetByteUnit = targetByteUnit << 16 | ISCII_HALANT << 8 | targetByteUnit; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1049 WRITE_TO_TARGET_FROM_U(args, offsets, source, target, targetLimit, targetByteUnit,err); in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1053 } else if (targetByteUnit != missingCharMarker) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1054 if (targetByteUnit==ISCII_HALANT) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1055 converterData->contextCharFromUnicode = (UChar)targetByteUnit; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1058 WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,targetByteUnit,err); in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()