Lines Matching refs:__ret
283 const streamsize __ret = this->egptr() - this->gptr(); in in_avail() local
284 return __ret ? __ret : this->showmanyc(); in in_avail()
297 int_type __ret = traits_type::eof(); in snextc() local
299 __ret), true)) in snextc()
300 __ret = this->sgetc(); in snextc()
301 return __ret; in snextc()
315 int_type __ret; in sbumpc() local
318 __ret = traits_type::to_int_type(*this->gptr()); in sbumpc()
322 __ret = this->uflow(); in sbumpc()
323 return __ret; in sbumpc()
337 int_type __ret; in sgetc() local
339 __ret = traits_type::to_int_type(*this->gptr()); in sgetc()
341 __ret = this->underflow(); in sgetc()
342 return __ret; in sgetc()
370 int_type __ret; in sputbackc() local
374 __ret = this->pbackfail(traits_type::to_int_type(__c)); in sputbackc()
378 __ret = traits_type::to_int_type(*this->gptr()); in sputbackc()
380 return __ret; in sputbackc()
395 int_type __ret; in sungetc() local
399 __ret = traits_type::to_int_type(*this->gptr()); in sungetc()
402 __ret = this->pbackfail(); in sungetc()
403 return __ret; in sungetc()
422 int_type __ret; in sputc() local
427 __ret = traits_type::to_int_type(__c); in sputc()
430 __ret = this->overflow(traits_type::to_int_type(__c)); in sputc()
431 return __ret; in sputc()
698 int_type __ret = traits_type::eof(); in uflow() local
700 __ret); in uflow()
703 __ret = traits_type::to_int_type(*this->gptr()); in uflow()
706 return __ret; in uflow()