Home | History | Annotate | Download | only in bits

Lines Matching defs:streamoff

72   // The types streamoff, streampos and wstreampos and the class
82 * In clauses 21.1.3.1 and 27.4.1 streamoff is described as an
84 * Note: In versions of GCC up to and including GCC 3.3, streamoff
88 typedef long streamoff;
90 typedef long long streamoff;
92 typedef int64_t streamoff;
94 typedef long long streamoff;
115 streamoff _M_off;
127 // from streamoff objects using the constructor syntax, and
130 // constructor stores the streamoff as the offset and default
133 fpos(streamoff __off)
136 /// Convert to streamoff.
137 operator streamoff() const { return _M_off; }
154 operator+=(streamoff __off)
165 operator-=(streamoff __off)
178 operator+(streamoff __off) const
192 operator-(streamoff __off) const
204 streamoff
217 { return streamoff(__lhs) == streamoff(__rhs); }
222 { return streamoff(__lhs) != streamoff(__rhs); }