Home
last modified time | relevance | path

Searched refs:newResults (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/common/
Ducnvmbcs.cpp1264 uint16_t *newResults; in _EBCDICSwapLFNL() local
1364 newResults=(uint16_t *)newStateTable[mbcsTable->countStates]; in _EBCDICSwapLFNL()
1365 uprv_memcpy(newResults, bytes, sizeofFromUBytes); in _EBCDICSwapLFNL()
1369 MBCS_SINGLE_RESULT_FROM_U(table, newResults, U_LF)=EBCDIC_RT_NL; in _EBCDICSwapLFNL()
1370 MBCS_SINGLE_RESULT_FROM_U(table, newResults, U_NL)=EBCDIC_RT_LF; in _EBCDICSwapLFNL()
1373 MBCS_VALUE_2_FROM_STAGE_2(newResults, stage2Entry, U_LF)=EBCDIC_NL; in _EBCDICSwapLFNL()
1376 MBCS_VALUE_2_FROM_STAGE_2(newResults, stage2Entry, U_NL)=EBCDIC_LF; in _EBCDICSwapLFNL()
1380 name=(char *)newResults+sizeofFromUBytes; in _EBCDICSwapLFNL()
1388 mbcsTable->swapLFNLFromUnicodeBytes=(uint8_t *)newResults; in _EBCDICSwapLFNL()
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetMBCS.java1037 char[] newResults = new char[chars.length]; in EBCDICSwapLFNL() local
1038 System.arraycopy(chars, 0, newResults, 0, chars.length); in EBCDICSwapLFNL()
1041 MBCS_SINGLE_RESULT_FROM_U_SET(table, newResults, U_LF, EBCDIC_RT_NL); in EBCDICSwapLFNL()
1042 MBCS_SINGLE_RESULT_FROM_U_SET(table, newResults, U_NL, EBCDIC_RT_LF); in EBCDICSwapLFNL()
1045 MBCS_VALUE_2_FROM_STAGE_2_SET(newResults, stage2Entry, U_LF, EBCDIC_NL); in EBCDICSwapLFNL()
1048 MBCS_VALUE_2_FROM_STAGE_2_SET(newResults, stage2Entry, U_NL, EBCDIC_LF); in EBCDICSwapLFNL()
1056 mbcsTable.swapLFNLFromUnicodeChars = newResults; in EBCDICSwapLFNL()