Home
last modified time | relevance | path

Searched refs:_M_buf_size (Results 1 – 9 of 9) sorted by relevance

/trueos/contrib/libstdc++/include/bits/
Dfstream.tcc56 _M_buf = new char_type[_M_buf_size]; in _GLIBCXX_BEGIN_NAMESPACE()
83 _M_state_last(), _M_buf(NULL), _M_buf_size(BUFSIZ), in basic_filebuf()
206 const size_t __buflen = _M_buf_size > 1 ? _M_buf_size - 1 : 1; in underflow()
417 else if (_M_buf_size > 1) in overflow()
531 const streamsize __buflen = _M_buf_size > 1 ? _M_buf_size - 1 : 1; in xsgetn()
609 if (!_M_writing && _M_buf_size > 1) in xsputn()
610 __bufavail = _M_buf_size - 1; in xsputn()
646 _M_buf_size = 1; in setbuf()
658 _M_buf_size = __n; in setbuf()
/trueos/contrib/libstdc++/include/ext/
Dstdio_filebuf.h135 this->_M_buf_size = __size; in stdio_filebuf()
152 this->_M_buf_size = __size; in stdio_filebuf()
/trueos/contrib/libstdc++/include/std/
Dstd_fstream.h128 size_t _M_buf_size; in _GLIBCXX_BEGIN_NAMESPACE() local
407 if (__testout && __off == 0 && _M_buf_size > 1 ) in _GLIBCXX_BEGIN_NAMESPACE()
408 this->setp(_M_buf, _M_buf + _M_buf_size - 1); in _GLIBCXX_BEGIN_NAMESPACE()
/trueos/contrib/libstdc++/
DChangeLog-1999549 * testsuite/27_io/streambuf.cc (class testbuf): Don't set _M_buf_size.
550 * bits/std_streambuf.h (setp): Set _M_buf_size, _M_mode.
1080 construct. This and setting _M_buf_size to 1 for cin allows
1447 _M_buf_size to initial _M_string.size(), even though for
1476 * bits/sstream.tcc (stringbuf::overflow): Adjust _M_buf_size
1479 _M_init_stringbuf(): Fix _M_buf_size initialization.
1548 * bits/fstream.tcc: Remove warning for _M_buf_size assignment.
1559 fuck it, move data members _M_buf, and _M_buf_size into
3450 (open): Initialize internal pointers based on _M_buf and _M_buf_size.
3542 * bits/std_fstream.h: Set _M_buf_size based on cstdio's BUFSIZ.
DChangeLog-20034358 _M_buf_size is concerned.
4652 (basic_filebuf): Initialize _M_buf_size.
4653 (setbuf): Unbuffered means _M_buf_size == 1, since only
4654 _M_buf_size - 1 == 0 chars are going to be used for the
4656 * include/std/std_streambuf.h (_M_buf_size): Move to basic_filebuf.
4658 (basic_streambuf): Do not initialize _M_buf_size.
4659 * include/std/std_fstream.h (_M_buf_size): Add from basic_streambuf.
4661 (_M_set_buffer): Tweak, considering that _M_buf_size == 1 is the
4721 * include/std/std_fstream.h: Move _M_buf_size to...
5075 _M_convert_to_external only once (_M_buf_size is now the size of
[all …]
DChangeLog-20004062 _M_buf_size based on macro, instead use _M_buf_size_opt.
4066 instead of _M_buf_size.
DChangeLog-20022603 _M_buf_size and _M_buf_size_opt to the new buffer and size.
DChangeLog-20015888 * include/bits/std_streambuf.h (setp): Set _M_buf_size correctly.
DChangeLog-20055344 _M_buf_size, _M_mode, _M_pback_init.