Home
last modified time | relevance | path

Searched refs:origin (Results 1 – 4 of 4) sorted by relevance

/libtiff-4.0.7/libtiff/
H A Dtif_stream.cxx209 ios::pos_type origin; in _tiffosSeekProc() local
217 origin = data->start_pos; in _tiffosSeekProc()
220 origin = os->tellp(); in _tiffosSeekProc()
224 origin = os->tellp(); in _tiffosSeekProc()
231 if( (static_cast<uint64>(origin) + off) > static_cast<uint64>(data->start_pos) ) { in _tiffosSeekProc()
239 num_fill = (static_cast<uint64>(origin)) + off - os->tellp(); in _tiffosSeekProc()
244 os->seekp(static_cast<ios::off_type>(static_cast<uint64>(origin) + off), ios::beg); in _tiffosSeekProc()
/libtiff-4.0.7/contrib/stream/
H A Dtiffstream.cpp123 TiffStream::seek(thandle_t fd, toff_t offset, int origin) in seek() argument
126 if(ts->seekInt(fd, offset, origin) == true) return offset; in seek()
193 TiffStream::seekInt(thandle_t fd, unsigned int offset, int origin) in seekInt() argument
198 switch(origin) { in seekInt()
H A Dtiffstream.h34 static toff_t seek(thandle_t fd, toff_t offset, int origin);
49 bool seekInt(thandle_t fd, unsigned int offset, int origin);
/libtiff-4.0.7/
H A DChangeLog5552 array with user-specified origin position as suggested by Jason Frank.