HomeSort by relevance Sort by last modified time
    Searched refs:toff_t (Results 1 - 7 of 7) sorted by null

  /external/pdfium/core/fxcodec/codec/
ccodec_tiffmodule.cpp 121 toff_t tiff_seek(thandle_t context, toff_t offset, int whence) {
126 return static_cast<toff_t>(-1);
132 return static_cast<toff_t>(-1);
140 return static_cast<toff_t>(-1);
146 return static_cast<toff_t>(-1);
151 return static_cast<toff_t>(-1);
159 toff_t tiff_get_size(thandle_t context) {
162 return static_cast<toff_t>(pTiffContext->io_in()->GetSize());
165 int tiff_map(thandle_t context, tdata_t*, toff_t*) {
    [all...]
  /external/pdfium/third_party/libtiff/
tif_close.c 75 TIFFUnmapFileContents(tif, tif->tif_base, (toff_t)tif->tif_size);
tiffio.h 57 * NB: toff_t is not off_t for many reasons; TIFFs max out at
68 typedef uint64 toff_t; /* file offset */ typedef
276 typedef toff_t (*TIFFSeekProc)(thandle_t, toff_t, int);
278 typedef toff_t (*TIFFSizeProc)(thandle_t);
279 typedef int (*TIFFMapFileProc)(thandle_t, void** base, toff_t* size);
280 typedef void (*TIFFUnmapFileProc)(thandle_t, void* base, toff_t size);
353 extern int TIFFReadCustomDirectory(TIFF* tif, toff_t diroff, const TIFFFieldArray* infoarray);
354 extern int TIFFReadEXIFDirectory(TIFF* tif, toff_t diroff);
476 extern void TIFFSetWriteOffset(TIFF* tif, toff_t off)
    [all...]
tif_open.c 36 _tiffDummyMapProc(thandle_t fd, void** pbase, toff_t* psize)
43 _tiffDummyUnmapProc(thandle_t fd, void* base, toff_t size)
445 toff_t n;
449 assert((toff_t)tif->tif_size==n);
tif_write.c 781 TIFFSetWriteOffset(TIFF* tif, toff_t off)
tif_dirread.c     [all...]
  /external/ImageMagick/coders/
tiff.c 575 static toff_t TIFFGetBlobSize(thandle_t image)
577 return((toff_t) GetBlobSize((Image *) image));
852 static int TIFFMapBlob(thandle_t image,tdata_t *base,toff_t *size)
856 *size=(toff_t) GetBlobSize((Image *) image);
883 static toff_t TIFFSeekBlob(thandle_t image,toff_t offset,int whence)
885 return((toff_t) SeekBlob((Image *) image,(MagickOffsetType) offset,whence));
888 static void TIFFUnmapBlob(thandle_t image,tdata_t base,toff_t size)
    [all...]

Completed in 119 milliseconds