Lines Matching refs:tmsize_t

91 typedef int (*TIFFCodeMethod)(TIFF* tif, uint8* buf, tmsize_t size, uint16 sample);
93 typedef void (*TIFFPostMethod)(TIFF* tif, uint8* buf, tmsize_t size);
149 tmsize_t tif_tilesize; /* # of bytes in a tile */
172 tmsize_t tif_scanlinesize; /* # of bytes in a scanline */
173 tmsize_t tif_scanlineskew; /* scanline skew for reading strips */
175 tmsize_t tif_rawdatasize; /* # of bytes in raw data buffer */
176 tmsize_t tif_rawdataoff; /* rawdata offset within strip */
177 tmsize_t tif_rawdataloaded;/* amount of data in rawdata */
179 tmsize_t tif_rawcc; /* bytes unread from raw buffer */
182 tmsize_t tif_size; /* size of mapped file region (bytes, thus tmsize_t) */
265 extern int _TIFFNoRowEncode(TIFF* tif, uint8* pp, tmsize_t cc, uint16 s);
266 extern int _TIFFNoStripEncode(TIFF* tif, uint8* pp, tmsize_t cc, uint16 s);
267 extern int _TIFFNoTileEncode(TIFF*, uint8* pp, tmsize_t cc, uint16 s);
268 extern int _TIFFNoRowDecode(TIFF* tif, uint8* pp, tmsize_t cc, uint16 s);
269 extern int _TIFFNoStripDecode(TIFF* tif, uint8* pp, tmsize_t cc, uint16 s);
270 extern int _TIFFNoTileDecode(TIFF*, uint8* pp, tmsize_t cc, uint16 s);
271 extern void _TIFFNoPostDecode(TIFF* tif, uint8* buf, tmsize_t cc);
274 extern void _TIFFSwab16BitData(TIFF* tif, uint8* buf, tmsize_t cc);
275 extern void _TIFFSwab24BitData(TIFF* tif, uint8* buf, tmsize_t cc);
276 extern void _TIFFSwab32BitData(TIFF* tif, uint8* buf, tmsize_t cc);
277 extern void _TIFFSwab64BitData(TIFF* tif, uint8* buf, tmsize_t cc);
281 extern int _TIFFRewriteField(TIFF *, uint16, TIFFDataType, tmsize_t, void *);
305 extern void* _TIFFCheckMalloc(TIFF*, tmsize_t, tmsize_t, const char*);
306 extern void* _TIFFCheckRealloc(TIFF*, void*, tmsize_t, tmsize_t, const char*);