Home
last modified time | relevance | path

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

/openbsd/src/gnu/gcc/libstdc++-v3/include/ext/
Dsso_string_base.h412 size_type __dnew = static_cast<size_type>(std::distance(__beg, __end)); in _M_construct() local
414 if (__dnew > size_type(_S_local_capacity)) in _M_construct()
416 _M_data(_M_create(__dnew, size_type(0))); in _M_construct()
417 _M_capacity(__dnew); in _M_construct()
429 _M_set_length(__dnew); in _M_construct()
Drc_string_base.h552 const size_type __dnew = static_cast<size_type>(std::distance(__beg, in _S_construct() local
555 _Rep* __r = _Rep::_S_create(__dnew, size_type(0), __a); in _S_construct()
563 __r->_M_set_length(__dnew); in _S_construct()
/openbsd/src/gnu/lib/libstdc++/libstdc++/include/bits/
Dbasic_string.tcc147 size_type __dnew = static_cast<size_type>(std::distance(__beg, __end)); in _S_construct() local
150 _Rep* __r = _Rep::_S_create(__dnew, __a); in _S_construct()
158 __r->_M_length = __dnew; in _S_construct()
160 __r->_M_refdata()[__dnew] = _Rep::_S_terminal; // grrr. in _S_construct()
638 size_type __dnew = static_cast<size_type>(std::distance(__k1, __k2)); in _M_replace_safe() local
642 if (__dmax <= __dnew) in _M_replace_safe()
645 _M_mutate(__off, __dold, __dnew); in _M_replace_safe()
648 if (__dnew) in _M_replace_safe()
/openbsd/src/gnu/gcc/libstdc++-v3/include/bits/
Dbasic_string.tcc148 const size_type __dnew = static_cast<size_type>(std::distance(__beg, in _S_construct() local
151 _Rep* __r = _Rep::_S_create(__dnew, size_type(0), __a); in _S_construct()
159 __r->_M_set_length_and_sharable(__dnew); in _S_construct()
/openbsd/src/gnu/lib/libstdc++/libstdc++/
DChangeLog1884 forward_iterator_tag)): Delay the declaration of __dnew,