Home | History | Annotate | Download | only in src

Lines Matching refs:gptr

132       if (gptr() != 0) {
134 old_get_offset = gptr() - eback();
157 if (gptr() != eback()) {
162 else if (c == gptr()[-1]) {
168 *gptr() = traits_type::to_char_type(c);
177 if (gptr() == egptr() && pptr() && pptr() > egptr())
178 setg(eback(), gptr(), pptr());
180 if (gptr() != egptr())
181 return (unsigned char) *gptr();
206 // !gptr() is here because, according to D.7.1 paragraph 4, the seekable
208 if ((!do_get && !do_put) || (do_put && !pptr()) || !gptr())
223 newoff = do_put ? pptr() - seeklow : gptr() - seeklow;