Searched refs:__how_much (Results 1 – 5 of 5) sorted by relevance
| /openbsd/src/gnu/gcc/libstdc++-v3/include/ext/ |
| D | rc_string_base.h | 641 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()
|
| D | sso_string_base.h | 511 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()
|
| D | vstring.tcc | 111 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/ |
| D | basic_string.tcc | 455 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/ |
| D | basic_string.tcc | 401 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()
|