Searched defs:outIsBigEndian (Results 1 - 4 of 4) sorted by relevance

/external/icu4c/common/
H A Dudataswp.h155 UBool outIsBigEndian; member in struct:UDataSwapper
198 UBool outIsBigEndian, uint8_t outCharset,
212 UBool outIsBigEndian, uint8_t outCharset,
H A Dudataswp.c287 outHeader->info.isBigEndian = ds->outIsBigEndian;
313 UBool outIsBigEndian, uint8_t outCharset,
336 swapper->outIsBigEndian=outIsBigEndian;
342 swapper->writeUInt16= outIsBigEndian==U_IS_BIG_ENDIAN ? uprv_writeDirectUInt16 : uprv_writeSwapUInt16;
343 swapper->writeUInt32= outIsBigEndian==U_IS_BIG_ENDIAN ? uprv_writeDirectUInt32 : uprv_writeSwapUInt32;
347 swapper->swapArray16= inIsBigEndian==outIsBigEndian ? uprv_copyArray16 : uprv_swapArray16;
348 swapper->swapArray32= inIsBigEndian==outIsBigEndian ? uprv_copyArray32 : uprv_swapArray32;
361 UBool outIsBigEndian, uint8_t outCharset,
409 return udata_openSwapper(inIsBigEndian, inCharset, outIsBigEndian, outCharse
312 udata_openSwapper(UBool inIsBigEndian, uint8_t inCharset, UBool outIsBigEndian, uint8_t outCharset, UErrorCode *pErrorCode) argument
360 udata_openSwapperForInputData(const void *data, int32_t length, UBool outIsBigEndian, uint8_t outCharset, UErrorCode *pErrorCode) argument
[all...]
/external/icu4c/tools/icuswap/
H A Dicuswap.cpp116 UBool outIsBigEndian; local
147 outIsBigEndian=FALSE;
151 outIsBigEndian=TRUE;
155 outIsBigEndian=TRUE;
207 ds=udata_openSwapperForInputData(data, length, outIsBigEndian, outCharset, &errorCode);
/external/icu4c/tools/toolutil/
H A Dpackage.cpp652 UBool outIsBigEndian; local
680 makeTypeProps(outType, outCharset, outIsBigEndian);
687 ds[TYPE_B]= i==TYPE_B ? NULL : udata_openSwapper(TRUE, U_ASCII_FAMILY, outIsBigEndian, outCharset, &errorCode);
688 ds[TYPE_L]= i==TYPE_L ? NULL : udata_openSwapper(FALSE, U_ASCII_FAMILY, outIsBigEndian, outCharset, &errorCode);
690 ds[TYPE_E]= i==TYPE_E ? NULL : udata_openSwapper(TRUE, U_EBCDIC_FAMILY, outIsBigEndian, outCharset, &errorCode);
1081 UBool itemIsBigEndian, outIsBigEndian; local
1094 makeTypeProps(outType, outCharset, outIsBigEndian);
1095 ds=udata_openSwapper(itemIsBigEndian, itemCharset, outIsBigEndian, outCharset, &errorCode);

Completed in 82 milliseconds