Searched refs:targetByteUnit (Results 1 - 2 of 2) sorted by relevance

/external/icu4c/common/
H A Ducnvisci.c825 #define WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,targetByteUnit,err){ \
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); \
894 uint32_t targetByteUnit = 0x0000; local
[all...]
H A Ducnv2022.c2319 uint32_t targetByteUnit = 0x0000; local
2350 targetByteUnit = missingCharMarker;
2363 length = MBCS_FROM_UCHAR32_ISO2022(sharedData,sourceChar,&targetByteUnit,useFallback,MBCS_OUTPUT_2);
2370 (length == 1 && targetByteUnit > 0x7f) ||
2372 ((uint16_t)(targetByteUnit - 0xa1a1) > (0xfefe - 0xa1a1) ||
2373 (uint8_t)(targetByteUnit - 0xa1) > (0xfe - 0xa1)))
2375 targetByteUnit=missingCharMarker;
2377 if (targetByteUnit != missingCharMarker){
2380 isTargetByteDBCS = (UBool)(targetByteUnit>0x00FF);
2392 if(targetByteUnit <
[all...]

Completed in 32 milliseconds