Home
last modified time | relevance | path

Searched refs:__retval (Results 1 – 5 of 5) sorted by relevance

/openbsd/gnu/lib/libstdc++/libstdc++/config/io/
H A Dbasic_file_stdio.cc176 __basic_file* __retval = static_cast<__basic_file*>(NULL); in close() local
184 __retval = this; in close()
186 return __retval; in close()
/openbsd/gnu/lib/libstdc++/libstdc++/testsuite/27_io/
H A Dstreambuf_members.cc86 int_type __retval = traits_type::eof(); in underflow() local
88 __retval = traits_type::not_eof(0); in underflow()
89 return __retval; in underflow()
/openbsd/sys/dev/dt/
H A Ddtvar.h61 register_t __retval[2]; member
66 #define dtev_retval _args.E_return.__retval /* function retval */
/openbsd/gnu/llvm/libcxx/include/
H A Dstring_view454 int __retval = _Traits::compare(data(), __sv.data(), __rlen);
455 if (__retval == 0) // first __rlen chars matched
456 __retval = size() == __sv.size() ? 0 : (size() < __sv.size() ? -1 : 1);
457 return __retval;
/openbsd/gnu/lib/libstdc++/libstdc++/
H A DChangeLog-20002955 * bits/fstream.tcc: Shorten __retval to __ret.