• Home
  • Raw
  • Download

Lines Matching refs:to_nxt

1445     extern_type* to, extern_type*, extern_type*& to_nxt) const  in do_out()
1448 to_nxt = to; in do_out()
1455 intern_type* to, intern_type*, intern_type*& to_nxt) const in do_in()
1458 to_nxt = to; in do_in()
1464 extern_type* to, extern_type*, extern_type*& to_nxt) const in do_unshift()
1466 to_nxt = to; in do_unshift()
1523 extern_type* to, extern_type* to_end, extern_type*& to_nxt) const in do_out()
1531 to_nxt = to; in do_out()
1532 for (frm_nxt = frm; frm != frm_end && to != to_end; frm = frm_nxt, to = to_nxt) in do_out()
1541 for (to_nxt = to; frm != frm_nxt; ++frm) in do_out()
1543 n = __libcpp_wcrtomb_l(to_nxt, *frm, &save_state, __l); in do_out()
1546 to_nxt += n; in do_out()
1553 to_nxt += n; in do_out()
1554 if (to_nxt == to_end) in do_out()
1563 if (n > static_cast<size_t>(to_end-to_nxt)) // is there room? in do_out()
1566 *to_nxt++ = *p++; in do_out()
1580 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in()
1588 to_nxt = to; in do_in()
1589 for (frm_nxt = frm; frm != frm_end && to != to_end; frm = frm_nxt, to = to_nxt) in do_in()
1598 for (to_nxt = to; frm != frm_nxt; ++to_nxt) in do_in()
1600 n = __libcpp_mbrtowc_l(to_nxt, frm, static_cast<size_t>(fend-frm), in do_in()
1623 to_nxt += n; in do_in()
1624 if (to_nxt == to_end) in do_in()
1629 n = __libcpp_mbrtowc_l(to_nxt, frm_nxt, 1, &st, __l); in do_in()
1632 ++to_nxt; in do_in()
1645 extern_type* to, extern_type* to_end, extern_type*& to_nxt) const in do_unshift()
1647 to_nxt = to; in do_unshift()
1653 if (n > static_cast<size_t>(to_end-to_nxt)) // is there room? in do_unshift()
1656 *to_nxt++ = *p++; in do_unshift()
1727 uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, in utf16_to_utf8() argument
1731 to_nxt = to; in utf16_to_utf8()
1734 if (to_end-to_nxt < 3) in utf16_to_utf8()
1736 *to_nxt++ = static_cast<uint8_t>(0xEF); in utf16_to_utf8()
1737 *to_nxt++ = static_cast<uint8_t>(0xBB); in utf16_to_utf8()
1738 *to_nxt++ = static_cast<uint8_t>(0xBF); in utf16_to_utf8()
1747 if (to_end-to_nxt < 1) in utf16_to_utf8()
1749 *to_nxt++ = static_cast<uint8_t>(wc1); in utf16_to_utf8()
1753 if (to_end-to_nxt < 2) in utf16_to_utf8()
1755 *to_nxt++ = static_cast<uint8_t>(0xC0 | (wc1 >> 6)); in utf16_to_utf8()
1756 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc1 & 0x03F)); in utf16_to_utf8()
1760 if (to_end-to_nxt < 3) in utf16_to_utf8()
1762 *to_nxt++ = static_cast<uint8_t>(0xE0 | (wc1 >> 12)); in utf16_to_utf8()
1763 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0FC0) >> 6)); in utf16_to_utf8()
1764 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc1 & 0x003F)); in utf16_to_utf8()
1773 if (to_end-to_nxt < 4) in utf16_to_utf8()
1780 *to_nxt++ = static_cast<uint8_t>(0xF0 | (z >> 2)); in utf16_to_utf8()
1781 *to_nxt++ = static_cast<uint8_t>(0x80 | ((z & 0x03) << 4) | ((wc1 & 0x003C) >> 2)); in utf16_to_utf8()
1782 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0003) << 4) | ((wc2 & 0x03C0) >> 6)); in utf16_to_utf8()
1783 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc2 & 0x003F)); in utf16_to_utf8()
1791 if (to_end-to_nxt < 3) in utf16_to_utf8()
1793 *to_nxt++ = static_cast<uint8_t>(0xE0 | (wc1 >> 12)); in utf16_to_utf8()
1794 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0FC0) >> 6)); in utf16_to_utf8()
1795 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc1 & 0x003F)); in utf16_to_utf8()
1804 uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, in utf16_to_utf8() argument
1808 to_nxt = to; in utf16_to_utf8()
1811 if (to_end-to_nxt < 3) in utf16_to_utf8()
1813 *to_nxt++ = static_cast<uint8_t>(0xEF); in utf16_to_utf8()
1814 *to_nxt++ = static_cast<uint8_t>(0xBB); in utf16_to_utf8()
1815 *to_nxt++ = static_cast<uint8_t>(0xBF); in utf16_to_utf8()
1824 if (to_end-to_nxt < 1) in utf16_to_utf8()
1826 *to_nxt++ = static_cast<uint8_t>(wc1); in utf16_to_utf8()
1830 if (to_end-to_nxt < 2) in utf16_to_utf8()
1832 *to_nxt++ = static_cast<uint8_t>(0xC0 | (wc1 >> 6)); in utf16_to_utf8()
1833 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc1 & 0x03F)); in utf16_to_utf8()
1837 if (to_end-to_nxt < 3) in utf16_to_utf8()
1839 *to_nxt++ = static_cast<uint8_t>(0xE0 | (wc1 >> 12)); in utf16_to_utf8()
1840 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0FC0) >> 6)); in utf16_to_utf8()
1841 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc1 & 0x003F)); in utf16_to_utf8()
1850 if (to_end-to_nxt < 4) in utf16_to_utf8()
1857 *to_nxt++ = static_cast<uint8_t>(0xF0 | (z >> 2)); in utf16_to_utf8()
1858 *to_nxt++ = static_cast<uint8_t>(0x80 | ((z & 0x03) << 4) | ((wc1 & 0x003C) >> 2)); in utf16_to_utf8()
1859 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0003) << 4) | ((wc2 & 0x03C0) >> 6)); in utf16_to_utf8()
1860 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc2 & 0x003F)); in utf16_to_utf8()
1868 if (to_end-to_nxt < 3) in utf16_to_utf8()
1870 *to_nxt++ = static_cast<uint8_t>(0xE0 | (wc1 >> 12)); in utf16_to_utf8()
1871 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc1 & 0x0FC0) >> 6)); in utf16_to_utf8()
1872 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc1 & 0x003F)); in utf16_to_utf8()
1881 uint16_t* to, uint16_t* to_end, uint16_t*& to_nxt, in utf8_to_utf16() argument
1885 to_nxt = to; in utf8_to_utf16()
1892 for (; frm_nxt < frm_end && to_nxt < to_end; ++to_nxt) in utf8_to_utf16()
1899 *to_nxt = static_cast<uint16_t>(c1); in utf8_to_utf16()
1916 *to_nxt = t; in utf8_to_utf16()
1947 *to_nxt = t; in utf8_to_utf16()
1974 if (to_end-to_nxt < 2) in utf8_to_utf16()
1980 *to_nxt = static_cast<uint16_t>( in utf8_to_utf16()
1985 *++to_nxt = static_cast<uint16_t>( in utf8_to_utf16()
2002 uint32_t* to, uint32_t* to_end, uint32_t*& to_nxt, in utf8_to_utf16() argument
2006 to_nxt = to; in utf8_to_utf16()
2013 for (; frm_nxt < frm_end && to_nxt < to_end; ++to_nxt) in utf8_to_utf16()
2020 *to_nxt = static_cast<uint32_t>(c1); in utf8_to_utf16()
2037 *to_nxt = static_cast<uint32_t>(t); in utf8_to_utf16()
2068 *to_nxt = static_cast<uint32_t>(t); in utf8_to_utf16()
2095 if (to_end-to_nxt < 2) in utf8_to_utf16()
2101 *to_nxt = static_cast<uint32_t>( in utf8_to_utf16()
2106 *++to_nxt = static_cast<uint32_t>( in utf8_to_utf16()
2224 uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, in ucs4_to_utf8() argument
2228 to_nxt = to; in ucs4_to_utf8()
2231 if (to_end-to_nxt < 3) in ucs4_to_utf8()
2233 *to_nxt++ = static_cast<uint8_t>(0xEF); in ucs4_to_utf8()
2234 *to_nxt++ = static_cast<uint8_t>(0xBB); in ucs4_to_utf8()
2235 *to_nxt++ = static_cast<uint8_t>(0xBF); in ucs4_to_utf8()
2244 if (to_end-to_nxt < 1) in ucs4_to_utf8()
2246 *to_nxt++ = static_cast<uint8_t>(wc); in ucs4_to_utf8()
2250 if (to_end-to_nxt < 2) in ucs4_to_utf8()
2252 *to_nxt++ = static_cast<uint8_t>(0xC0 | (wc >> 6)); in ucs4_to_utf8()
2253 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc & 0x03F)); in ucs4_to_utf8()
2257 if (to_end-to_nxt < 3) in ucs4_to_utf8()
2259 *to_nxt++ = static_cast<uint8_t>(0xE0 | (wc >> 12)); in ucs4_to_utf8()
2260 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc & 0x0FC0) >> 6)); in ucs4_to_utf8()
2261 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc & 0x003F)); in ucs4_to_utf8()
2265 if (to_end-to_nxt < 4) in ucs4_to_utf8()
2267 *to_nxt++ = static_cast<uint8_t>(0xF0 | (wc >> 18)); in ucs4_to_utf8()
2268 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc & 0x03F000) >> 12)); in ucs4_to_utf8()
2269 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc & 0x000FC0) >> 6)); in ucs4_to_utf8()
2270 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc & 0x00003F)); in ucs4_to_utf8()
2279 uint32_t* to, uint32_t* to_end, uint32_t*& to_nxt, in utf8_to_ucs4() argument
2283 to_nxt = to; in utf8_to_ucs4()
2290 for (; frm_nxt < frm_end && to_nxt < to_end; ++to_nxt) in utf8_to_ucs4()
2297 *to_nxt = static_cast<uint32_t>(c1); in utf8_to_ucs4()
2315 *to_nxt = t; in utf8_to_ucs4()
2346 *to_nxt = t; in utf8_to_ucs4()
2379 *to_nxt = t; in utf8_to_ucs4()
2491 uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, in ucs2_to_utf8() argument
2495 to_nxt = to; in ucs2_to_utf8()
2498 if (to_end-to_nxt < 3) in ucs2_to_utf8()
2500 *to_nxt++ = static_cast<uint8_t>(0xEF); in ucs2_to_utf8()
2501 *to_nxt++ = static_cast<uint8_t>(0xBB); in ucs2_to_utf8()
2502 *to_nxt++ = static_cast<uint8_t>(0xBF); in ucs2_to_utf8()
2511 if (to_end-to_nxt < 1) in ucs2_to_utf8()
2513 *to_nxt++ = static_cast<uint8_t>(wc); in ucs2_to_utf8()
2517 if (to_end-to_nxt < 2) in ucs2_to_utf8()
2519 *to_nxt++ = static_cast<uint8_t>(0xC0 | (wc >> 6)); in ucs2_to_utf8()
2520 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc & 0x03F)); in ucs2_to_utf8()
2524 if (to_end-to_nxt < 3) in ucs2_to_utf8()
2526 *to_nxt++ = static_cast<uint8_t>(0xE0 | (wc >> 12)); in ucs2_to_utf8()
2527 *to_nxt++ = static_cast<uint8_t>(0x80 | ((wc & 0x0FC0) >> 6)); in ucs2_to_utf8()
2528 *to_nxt++ = static_cast<uint8_t>(0x80 | (wc & 0x003F)); in ucs2_to_utf8()
2537 uint16_t* to, uint16_t* to_end, uint16_t*& to_nxt, in utf8_to_ucs2() argument
2541 to_nxt = to; in utf8_to_ucs2()
2548 for (; frm_nxt < frm_end && to_nxt < to_end; ++to_nxt) in utf8_to_ucs2()
2555 *to_nxt = static_cast<uint16_t>(c1); in utf8_to_ucs2()
2573 *to_nxt = t; in utf8_to_ucs2()
2604 *to_nxt = t; in utf8_to_ucs2()
2687 uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, in ucs4_to_utf16be() argument
2691 to_nxt = to; in ucs4_to_utf16be()
2694 if (to_end-to_nxt < 2) in ucs4_to_utf16be()
2696 *to_nxt++ = static_cast<uint8_t>(0xFE); in ucs4_to_utf16be()
2697 *to_nxt++ = static_cast<uint8_t>(0xFF); in ucs4_to_utf16be()
2706 if (to_end-to_nxt < 2) in ucs4_to_utf16be()
2708 *to_nxt++ = static_cast<uint8_t>(wc >> 8); in ucs4_to_utf16be()
2709 *to_nxt++ = static_cast<uint8_t>(wc); in ucs4_to_utf16be()
2713 if (to_end-to_nxt < 4) in ucs4_to_utf16be()
2719 *to_nxt++ = static_cast<uint8_t>(t >> 8); in ucs4_to_utf16be()
2720 *to_nxt++ = static_cast<uint8_t>(t); in ucs4_to_utf16be()
2722 *to_nxt++ = static_cast<uint8_t>(t >> 8); in ucs4_to_utf16be()
2723 *to_nxt++ = static_cast<uint8_t>(t); in ucs4_to_utf16be()
2732 uint32_t* to, uint32_t* to_end, uint32_t*& to_nxt, in utf16be_to_ucs4() argument
2736 to_nxt = to; in utf16be_to_ucs4()
2742 for (; frm_nxt < frm_end - 1 && to_nxt < to_end; ++to_nxt) in utf16be_to_ucs4()
2751 *to_nxt = static_cast<uint32_t>(c1); in utf16be_to_ucs4()
2767 *to_nxt = t; in utf16be_to_ucs4()
2819 uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, in ucs4_to_utf16le() argument
2823 to_nxt = to; in ucs4_to_utf16le()
2826 if (to_end - to_nxt < 2) in ucs4_to_utf16le()
2828 *to_nxt++ = static_cast<uint8_t>(0xFF); in ucs4_to_utf16le()
2829 *to_nxt++ = static_cast<uint8_t>(0xFE); in ucs4_to_utf16le()
2838 if (to_end-to_nxt < 2) in ucs4_to_utf16le()
2840 *to_nxt++ = static_cast<uint8_t>(wc); in ucs4_to_utf16le()
2841 *to_nxt++ = static_cast<uint8_t>(wc >> 8); in ucs4_to_utf16le()
2845 if (to_end-to_nxt < 4) in ucs4_to_utf16le()
2851 *to_nxt++ = static_cast<uint8_t>(t); in ucs4_to_utf16le()
2852 *to_nxt++ = static_cast<uint8_t>(t >> 8); in ucs4_to_utf16le()
2854 *to_nxt++ = static_cast<uint8_t>(t); in ucs4_to_utf16le()
2855 *to_nxt++ = static_cast<uint8_t>(t >> 8); in ucs4_to_utf16le()
2864 uint32_t* to, uint32_t* to_end, uint32_t*& to_nxt, in utf16le_to_ucs4() argument
2868 to_nxt = to; in utf16le_to_ucs4()
2874 for (; frm_nxt < frm_end - 1 && to_nxt < to_end; ++to_nxt) in utf16le_to_ucs4()
2883 *to_nxt = static_cast<uint32_t>(c1); in utf16le_to_ucs4()
2899 *to_nxt = t; in utf16le_to_ucs4()
2951 uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, in ucs2_to_utf16be() argument
2955 to_nxt = to; in ucs2_to_utf16be()
2958 if (to_end-to_nxt < 2) in ucs2_to_utf16be()
2960 *to_nxt++ = static_cast<uint8_t>(0xFE); in ucs2_to_utf16be()
2961 *to_nxt++ = static_cast<uint8_t>(0xFF); in ucs2_to_utf16be()
2968 if (to_end-to_nxt < 2) in ucs2_to_utf16be()
2970 *to_nxt++ = static_cast<uint8_t>(wc >> 8); in ucs2_to_utf16be()
2971 *to_nxt++ = static_cast<uint8_t>(wc); in ucs2_to_utf16be()
2979 uint16_t* to, uint16_t* to_end, uint16_t*& to_nxt, in utf16be_to_ucs2() argument
2983 to_nxt = to; in utf16be_to_ucs2()
2989 for (; frm_nxt < frm_end - 1 && to_nxt < to_end; ++to_nxt) in utf16be_to_ucs2()
2994 *to_nxt = c1; in utf16be_to_ucs2()
3025 uint8_t* to, uint8_t* to_end, uint8_t*& to_nxt, in ucs2_to_utf16le() argument
3029 to_nxt = to; in ucs2_to_utf16le()
3032 if (to_end-to_nxt < 2) in ucs2_to_utf16le()
3034 *to_nxt++ = static_cast<uint8_t>(0xFF); in ucs2_to_utf16le()
3035 *to_nxt++ = static_cast<uint8_t>(0xFE); in ucs2_to_utf16le()
3042 if (to_end-to_nxt < 2) in ucs2_to_utf16le()
3044 *to_nxt++ = static_cast<uint8_t>(wc); in ucs2_to_utf16le()
3045 *to_nxt++ = static_cast<uint8_t>(wc >> 8); in ucs2_to_utf16le()
3053 uint16_t* to, uint16_t* to_end, uint16_t*& to_nxt, in utf16le_to_ucs2() argument
3057 to_nxt = to; in utf16le_to_ucs2()
3063 for (; frm_nxt < frm_end - 1 && to_nxt < to_end; ++to_nxt) in utf16le_to_ucs2()
3068 *to_nxt = c1; in utf16le_to_ucs2()
3108 extern_type* to, extern_type* to_end, extern_type*& to_nxt) const in do_out()
3118 to_nxt = to + (_to_nxt - _to); in do_out()
3125 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in()
3135 to_nxt = to + (_to_nxt - _to); in do_in()
3141 extern_type* to, extern_type*, extern_type*& to_nxt) const in do_unshift()
3143 to_nxt = to; in do_unshift()
3185 extern_type* to, extern_type* to_end, extern_type*& to_nxt) const in do_out()
3195 to_nxt = to + (_to_nxt - _to); in do_out()
3202 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in()
3212 to_nxt = to + (_to_nxt - _to); in do_in()
3218 extern_type* to, extern_type*, extern_type*& to_nxt) const in do_unshift()
3220 to_nxt = to; in do_unshift()
3256 extern_type* to, extern_type* to_end, extern_type*& to_nxt) const in do_out()
3278 to_nxt = to + (_to_nxt - _to); in do_out()
3285 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in()
3304 to_nxt = to + (_to_nxt - _to); in do_in()
3310 extern_type* to, extern_type*, extern_type*& to_nxt) const in do_unshift()
3312 to_nxt = to; in do_unshift()
3350 extern_type* to, extern_type* to_end, extern_type*& to_nxt) const in do_out()
3361 to_nxt = to + (_to_nxt - _to); in do_out()
3368 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in()
3379 to_nxt = to + (_to_nxt - _to); in do_in()
3385 extern_type* to, extern_type*, extern_type*& to_nxt) const in do_unshift()
3387 to_nxt = to; in do_unshift()
3425 extern_type* to, extern_type* to_end, extern_type*& to_nxt) const in do_out()
3436 to_nxt = to + (_to_nxt - _to); in do_out()
3443 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in()
3454 to_nxt = to + (_to_nxt - _to); in do_in()
3460 extern_type* to, extern_type*, extern_type*& to_nxt) const in do_unshift()
3462 to_nxt = to; in do_unshift()
3500 extern_type* to, extern_type* to_end, extern_type*& to_nxt) const in do_out()
3511 to_nxt = to + (_to_nxt - _to); in do_out()
3518 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in()
3529 to_nxt = to + (_to_nxt - _to); in do_in()
3535 extern_type* to, extern_type*, extern_type*& to_nxt) const in do_unshift()
3537 to_nxt = to; in do_unshift()
3575 extern_type* to, extern_type* to_end, extern_type*& to_nxt) const in do_out()
3586 to_nxt = to + (_to_nxt - _to); in do_out()
3593 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in()
3604 to_nxt = to + (_to_nxt - _to); in do_in()
3610 extern_type* to, extern_type*, extern_type*& to_nxt) const in do_unshift()
3612 to_nxt = to; in do_unshift()
3650 extern_type* to, extern_type* to_end, extern_type*& to_nxt) const in do_out()
3661 to_nxt = to + (_to_nxt - _to); in do_out()
3668 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in()
3679 to_nxt = to + (_to_nxt - _to); in do_in()
3685 extern_type* to, extern_type*, extern_type*& to_nxt) const in do_unshift()
3687 to_nxt = to; in do_unshift()
3725 extern_type* to, extern_type* to_end, extern_type*& to_nxt) const in do_out()
3736 to_nxt = to + (_to_nxt - _to); in do_out()
3743 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in()
3754 to_nxt = to + (_to_nxt - _to); in do_in()
3760 extern_type* to, extern_type*, extern_type*& to_nxt) const in do_unshift()
3762 to_nxt = to; in do_unshift()
3800 extern_type* to, extern_type* to_end, extern_type*& to_nxt) const in do_out()
3811 to_nxt = to + (_to_nxt - _to); in do_out()
3818 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in()
3829 to_nxt = to + (_to_nxt - _to); in do_in()
3835 extern_type* to, extern_type*, extern_type*& to_nxt) const in do_unshift()
3837 to_nxt = to; in do_unshift()
3875 extern_type* to, extern_type* to_end, extern_type*& to_nxt) const in do_out()
3886 to_nxt = to + (_to_nxt - _to); in do_out()
3893 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in()
3904 to_nxt = to + (_to_nxt - _to); in do_in()
3910 extern_type* to, extern_type*, extern_type*& to_nxt) const in do_unshift()
3912 to_nxt = to; in do_unshift()
3950 extern_type* to, extern_type* to_end, extern_type*& to_nxt) const in do_out()
3961 to_nxt = to + (_to_nxt - _to); in do_out()
3968 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in()
3979 to_nxt = to + (_to_nxt - _to); in do_in()
3985 extern_type* to, extern_type*, extern_type*& to_nxt) const in do_unshift()
3987 to_nxt = to; in do_unshift()
4025 extern_type* to, extern_type* to_end, extern_type*& to_nxt) const in do_out()
4036 to_nxt = to + (_to_nxt - _to); in do_out()
4043 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in()
4054 to_nxt = to + (_to_nxt - _to); in do_in()
4060 extern_type* to, extern_type*, extern_type*& to_nxt) const in do_unshift()
4062 to_nxt = to; in do_unshift()
4100 extern_type* to, extern_type* to_end, extern_type*& to_nxt) const in do_out()
4111 to_nxt = to + (_to_nxt - _to); in do_out()
4118 intern_type* to, intern_type* to_end, intern_type*& to_nxt) const in do_in()
4129 to_nxt = to + (_to_nxt - _to); in do_in()
4135 extern_type* to, extern_type*, extern_type*& to_nxt) const in do_unshift()
4137 to_nxt = to; in do_unshift()