Searched refs:_M_buf (Results 1 – 9 of 9) sorted by relevance
/dragonfly/contrib/gcc-8.0/libstdc++-v3/src/c++98/ |
H A D | strstream.cc | 338 { basic_ios<char>::init(&_M_buf); } in istrstream() 342 { basic_ios<char>::init(&_M_buf); } in istrstream() 346 { basic_ios<char>::init(&_M_buf); } in istrstream() 350 { basic_ios<char>::init(&_M_buf); } in istrstream() 360 { return _M_buf.str(); } in str() 379 { _M_buf.freeze(freezeflag); } in freeze() 383 { return _M_buf.str(); } in str() 387 { return _M_buf.pcount(); } in pcount() 406 { _M_buf.freeze(freezeflag); } in freeze() 410 { return _M_buf.pcount(); } in pcount() [all …]
|
/dragonfly/contrib/gcc-4.7/libstdc++-v3/src/c++98/ |
H A D | strstream.cc | 339 { basic_ios<char>::init(&_M_buf); } in istrstream() 343 { basic_ios<char>::init(&_M_buf); } in istrstream() 347 { basic_ios<char>::init(&_M_buf); } in istrstream() 351 { basic_ios<char>::init(&_M_buf); } in istrstream() 361 { return _M_buf.str(); } in str() 380 { _M_buf.freeze(freezeflag); } in freeze() 384 { return _M_buf.str(); } in str() 388 { return _M_buf.pcount(); } in pcount() 407 { _M_buf.freeze(freezeflag); } in freeze() 411 { return _M_buf.pcount(); } in pcount() [all …]
|
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/ |
H A D | locale_conv.h | 346 if (_M_buf) in _GLIBCXX_VISIBILITY() 362 streambuf* rdbuf() const noexcept { return _M_buf; } in _GLIBCXX_VISIBILITY() 367 auto __prev = _M_buf; in _GLIBCXX_VISIBILITY() 368 _M_buf = __bytebuf; in _GLIBCXX_VISIBILITY() 378 { return _M_buf && _M_conv_put() && !_M_buf->pubsync() ? 0 : -1; } in _GLIBCXX_VISIBILITY() 383 if (!_M_buf || !_M_conv_put()) in _GLIBCXX_VISIBILITY() 393 if (!_M_buf) in _GLIBCXX_VISIBILITY() 405 if (!_M_buf || __n == 0) in _GLIBCXX_VISIBILITY() 432 __nbytes = std::min(__nbytes, _M_buf->in_avail()); in _GLIBCXX_VISIBILITY() 483 if (_M_buf->sputn(__p, __n) < __n) in _GLIBCXX_VISIBILITY() [all …]
|
H A D | fstream.tcc | 53 if (!_M_buf_allocated && !_M_buf) in _M_allocate_internal_buffer() 55 _M_buf = new char_type[_M_buf_size]; in _M_allocate_internal_buffer() 67 delete [] _M_buf; in _M_destroy_internal_buffer() 68 _M_buf = 0; in _M_destroy_internal_buffer() 82 _M_state_last(), _M_buf(0), _M_buf_size(BUFSIZ), in basic_filebuf() 102 _M_buf(std::__exchange(__rhs._M_buf, nullptr)), in basic_filebuf() 133 _M_buf = std::__exchange(__rhs._M_buf, nullptr); in operator =() 161 std::swap(_M_buf, __rhs._M_buf); in swap() 785 _M_buf = __s; in setbuf()
|
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/ |
H A D | fstream.tcc | 54 if (!_M_buf_allocated && !_M_buf) in _M_allocate_internal_buffer() 56 _M_buf = new char_type[_M_buf_size]; in _M_allocate_internal_buffer() 68 delete [] _M_buf; in _M_destroy_internal_buffer() 69 _M_buf = 0; in _M_destroy_internal_buffer() 83 _M_state_last(), _M_buf(0), _M_buf_size(BUFSIZ), in basic_filebuf() 702 _M_buf = __s; in setbuf()
|
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/std/ |
H A D | fstream | 111 char_type* _M_buf; 120 // Set iff _M_buf is allocated memory from _M_allocate_internal_buffer. 197 this->setg(_M_buf, _M_pback_cur_save, _M_pback_end_save); 398 this->setg(_M_buf, _M_buf, _M_buf + __off); 400 this->setg(_M_buf, _M_buf, _M_buf); 403 this->setp(_M_buf, _M_buf + _M_buf_size - 1);
|
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/backward/ |
H A D | strstream | 137 strstreambuf _M_buf; 154 strstreambuf _M_buf; 176 strstreambuf _M_buf;
|
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/backward/ |
H A D | strstream | 140 strstreambuf _M_buf; 157 strstreambuf _M_buf; 179 strstreambuf _M_buf;
|
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/std/ |
H A D | fstream | 136 char_type* _M_buf; 145 // Set iff _M_buf is allocated memory from _M_allocate_internal_buffer. 222 this->setg(_M_buf, _M_pback_cur_save, _M_pback_end_save); 450 this->setg(_M_buf, _M_buf, _M_buf + __off); 452 this->setg(_M_buf, _M_buf, _M_buf); 455 this->setp(_M_buf, _M_buf + _M_buf_size - 1);
|