Home | History | Annotate | Download | only in ext

Lines Matching refs:__ret

118 	int_type __ret;
125 __ret = this->syncungetc(_M_unget_buf);
127 __ret = __eof;
130 __ret = this->syncungetc(__c);
134 return __ret;
143 int_type __ret;
147 __ret = traits_type::eof();
149 __ret = traits_type::not_eof(__c);
152 __ret = this->syncputc(__c);
153 return __ret;
167 std::streampos __ret(std::streamoff(-1));
177 __ret = std::streampos(ftello64(_M_file));
180 __ret = std::streampos(std::ftell(_M_file));
182 return __ret;
211 std::streamsize __ret = std::fread(__s, 1, __n, _M_file);
212 if (__ret > 0)
213 _M_unget_buf = traits_type::to_int_type(__s[__ret - 1]);
216 return __ret;
244 std::streamsize __ret = 0;
251 __s[__ret] = traits_type::to_char_type(__c);
252 ++__ret;
255 if (__ret > 0)
256 _M_unget_buf = traits_type::to_int_type(__s[__ret - 1]);
259 return __ret;
267 std::streamsize __ret = 0;
273 ++__ret;
275 return __ret;