Lines Matching refs:ch2
220 UChar32 ch, ch2; in T_UConverter_fromUnicode_UTF32_BE() local
256 ch2 = *mySource; in T_UConverter_fromUnicode_UTF32_BE()
257 if (U_IS_TRAIL(ch2)) { in T_UConverter_fromUnicode_UTF32_BE()
258 ch = ((ch - SURROGATE_HIGH_START) << HALF_SHIFT) + ch2 + SURROGATE_LOW_BASE; in T_UConverter_fromUnicode_UTF32_BE()
322 UChar32 ch, ch2; in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC() local
360 ch2 = *mySource; in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC()
361 if (U_IS_TRAIL(ch2)) { in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC()
362 ch = ((ch - SURROGATE_HIGH_START) << HALF_SHIFT) + ch2 + SURROGATE_LOW_BASE; in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC()
698 UChar32 ch, ch2; in T_UConverter_fromUnicode_UTF32_LE() local
738 ch2 = *mySource; in T_UConverter_fromUnicode_UTF32_LE()
739 if (U16_IS_TRAIL(ch2)) { in T_UConverter_fromUnicode_UTF32_LE()
740 ch = ((ch - SURROGATE_HIGH_START) << HALF_SHIFT) + ch2 + SURROGATE_LOW_BASE; in T_UConverter_fromUnicode_UTF32_LE()
808 UChar32 ch, ch2; in T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC() local
850 ch2 = *mySource; in T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC()
851 if (U16_IS_TRAIL(ch2)) in T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC()
853 ch = ((ch - SURROGATE_HIGH_START) << HALF_SHIFT) + ch2 + SURROGATE_LOW_BASE; in T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC()