Home
last modified time | relevance | path

Searched refs:__testput (Results 1 – 4 of 4) sorted by relevance

/openbsd/src/gnu/lib/libstdc++/libstdc++/include/bits/
Dfstream.tcc123 bool __testput = _M_out_cur && _M_out_beg < _M_out_end; in close() local
124 if (__testput in close()
256 bool __testput = _M_out_cur && _M_out_cur < _M_buf + _M_buf_size; in overflow() local
263 else if (__testput) in overflow()
348 bool __testput = _M_out_cur && _M_out_beg < _M_out_end; in _M_really_overflow() local
351 if (__testput || __testunbuffered) in _M_really_overflow()
453 bool __testput = _M_out_cur && _M_out_beg < _M_out_end; in seekoff() local
456 if (__testput || _M_last_overflowed) in seekoff()
/openbsd/src/gnu/gcc/libstdc++-v3/include/bits/
Dsstream.tcc98 const bool __testput = this->pptr() < this->epptr(); in overflow() local
99 if (__builtin_expect(!__testput && __capacity == __max_size, false)) in overflow()
105 if (!__testput) in overflow()
/openbsd/src/gnu/lib/libstdc++/libstdc++/include/std/
Dstd_fstream.h314 bool __testput = _M_out_cur && _M_out_beg < _M_out_end; in sync() local
318 if (__testput) in sync()
/openbsd/src/gnu/lib/libstdc++/libstdc++/
DChangeLog1411 Don't conditionalize the copy to __testput.