Lines Matching refs:targetByteUnit
828 #define WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,targetByteUnit,err){ \ argument
832 if(targetByteUnit <= 0xFF){ \
833 *(target)++ = (uint8_t)(targetByteUnit); \
838 if (targetByteUnit > 0xFFFF) { \
839 *(target)++ = (uint8_t)(targetByteUnit>>16); \
847 (uint8_t)(targetByteUnit >> 8); \
849 (uint8_t)targetByteUnit; \
852 *(target)++ = (uint8_t)(targetByteUnit>>8); \
857 *(target)++ = (uint8_t) targetByteUnit; \
863 (uint8_t) (targetByteUnit); \
869 if (targetByteUnit & 0xFF0000) { \
871 (uint8_t) (targetByteUnit >>16); \
873 if(targetByteUnit & 0xFF00){ \
875 (uint8_t) (targetByteUnit >>8); \
878 (uint8_t) (targetByteUnit); \
897 uint32_t targetByteUnit = 0x0000; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC() local
922 targetByteUnit = ATR<<8; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
923 targetByteUnit += (uint8_t) lookupInitialData[range].isciiLang; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
926 WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,targetByteUnit,err); in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
935 targetByteUnit = missingCharMarker; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
951 targetByteUnit = ISCII_HALANT; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
961 targetByteUnit = ISCII_NUKTA; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
963 targetByteUnit =ISCII_INV; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1003 targetByteUnit=fromUnicodeTable[(uint8_t)sourceChar]; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1009 targetByteUnit=missingCharMarker; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1041 targetByteUnit = targetByteUnit << 16 | ISCII_HALANT << 8 | targetByteUnit; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1043 WRITE_TO_TARGET_FROM_U(args, offsets, source, target, targetLimit, targetByteUnit,err); in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1047 } else if (targetByteUnit != missingCharMarker) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1048 if (targetByteUnit==ISCII_HALANT) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1049 converterData->contextCharFromUnicode = (UChar)targetByteUnit; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1052 WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,targetByteUnit,err); in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()