Home | History | Annotate | Download | only in ext

Lines Matching refs:__ret

109 	int_type __ret;
116 __ret = this->syncungetc(_M_unget_buf);
118 __ret = __eof;
121 __ret = this->syncungetc(__c);
125 return __ret;
134 int_type __ret;
138 __ret = traits_type::eof();
140 __ret = traits_type::not_eof(__c);
143 __ret = this->syncputc(__c);
144 return __ret;
158 std::streampos __ret(std::streamoff(-1));
168 __ret = std::streampos(ftello64(_M_file));
171 __ret = std::streampos(std::ftell(_M_file));
173 return __ret;
202 std::streamsize __ret = std::fread(__s, 1, __n, _M_file);
203 if (__ret > 0)
204 _M_unget_buf = traits_type::to_int_type(__s[__ret - 1]);
207 return __ret;
235 std::streamsize __ret = 0;
242 __s[__ret] = traits_type::to_char_type(__c);
243 ++__ret;
246 if (__ret > 0)
247 _M_unget_buf = traits_type::to_int_type(__s[__ret - 1]);
250 return __ret;
258 std::streamsize __ret = 0;
264 ++__ret;
266 return __ret;