Home
last modified time | relevance | path

Searched refs:fpos (Results 1 – 25 of 40) sorted by relevance

12

/openbsd/gnu/gcc/libstdc++-v3/include/bits/
H A Dpostypes.h81 class fpos; variable
95 class fpos
106 fpos() in fpos() function
136 fpos&
147 fpos&
160 fpos
163 fpos __pos(*this);
174 fpos
177 fpos __pos(*this);
199 operator==(const fpos<_StateT>& __lhs, const fpos<_StateT>& __rhs)
[all …]
/openbsd/gnu/llvm/libcxx/include/__ios/
H A Dfpos.h23 class _LIBCPP_TEMPLATE_VIS fpos {
29 _LIBCPP_HIDE_FROM_ABI fpos(streamoff __off = streamoff()) : __st_(), __off_(__off) {} in __st_()
36 _LIBCPP_HIDE_FROM_ABI fpos& operator+=(streamoff __off) {
41 _LIBCPP_HIDE_FROM_ABI fpos operator+(streamoff __off) const {
42 fpos __t(*this);
47 _LIBCPP_HIDE_FROM_ABI fpos& operator-=(streamoff __off) {
52 _LIBCPP_HIDE_FROM_ABI fpos operator-(streamoff __off) const {
53 fpos __t(*this);
61 streamoff operator-(const fpos<_StateT>& __x, const fpos<_StateT>& __y) {
67 bool operator==(const fpos<_StateT>& __x, const fpos<_StateT>& __y) {
[all …]
/openbsd/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dfpos.h56 class fpos
82 fpos&
85 fpos&
88 fpos
91 fpos __t(*this);
96 fpos
99 fpos __t(*this);
105 operator==(const fpos& __pos) const
109 operator!=(const fpos& __pos) const
120 typedef fpos<mbstate_t> streampos;
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dinit14.C9 struct fpos struct
12 fpos(int __pos) in fpos() function
19 fpos f (2); in main()
/openbsd/gnu/llvm/libcxx/include/
H A Diosfwd86 template <class state> class fpos;
87 using streampos = fpos<char_traits<char>::state_type>;
88 using wstreampos = fpos<char_traits<wchar_t>::state_type>;
89 using u8streampos = fpos<char_traits<char8_t>::state_type>; // C++20
90 using u16streampos = fpos<char_traits<char16_t>::state_type>;
91 using u32streampos = fpos<char_traits<char32_t>::state_type>;
218 typedef fpos<mbstate_t> streampos;
219 typedef fpos<mbstate_t> wstreampos;
221 typedef fpos<mbstate_t> u8streampos;
223 typedef fpos<mbstate_t> u16streampos;
[all …]
H A Dstring23 class fpos
28 fpos(streamoff = streamoff());
35 fpos& operator+=(streamoff);
36 fpos operator+ (streamoff) const;
37 fpos& operator-=(streamoff);
38 fpos operator- (streamoff) const;
41 template <class stateT> streamoff operator-(const fpos<stateT>& x, const fpos<stateT>& y);
43 template <class stateT> bool operator==(const fpos<stateT>& x, const fpos<stateT>& y);
44 template <class stateT> bool operator!=(const fpos<stateT>& x, const fpos<stateT>& y);
548 #include <__ios/fpos.h>
H A Dios23 template <class stateT> class fpos;
220 #include <__ios/fpos.h>
H A DCMakeLists.txt372 __ios/fpos.h
H A Dmodule.modulemap.in956 module fpos { private header "__ios/fpos.h" }
/openbsd/gnu/usr.bin/binutils/binutils/
H A Dresres.c116 long fpos; local
134 fpos = ftell (fres);
135 if (fpos % 4)
136 write_res_data (sign, fpos % 4, 1);
/openbsd/gnu/usr.bin/binutils-2.17/binutils/
H A Dresres.c116 long fpos; local
134 fpos = ftell (fres);
135 if (fpos % 4)
136 write_res_data (sign, fpos % 4, 1);
/openbsd/usr.bin/less/
H A Dch.c60 off_t fpos; member
72 #define ch_fpos thisfile->fpos
751 thisfile->fpos = 0; in ch_init()
/openbsd/gnu/gcc/libstdc++-v3/include/ext/
H A Dpod_char_traits.h98 typedef fpos<state_type> pos_type;
H A Dcodecvt_specializations.h224 typedef typename std::fpos<state_type> pos_type;
/openbsd/gnu/lib/libstdc++/libstdc++/include/std/
H A Dstd_streambuf.h257 fpos<__state_type> _M_pos;
/openbsd/gnu/usr.bin/perl/
H A Dperlio.c5612 Fpos_t * const fpos = (Fpos_t *) SvPV(pos, len); in PerlIO_setpos() local
5615 return fsetpos64(f, fpos); in PerlIO_setpos()
5617 return fsetpos(f, fpos); in PerlIO_setpos()
5642 Fpos_t fpos; in PerlIO_getpos() local
5645 code = fgetpos64(f, &fpos); in PerlIO_getpos()
5647 code = fgetpos(f, &fpos); in PerlIO_getpos()
5649 sv_setpvn(pos, (char *) &fpos, sizeof(fpos)); in PerlIO_getpos()
/openbsd/gnu/usr.bin/texinfo/makeinfo/
H A Dnode.c945 int fpos = fseek (output_stream, -epilogue_len, in cm_node() local
948 if (fpos < 0 in cm_node()
/openbsd/gnu/lib/libstdc++/libstdc++/include/
H A DMakefile.am116 ${bits_srcdir}/fpos.h \
H A DMakefile.in235 ${bits_srcdir}/fpos.h \
/openbsd/distrib/sets/lists/comp/
H A Dgcc.luna88k56 ./usr/include/g++/bits/fpos.h
/openbsd/gnu/lib/libstdc++/libstdc++/
H A DChangeLog-20001440 * testsuite/27_io/fpos.cc: Same.
4714 * bits/fpos.h: And here.
4964 * bits/fpos.h: And here.
6522 * bits/fpos.h: Default initialize.
6554 * bits/fpos.h (fpos::operator streamoff): Make const, don't return
6592 using _M_position with a const fpos.
6594 * testsuite/27_io/fpos.cc: New file.
6650 * bits/fpos.h: Test.
7785 * bits/fpos.h: Tweak, format.
8666 * bits/fpos.h: Like here.
[all …]
H A DChangeLog-20011008 include/bits/fpos.h, include/bits/gslice.h, include/bits/gslice_array.h,
2343 * testsuite/27_io/fpos.cc: Likewise.
3125 * include/bits/fpos.h (fpos::operator-): Don't return reference,
3127 (fpos::operator+): Same.
3128 * testsuite/27_io/fpos.cc: Add test.
4664 * include/bits/fpos.h: Define streampos/wstreampos here.
4773 * include/bits/fpos.h: Likewise.
5062 * include/bits/fpos.h: Ditto.
5981 * include/bits/fpos.h (fpos:::fpos(streamoff __pos)): Explicitly
/openbsd/gnu/llvm/llvm/utils/gn/secondary/libcxx/include/
H A DBUILD.gn447 "__ios/fpos.h",
/openbsd/gnu/lib/libcxx/
H A DMakefile461 __ios/fpos.h \
/openbsd/gnu/llvm/libcxx/docs/Status/
H A DCxx20Papers.csv40 "`P0759R1 <https://wg21.link/P0759R1>`__","LWG","fpos Requirements","Rapperswil","|Complete|","11.0"

12