Home | History | Annotate | Download | only in common

Lines Matching refs:targetByteUnit

825 #define WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,targetByteUnit
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;
919 targetByteUnit = ATR<<8;
920 targetByteUnit += (uint8_t) lookupInitialData[range].isciiLang;
923 WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,targetByteUnit,err);
932 targetByteUnit = missingCharMarker;
948 targetByteUnit = ISCII_HALANT;
958 targetByteUnit = ISCII_NUKTA;
960 targetByteUnit =ISCII_INV;
1000 targetByteUnit=fromUnicodeTable[(uint8_t)sourceChar];
1006 targetByteUnit=missingCharMarker;
1035 /* If the previous codepoint is Adhak and the current codepoint is a consonant, the targetByteUnit should be C + Halant + C. */
1038 targetByteUnit = targetByteUnit << 16 | ISCII_HALANT << 8 | targetByteUnit;
1039 /* write targetByteUnit to target */
1040 WRITE_TO_TARGET_FROM_U(args, offsets, source, target, targetLimit, targetByteUnit,err);
1044 } else if (targetByteUnit != missingCharMarker) {
1045 if (targetByteUnit==ISCII_HALANT) {
1046 converterData->contextCharFromUnicode = (UChar)targetByteUnit;
1048 /* write targetByteUnit to target*/
1049 WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,targetByteUnit,err);