Lines Matching refs:ch2
218 UChar32 ch, ch2; in T_UConverter_fromUnicode_UTF32_BE() local
254 ch2 = *mySource; in T_UConverter_fromUnicode_UTF32_BE()
255 if (U_IS_TRAIL(ch2)) { in T_UConverter_fromUnicode_UTF32_BE()
256 ch = ((ch - SURROGATE_HIGH_START) << HALF_SHIFT) + ch2 + SURROGATE_LOW_BASE; in T_UConverter_fromUnicode_UTF32_BE()
320 UChar32 ch, ch2; in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC() local
358 ch2 = *mySource; in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC()
359 if (U_IS_TRAIL(ch2)) { in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC()
360 ch = ((ch - SURROGATE_HIGH_START) << HALF_SHIFT) + ch2 + SURROGATE_LOW_BASE; in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC()
693 UChar32 ch, ch2; in T_UConverter_fromUnicode_UTF32_LE() local
733 ch2 = *mySource; in T_UConverter_fromUnicode_UTF32_LE()
734 if (U16_IS_TRAIL(ch2)) { in T_UConverter_fromUnicode_UTF32_LE()
735 ch = ((ch - SURROGATE_HIGH_START) << HALF_SHIFT) + ch2 + SURROGATE_LOW_BASE; in T_UConverter_fromUnicode_UTF32_LE()
803 UChar32 ch, ch2; in T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC() local
845 ch2 = *mySource; in T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC()
846 if (U16_IS_TRAIL(ch2)) in T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC()
848 ch = ((ch - SURROGATE_HIGH_START) << HALF_SHIFT) + ch2 + SURROGATE_LOW_BASE; in T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC()