Home | History | Annotate | Download | only in libtiff

Lines Matching refs:tellp

43   by tellg(), tellp(), seekg(), and seekp().  This makes it similar to
69 ios::pos_type basic_ostream::tellp()
136 ios::pos_type pos = os->tellp();
145 return static_cast<tmsize_t>(os->tellp() - pos);
213 // reset the fail bit or else tellp() won't work below
221 origin = os->tellp();
225 origin = os->tellp();
240 num_fill = (static_cast<uint64>(origin)) + off - os->tellp();
249 return static_cast<uint64>(os->tellp());
301 ios::pos_type pos = os->tellp();
305 len = os->tellp();
363 data->start_pos = data->stream->tellp();
400 // written to it yet, then tellp() will return -1 which will break us.
403 if( !os->fail() && static_cast<int>(os->tellp()) < 0 ) {