Lines Matching refs:to_nxt
1296 extern_type*& to_nxt) const { in do_out()
1298 to_nxt = to; in do_out()
1309 intern_type*& to_nxt) const { in do_in()
1311 to_nxt = to; in do_in()
1316 …r, mbstate_t>::do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
1317 to_nxt = to; in do_unshift()
1361 extern_type*& to_nxt) const { in do_out()
1368 to_nxt = to; in do_out()
1369 for (frm_nxt = frm; frm != frm_end && to != to_end; frm = frm_nxt, to = to_nxt) { in do_out()
1376 for (to_nxt = to; frm != frm_nxt; ++frm) { in do_out()
1377 n = __libcpp_wcrtomb_l(to_nxt, *frm, &save_state, __l_); in do_out()
1380 to_nxt += n; in do_out()
1387 to_nxt += n; in do_out()
1388 if (to_nxt == to_end) in do_out()
1397 if (n > static_cast<size_t>(to_end - to_nxt)) // is there room? in do_out()
1400 *to_nxt++ = *p++; in do_out()
1418 intern_type*& to_nxt) const { in do_in()
1425 to_nxt = to; in do_in()
1426 for (frm_nxt = frm; frm != frm_end && to != to_end; frm = frm_nxt, to = to_nxt) { in do_in()
1433 for (to_nxt = to; frm != frm_nxt; ++to_nxt) { in do_in()
1434 n = __libcpp_mbrtowc_l(to_nxt, frm, static_cast<size_t>(fend - frm), &save_state, __l_); in do_in()
1455 to_nxt += n; in do_in()
1456 if (to_nxt == to_end) in do_in()
1461 n = __libcpp_mbrtowc_l(to_nxt, frm_nxt, 1, &st, __l_); in do_in()
1464 ++to_nxt; in do_in()
1476 state_type& st, extern_type* to, extern_type* to_end, extern_type*& to_nxt) const { in do_unshift()
1477 to_nxt = to; in do_unshift()
1483 if (n > static_cast<size_t>(to_end - to_nxt)) // is there room? in do_unshift()
1486 *to_nxt++ = *p++; in do_unshift()
1550 uint8_t*& to_nxt, in utf16_to_utf8() argument
1554 to_nxt = to; in utf16_to_utf8()
1556 if (to_end - to_nxt < 3) in utf16_to_utf8()
1558 *to_nxt++ = static_cast<uint8_t>(0xEF); in utf16_to_utf8()
1559 *to_nxt++ = static_cast<uint8_t>(0xBB); in utf16_to_utf8()
1560 *to_nxt++ = static_cast<uint8_t>(0xBF); in utf16_to_utf8()
1567 if (to_end - to_nxt < 1) in utf16_to_utf8()
1569 *to_nxt++ = static_cast<uint8_t>(wc1); in utf16_to_utf8()
1571 if (to_end - to_nxt < 2) in utf16_to_utf8()
1573 *to_nxt++ = static_cast<uint8_t>(0xC0 | (wc1 >> 6)); in utf16_to_utf8()
1574 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc1 & 0x03F)); in utf16_to_utf8()
1576 if (to_end - to_nxt < 3) in utf16_to_utf8()
1578 *to_nxt++ = static_cast<uint8_t>(0xE0 | (wc1 >> 12)); in utf16_to_utf8()
1579 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0FC0) >> 6)); in utf16_to_utf8()
1580 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc1 & 0x003F)); in utf16_to_utf8()
1587 if (to_end - to_nxt < 4) in utf16_to_utf8()
1593 *to_nxt++ = static_cast<uint8_t>(0xF0 | (z >> 2)); in utf16_to_utf8()
1594 *to_nxt++ = static_cast<uint8_t>(0x80 | ((z & 0x03) << 4) | ((wc1 & 0x003C) >> 2)); in utf16_to_utf8()
1595 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0003) << 4) | ((wc2 & 0x03C0) >> 6)); in utf16_to_utf8()
1596 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc2 & 0x003F)); in utf16_to_utf8()
1600 if (to_end - to_nxt < 3) in utf16_to_utf8()
1602 *to_nxt++ = static_cast<uint8_t>(0xE0 | (wc1 >> 12)); in utf16_to_utf8()
1603 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0FC0) >> 6)); in utf16_to_utf8()
1604 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc1 & 0x003F)); in utf16_to_utf8()
1616 uint8_t*& to_nxt, in utf16_to_utf8() argument
1620 to_nxt = to; in utf16_to_utf8()
1622 if (to_end - to_nxt < 3) in utf16_to_utf8()
1624 *to_nxt++ = static_cast<uint8_t>(0xEF); in utf16_to_utf8()
1625 *to_nxt++ = static_cast<uint8_t>(0xBB); in utf16_to_utf8()
1626 *to_nxt++ = static_cast<uint8_t>(0xBF); in utf16_to_utf8()
1633 if (to_end - to_nxt < 1) in utf16_to_utf8()
1635 *to_nxt++ = static_cast<uint8_t>(wc1); in utf16_to_utf8()
1637 if (to_end - to_nxt < 2) in utf16_to_utf8()
1639 *to_nxt++ = static_cast<uint8_t>(0xC0 | (wc1 >> 6)); in utf16_to_utf8()
1640 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc1 & 0x03F)); in utf16_to_utf8()
1642 if (to_end - to_nxt < 3) in utf16_to_utf8()
1644 *to_nxt++ = static_cast<uint8_t>(0xE0 | (wc1 >> 12)); in utf16_to_utf8()
1645 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0FC0) >> 6)); in utf16_to_utf8()
1646 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc1 & 0x003F)); in utf16_to_utf8()
1653 if (to_end - to_nxt < 4) in utf16_to_utf8()
1659 *to_nxt++ = static_cast<uint8_t>(0xF0 | (z >> 2)); in utf16_to_utf8()
1660 *to_nxt++ = static_cast<uint8_t>(0x80 | ((z & 0x03) << 4) | ((wc1 & 0x003C) >> 2)); in utf16_to_utf8()
1661 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0003) << 4) | ((wc2 & 0x03C0) >> 6)); in utf16_to_utf8()
1662 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc2 & 0x003F)); in utf16_to_utf8()
1666 if (to_end - to_nxt < 3) in utf16_to_utf8()
1668 *to_nxt++ = static_cast<uint8_t>(0xE0 | (wc1 >> 12)); in utf16_to_utf8()
1669 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0FC0) >> 6)); in utf16_to_utf8()
1670 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc1 & 0x003F)); in utf16_to_utf8()
1682 uint16_t*& to_nxt, in utf8_to_utf16() argument
1686 to_nxt = to; in utf8_to_utf16()
1691 for (; frm_nxt < frm_end && to_nxt < to_end; ++to_nxt) { in utf8_to_utf16()
1696 *to_nxt = static_cast<uint16_t>(c1); in utf8_to_utf16()
1709 *to_nxt = t; in utf8_to_utf16()
1737 *to_nxt = t; in utf8_to_utf16()
1767 if (to_end - to_nxt < 2) in utf8_to_utf16()
1771 *to_nxt = static_cast<uint16_t>( in utf8_to_utf16()
1773 *++to_nxt = static_cast<uint16_t>(0xDC00 | ((c3 & 0x0F) << 6) | (c4 & 0x3F)); in utf8_to_utf16()
1788 uint32_t*& to_nxt, in utf8_to_utf16() argument
1792 to_nxt = to; in utf8_to_utf16()
1797 for (; frm_nxt < frm_end && to_nxt < to_end; ++to_nxt) { in utf8_to_utf16()
1802 *to_nxt = static_cast<uint32_t>(c1); in utf8_to_utf16()
1815 *to_nxt = static_cast<uint32_t>(t); in utf8_to_utf16()
1843 *to_nxt = static_cast<uint32_t>(t); in utf8_to_utf16()
1873 if (to_end - to_nxt < 2) in utf8_to_utf16()
1877 *to_nxt = static_cast<uint32_t>( in utf8_to_utf16()
1879 *++to_nxt = static_cast<uint32_t>(0xDC00 | ((c3 & 0x0F) << 6) | (c4 & 0x3F)); in utf8_to_utf16()
1977 uint8_t*& to_nxt, in ucs4_to_utf8() argument
1981 to_nxt = to; in ucs4_to_utf8()
1983 if (to_end - to_nxt < 3) in ucs4_to_utf8()
1985 *to_nxt++ = static_cast<uint8_t>(0xEF); in ucs4_to_utf8()
1986 *to_nxt++ = static_cast<uint8_t>(0xBB); in ucs4_to_utf8()
1987 *to_nxt++ = static_cast<uint8_t>(0xBF); in ucs4_to_utf8()
1994 if (to_end - to_nxt < 1) in ucs4_to_utf8()
1996 *to_nxt++ = static_cast<uint8_t>(wc); in ucs4_to_utf8()
1998 if (to_end - to_nxt < 2) in ucs4_to_utf8()
2000 *to_nxt++ = static_cast<uint8_t>(0xC0 | (wc >> 6)); in ucs4_to_utf8()
2001 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc & 0x03F)); in ucs4_to_utf8()
2003 if (to_end - to_nxt < 3) in ucs4_to_utf8()
2005 *to_nxt++ = static_cast<uint8_t>(0xE0 | (wc >> 12)); in ucs4_to_utf8()
2006 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc & 0x0FC0) >> 6)); in ucs4_to_utf8()
2007 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc & 0x003F)); in ucs4_to_utf8()
2010 if (to_end - to_nxt < 4) in ucs4_to_utf8()
2012 *to_nxt++ = static_cast<uint8_t>(0xF0 | (wc >> 18)); in ucs4_to_utf8()
2013 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc & 0x03F000) >> 12)); in ucs4_to_utf8()
2014 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc & 0x000FC0) >> 6)); in ucs4_to_utf8()
2015 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc & 0x00003F)); in ucs4_to_utf8()
2027 uint32_t*& to_nxt, in utf8_to_ucs4() argument
2031 to_nxt = to; in utf8_to_ucs4()
2036 for (; frm_nxt < frm_end && to_nxt < to_end; ++to_nxt) { in utf8_to_ucs4()
2041 *to_nxt = static_cast<uint32_t>(c1); in utf8_to_ucs4()
2054 *to_nxt = t; in utf8_to_ucs4()
2082 *to_nxt = t; in utf8_to_ucs4()
2115 *to_nxt = t; in utf8_to_ucs4()
2211 uint8_t*& to_nxt, in ucs2_to_utf8() argument
2215 to_nxt = to; in ucs2_to_utf8()
2217 if (to_end - to_nxt < 3) in ucs2_to_utf8()
2219 *to_nxt++ = static_cast<uint8_t>(0xEF); in ucs2_to_utf8()
2220 *to_nxt++ = static_cast<uint8_t>(0xBB); in ucs2_to_utf8()
2221 *to_nxt++ = static_cast<uint8_t>(0xBF); in ucs2_to_utf8()
2228 if (to_end - to_nxt < 1) in ucs2_to_utf8()
2230 *to_nxt++ = static_cast<uint8_t>(wc); in ucs2_to_utf8()
2232 if (to_end - to_nxt < 2) in ucs2_to_utf8()
2234 *to_nxt++ = static_cast<uint8_t>(0xC0 | (wc >> 6)); in ucs2_to_utf8()
2235 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc & 0x03F)); in ucs2_to_utf8()
2238 if (to_end - to_nxt < 3) in ucs2_to_utf8()
2240 *to_nxt++ = static_cast<uint8_t>(0xE0 | (wc >> 12)); in ucs2_to_utf8()
2241 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc & 0x0FC0) >> 6)); in ucs2_to_utf8()
2242 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc & 0x003F)); in ucs2_to_utf8()
2254 uint16_t*& to_nxt, in utf8_to_ucs2() argument
2258 to_nxt = to; in utf8_to_ucs2()
2263 for (; frm_nxt < frm_end && to_nxt < to_end; ++to_nxt) { in utf8_to_ucs2()
2268 *to_nxt = static_cast<uint16_t>(c1); in utf8_to_ucs2()
2281 *to_nxt = t; in utf8_to_ucs2()
2309 *to_nxt = t; in utf8_to_ucs2()
2380 uint8_t*& to_nxt, in ucs4_to_utf16be() argument
2384 to_nxt = to; in ucs4_to_utf16be()
2386 if (to_end - to_nxt < 2) in ucs4_to_utf16be()
2388 *to_nxt++ = static_cast<uint8_t>(0xFE); in ucs4_to_utf16be()
2389 *to_nxt++ = static_cast<uint8_t>(0xFF); in ucs4_to_utf16be()
2396 if (to_end - to_nxt < 2) in ucs4_to_utf16be()
2398 *to_nxt++ = static_cast<uint8_t>(wc >> 8); in ucs4_to_utf16be()
2399 *to_nxt++ = static_cast<uint8_t>(wc); in ucs4_to_utf16be()
2401 if (to_end - to_nxt < 4) in ucs4_to_utf16be()
2404 *to_nxt++ = static_cast<uint8_t>(t >> 8); in ucs4_to_utf16be()
2405 *to_nxt++ = static_cast<uint8_t>(t); in ucs4_to_utf16be()
2407 *to_nxt++ = static_cast<uint8_t>(t >> 8); in ucs4_to_utf16be()
2408 *to_nxt++ = static_cast<uint8_t>(t); in ucs4_to_utf16be()
2420 uint32_t*& to_nxt, in utf16be_to_ucs4() argument
2424 to_nxt = to; in utf16be_to_ucs4()
2429 for (; frm_nxt < frm_end - 1 && to_nxt < to_end; ++to_nxt) { in utf16be_to_ucs4()
2436 *to_nxt = static_cast<uint32_t>(c1); in utf16be_to_ucs4()
2447 *to_nxt = t; in utf16be_to_ucs4()
2494 uint8_t*& to_nxt, in ucs4_to_utf16le() argument
2498 to_nxt = to; in ucs4_to_utf16le()
2500 if (to_end - to_nxt < 2) in ucs4_to_utf16le()
2502 *to_nxt++ = static_cast<uint8_t>(0xFF); in ucs4_to_utf16le()
2503 *to_nxt++ = static_cast<uint8_t>(0xFE); in ucs4_to_utf16le()
2510 if (to_end - to_nxt < 2) in ucs4_to_utf16le()
2512 *to_nxt++ = static_cast<uint8_t>(wc); in ucs4_to_utf16le()
2513 *to_nxt++ = static_cast<uint8_t>(wc >> 8); in ucs4_to_utf16le()
2515 if (to_end - to_nxt < 4) in ucs4_to_utf16le()
2518 *to_nxt++ = static_cast<uint8_t>(t); in ucs4_to_utf16le()
2519 *to_nxt++ = static_cast<uint8_t>(t >> 8); in ucs4_to_utf16le()
2521 *to_nxt++ = static_cast<uint8_t>(t); in ucs4_to_utf16le()
2522 *to_nxt++ = static_cast<uint8_t>(t >> 8); in ucs4_to_utf16le()
2534 uint32_t*& to_nxt, in utf16le_to_ucs4() argument
2538 to_nxt = to; in utf16le_to_ucs4()
2543 for (; frm_nxt < frm_end - 1 && to_nxt < to_end; ++to_nxt) { in utf16le_to_ucs4()
2550 *to_nxt = static_cast<uint32_t>(c1); in utf16le_to_ucs4()
2561 *to_nxt = t; in utf16le_to_ucs4()
2608 uint8_t*& to_nxt, in ucs2_to_utf16be() argument
2612 to_nxt = to; in ucs2_to_utf16be()
2614 if (to_end - to_nxt < 2) in ucs2_to_utf16be()
2616 *to_nxt++ = static_cast<uint8_t>(0xFE); in ucs2_to_utf16be()
2617 *to_nxt++ = static_cast<uint8_t>(0xFF); in ucs2_to_utf16be()
2623 if (to_end - to_nxt < 2) in ucs2_to_utf16be()
2625 *to_nxt++ = static_cast<uint8_t>(wc >> 8); in ucs2_to_utf16be()
2626 *to_nxt++ = static_cast<uint8_t>(wc); in ucs2_to_utf16be()
2637 uint16_t*& to_nxt, in utf16be_to_ucs2() argument
2641 to_nxt = to; in utf16be_to_ucs2()
2646 for (; frm_nxt < frm_end - 1 && to_nxt < to_end; ++to_nxt) { in utf16be_to_ucs2()
2650 *to_nxt = c1; in utf16be_to_ucs2()
2682 uint8_t*& to_nxt, in ucs2_to_utf16le() argument
2686 to_nxt = to; in ucs2_to_utf16le()
2688 if (to_end - to_nxt < 2) in ucs2_to_utf16le()
2690 *to_nxt++ = static_cast<uint8_t>(0xFF); in ucs2_to_utf16le()
2691 *to_nxt++ = static_cast<uint8_t>(0xFE); in ucs2_to_utf16le()
2697 if (to_end - to_nxt < 2) in ucs2_to_utf16le()
2699 *to_nxt++ = static_cast<uint8_t>(wc); in ucs2_to_utf16le()
2700 *to_nxt++ = static_cast<uint8_t>(wc >> 8); in ucs2_to_utf16le()
2711 uint16_t*& to_nxt, in utf16le_to_ucs2() argument
2715 to_nxt = to; in utf16le_to_ucs2()
2720 for (; frm_nxt < frm_end - 1 && to_nxt < to_end; ++to_nxt) { in utf16le_to_ucs2()
2724 *to_nxt = c1; in utf16le_to_ucs2()
2766 extern_type*& to_nxt) const { in do_out()
2775 to_nxt = to + (_to_nxt - _to); in do_out()
2786 intern_type*& to_nxt) const { in do_in()
2795 to_nxt = to + (_to_nxt - _to); in do_in()
2800 …r, mbstate_t>::do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
2801 to_nxt = to; in do_unshift()
2833 extern_type*& to_nxt) const { in do_out()
2842 to_nxt = to + (_to_nxt - _to); in do_out()
2853 intern_type*& to_nxt) const { in do_in()
2862 to_nxt = to + (_to_nxt - _to); in do_in()
2867 state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
2868 to_nxt = to; in do_unshift()
2900 extern_type*& to_nxt) const { in do_out()
2909 to_nxt = to + (_to_nxt - _to); in do_out()
2920 intern_type*& to_nxt) const { in do_in()
2929 to_nxt = to + (_to_nxt - _to); in do_in()
2934 …r, mbstate_t>::do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
2935 to_nxt = to; in do_unshift()
2967 extern_type*& to_nxt) const { in do_out()
2976 to_nxt = to + (_to_nxt - _to); in do_out()
2987 intern_type*& to_nxt) const { in do_in()
2996 to_nxt = to + (_to_nxt - _to); in do_in()
3001 state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
3002 to_nxt = to; in do_unshift()
3031 extern_type*& to_nxt) const { in do_out()
3050 to_nxt = to + (_to_nxt - _to); in do_out()
3061 intern_type*& to_nxt) const { in do_in()
3077 to_nxt = to + (_to_nxt - _to); in do_in()
3082 …utf8<wchar_t>::do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
3083 to_nxt = to; in do_unshift()
3125 extern_type*& to_nxt) const { in do_out()
3134 to_nxt = to + (_to_nxt - _to); in do_out()
3145 intern_type*& to_nxt) const { in do_in()
3154 to_nxt = to + (_to_nxt - _to); in do_in()
3159 …tf8<char16_t>::do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
3160 to_nxt = to; in do_unshift()
3192 extern_type*& to_nxt) const { in do_out()
3201 to_nxt = to + (_to_nxt - _to); in do_out()
3212 intern_type*& to_nxt) const { in do_in()
3221 to_nxt = to + (_to_nxt - _to); in do_in()
3226 …tf8<char32_t>::do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
3227 to_nxt = to; in do_unshift()
3260 extern_type*& to_nxt) const { in do_out()
3279 to_nxt = to + (_to_nxt - _to); in do_out()
3290 intern_type*& to_nxt) const { in do_in()
3306 to_nxt = to + (_to_nxt - _to); in do_in()
3311 …har_t, false>::do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
3312 to_nxt = to; in do_unshift()
3352 extern_type*& to_nxt) const { in do_out()
3371 to_nxt = to + (_to_nxt - _to); in do_out()
3382 intern_type*& to_nxt) const { in do_in()
3398 to_nxt = to + (_to_nxt - _to); in do_in()
3403 …char_t, true>::do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
3404 to_nxt = to; in do_unshift()
3445 extern_type*& to_nxt) const { in do_out()
3454 to_nxt = to + (_to_nxt - _to); in do_out()
3465 intern_type*& to_nxt) const { in do_in()
3474 to_nxt = to + (_to_nxt - _to); in do_in()
3479 …r16_t, false>::do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
3480 to_nxt = to; in do_unshift()
3512 extern_type*& to_nxt) const { in do_out()
3521 to_nxt = to + (_to_nxt - _to); in do_out()
3532 intern_type*& to_nxt) const { in do_in()
3541 to_nxt = to + (_to_nxt - _to); in do_in()
3546 …ar16_t, true>::do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
3547 to_nxt = to; in do_unshift()
3579 extern_type*& to_nxt) const { in do_out()
3588 to_nxt = to + (_to_nxt - _to); in do_out()
3599 intern_type*& to_nxt) const { in do_in()
3608 to_nxt = to + (_to_nxt - _to); in do_in()
3613 …r32_t, false>::do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
3614 to_nxt = to; in do_unshift()
3646 extern_type*& to_nxt) const { in do_out()
3655 to_nxt = to + (_to_nxt - _to); in do_out()
3666 intern_type*& to_nxt) const { in do_in()
3675 to_nxt = to + (_to_nxt - _to); in do_in()
3680 …ar32_t, true>::do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
3681 to_nxt = to; in do_unshift()
3714 extern_type*& to_nxt) const { in do_out()
3729 to_nxt = to + (_to_nxt - _to); in do_out()
3740 intern_type*& to_nxt) const { in do_in()
3755 to_nxt = to + (_to_nxt - _to); in do_in()
3760 …tf16<wchar_t>::do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
3761 to_nxt = to; in do_unshift()
3792 extern_type*& to_nxt) const { in do_out()
3801 to_nxt = to + (_to_nxt - _to); in do_out()
3812 intern_type*& to_nxt) const { in do_in()
3821 to_nxt = to + (_to_nxt - _to); in do_in()
3826 …f16<char16_t>::do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
3827 to_nxt = to; in do_unshift()
3859 extern_type*& to_nxt) const { in do_out()
3868 to_nxt = to + (_to_nxt - _to); in do_out()
3879 intern_type*& to_nxt) const { in do_in()
3888 to_nxt = to + (_to_nxt - _to); in do_in()
3893 …f16<char32_t>::do_unshift(state_type&, extern_type* to, extern_type*, extern_type*& to_nxt) const { in do_unshift()
3894 to_nxt = to; in do_unshift()