Searched refs:__sb (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/libstdc++/src/
H A Distream.cc52 __streambuf_type* __sb = this->rdbuf(); local
53 int_type __c = __sb->sgetc();
59 streamsize __size = std::min(streamsize(__sb->egptr()
60 - __sb->gptr()),
65 const char_type* __p = traits_type::find(__sb->gptr(),
69 __size = __p - __sb->gptr();
70 traits_type::copy(__s, __sb->gptr(), __size);
72 __sb->gbump(__size);
74 __c = __sb->sgetc();
80 __c = __sb
125 __streambuf_type* __sb = this->rdbuf(); local
212 __streambuf_type* __sb = __in.rdbuf(); local
288 __streambuf_type* __sb = __in.rdbuf(); local
362 __streambuf_type* __sb = __in.rdbuf(); local
432 __streambuf_type* __sb = this->rdbuf(); local
505 __streambuf_type* __sb = this->rdbuf(); local
591 __streambuf_type* __sb = __in.rdbuf(); local
[all...]
H A Dcompatibility.cc74 __streambuf_type* __sb = this->rdbuf(); local
75 int_type __c = __sb->sgetc();
84 streamsize __size = std::min(streamsize(__sb->egptr()
85 - __sb->gptr()),
89 __sb->gbump(__size);
91 __c = __sb->sgetc();
96 __c = __sb->snextc();
140 __streambuf_type* __sb = this->rdbuf(); local
141 int_type __c = __sb->sgetc();
149 streamsize __size = std::min(streamsize(__sb
[all...]
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dstreambuf_iterator.h335 streambuf_type* __sb = __first._M_sbuf; local
336 int_type __c = __sb->sgetc();
339 const streamsize __n = __sb->egptr() - __sb->gptr();
342 traits_type::copy(__result, __sb->gptr(), __n);
343 __sb->gbump(__n);
345 __c = __sb->underflow();
350 __c = __sb->snextc();
371 streambuf_type* __sb = __first._M_sbuf; local
372 int_type __c = __sb
[all...]
H A Dbasic_ios.h256 basic_ios(basic_streambuf<_CharT, _Traits>* __sb) argument
259 { this->init(__sb); }
333 rdbuf(basic_streambuf<_CharT, _Traits>* __sb);
456 init(basic_streambuf<_CharT, _Traits>* __sb);
/freebsd-11-stable/contrib/libstdc++/include/std/
H A Dstd_istream.h104 basic_istream(__streambuf_type* __sb): _M_gcount(streamsize(0)) argument
105 { this->init(__sb); }
250 operator>>(__streambuf_type* __sb);
367 get(__streambuf_type& __sb, char_type __delim);
377 get(__streambuf_type& __sb) argument
378 { return this->get(__sb, this->widen('\n')); }
801 basic_iostream(basic_streambuf<_CharT, _Traits>* __sb) argument
803 { this->init(__sb); }
H A Dstd_streambuf.h794 basic_streambuf(const __streambuf_type& __sb) argument
795 : _M_in_beg(__sb._M_in_beg), _M_in_cur(__sb._M_in_cur),
796 _M_in_end(__sb._M_in_end), _M_out_beg(__sb._M_out_beg),
797 _M_out_cur(__sb._M_out_cur), _M_out_end(__sb._M_out_cur),
798 _M_buf_locale(__sb._M_buf_locale)
H A Dstd_ostream.h86 basic_ostream(__streambuf_type* __sb) argument
87 { this->init(__sb); }
254 operator<<(__streambuf_type* __sb);

Completed in 79 milliseconds