Lines Matching refs:pos
94 FPOS_T pos;
95 FGETPOS(_M_file, &pos);
99 return pos_type((streamoff)pos.__pos);
101 return pos_type(pos.__fpos_elem[ 0 ]);
103 return pos_type((streamoff)pos._pos);
105 return pos_type(pos);
114 stdio_streambuf_base::seekpos(pos_type pos, ios_base::openmode /* mode */) {
119 p.__pos = pos;
132 p.__fpos_elem[0] = pos;
135 p._pos = pos;
138 FPOS_T p(pos);
141 return FSETPOS(_M_file, &p) == 0 ? pos : pos_type(-1);