Home
last modified time | relevance | path

Searched refs:__how_much (Results 1 – 5 of 5) sorted by relevance

/openbsd/src/gnu/gcc/libstdc++-v3/include/ext/
Drc_string_base.h641 const size_type __how_much = _M_length() - __pos - __len1; in _M_mutate() local
650 if (__how_much) in _M_mutate()
652 _M_data() + __pos + __len1, __how_much); in _M_mutate()
664 const size_type __how_much = _M_length() - __pos - __n; in _M_erase() local
674 if (__how_much) in _M_erase()
676 _M_data() + __pos + __n, __how_much); in _M_erase()
681 else if (__how_much && __n) in _M_erase()
685 _M_data() + __pos + __n, __how_much); in _M_erase()
Dsso_string_base.h511 const size_type __how_much = _M_length() - __pos - __len1; in _M_mutate() local
520 if (__how_much) in _M_mutate()
522 _M_data() + __pos + __len1, __how_much); in _M_mutate()
534 const size_type __how_much = _M_length() - __pos - __n; in _M_erase() local
536 if (__how_much && __n) in _M_erase()
538 __how_much); in _M_erase()
Dvstring.tcc111 const size_type __how_much = __old_size - __pos1 - __n1; in _M_replace_aux() local
112 if (__how_much && __n1 != __n2) in _M_replace_aux()
113 this->_S_move(__p + __n2, __p + __n1, __how_much); in _M_replace_aux()
141 const size_type __how_much = __old_size - __pos - __len1; in _M_replace() local
144 if (__how_much && __len1 != __len2) in _M_replace()
145 this->_S_move(__p + __len2, __p + __len1, __how_much); in _M_replace()
154 if (__how_much && __len1 != __len2) in _M_replace()
155 this->_S_move(__p + __len2, __p + __len1, __how_much); in _M_replace()
/openbsd/src/gnu/gcc/libstdc++-v3/include/bits/
Dbasic_string.tcc455 const size_type __how_much = __old_size - __pos - __len1; in _M_mutate() local
465 if (__how_much) in _M_mutate()
467 _M_data() + __pos + __len1, __how_much); in _M_mutate()
472 else if (__how_much && __len1 != __len2) in _M_mutate()
476 _M_data() + __pos + __len1, __how_much); in _M_mutate()
/openbsd/src/gnu/lib/libstdc++/libstdc++/include/bits/
Dbasic_string.tcc401 const size_type __how_much = __old_size - __pos - __len1; in _M_mutate() local
426 if (__how_much) in _M_mutate()
428 __src, __how_much); in _M_mutate()
438 else if (__how_much && __len1 != __len2) in _M_mutate()
441 traits_type::move(_M_data() + __pos + __len2, __src, __how_much); in _M_mutate()