Home | History | Annotate | Download | only in bits

Lines Matching defs:streamoff

74   // The types streamoff, streampos and wstreampos and the class
84 * In clauses 21.1.3.1 and 27.4.1 streamoff is described as an
86 * Note: In versions of GCC up to and including GCC 3.3, streamoff
90 typedef long streamoff;
92 typedef long long streamoff;
94 typedef int64_t streamoff;
96 typedef long long streamoff;
117 streamoff _M_off;
129 // from streamoff objects using the constructor syntax, and
132 // constructor stores the streamoff as the offset and default
135 fpos(streamoff __off)
138 /// Convert to streamoff.
139 operator streamoff() const { return _M_off; }
156 operator+=(streamoff __off)
167 operator-=(streamoff __off)
180 operator+(streamoff __off) const
194 operator-(streamoff __off) const
206 streamoff
219 { return streamoff(__lhs) == streamoff(__rhs); }
224 { return streamoff(__lhs) != streamoff(__rhs); }