Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/tiff/
Dtiffmodule.cpp112 CTiffContext* pTiffContext = reinterpret_cast<CTiffContext*>(context); in tiff_read() local
113 FX_SAFE_UINT32 increment = pTiffContext->offset(); in tiff_read()
118 FX_FILESIZE offset = pTiffContext->offset(); in tiff_read()
119 if (!pTiffContext->io_in()->ReadBlockAtOffset(buf, offset, length)) in tiff_read()
122 pTiffContext->set_offset(increment.ValueOrDie()); in tiff_read()
123 if (offset + length > pTiffContext->io_in()->GetSize()) in tiff_read()
124 return pTiffContext->io_in()->GetSize() - offset; in tiff_read()
135 CTiffContext* pTiffContext = reinterpret_cast<CTiffContext*>(context); in tiff_seek() local
143 if (file_offset > pTiffContext->io_in()->GetSize()) in tiff_seek()
145 pTiffContext->set_offset(file_offset); in tiff_seek()
[all …]