• Home
  • Raw
  • Download

Lines Matching refs:targetByteUnit

825 #define WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,targetByteUnit,err){      \  argument
829 if(targetByteUnit <= 0xFF){ \
830 *(target)++ = (uint8_t)(targetByteUnit); \
835 if (targetByteUnit > 0xFFFF) { \
836 *(target)++ = (uint8_t)(targetByteUnit>>16); \
844 (uint8_t)(targetByteUnit >> 8); \
846 (uint8_t)targetByteUnit; \
849 *(target)++ = (uint8_t)(targetByteUnit>>8); \
854 *(target)++ = (uint8_t) targetByteUnit; \
860 (uint8_t) (targetByteUnit); \
866 if (targetByteUnit & 0xFF0000) { \
868 (uint8_t) (targetByteUnit >>16); \
870 if(targetByteUnit & 0xFF00){ \
872 (uint8_t) (targetByteUnit >>8); \
875 (uint8_t) (targetByteUnit); \
894 uint32_t targetByteUnit = 0x0000; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC() local
919 targetByteUnit = ATR<<8; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
920 targetByteUnit += (uint8_t) lookupInitialData[range].isciiLang; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
923 WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,targetByteUnit,err); in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
932 targetByteUnit = missingCharMarker; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
948 targetByteUnit = ISCII_HALANT; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
958 targetByteUnit = ISCII_NUKTA; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
960 targetByteUnit =ISCII_INV; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1000 targetByteUnit=fromUnicodeTable[(uint8_t)sourceChar]; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1006 targetByteUnit=missingCharMarker; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1038 targetByteUnit = targetByteUnit << 16 | ISCII_HALANT << 8 | targetByteUnit; in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1040 WRITE_TO_TARGET_FROM_U(args, offsets, source, target, targetLimit, targetByteUnit,err); in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1044 } else if (targetByteUnit != missingCharMarker) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1045 if (targetByteUnit==ISCII_HALANT) { in UConverter_fromUnicode_ISCII_OFFSETS_LOGIC()
1046 converterData->contextCharFromUnicode = (UChar)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()