Home | History | Annotate | Download | only in libtiff

Lines Matching refs:TIFF

93 typedef void (*TIFFVoidMethod)(TIFF*);
94 typedef int (*TIFFBoolMethod)(TIFF*);
95 typedef int (*TIFFPreMethod)(TIFF*, uint16);
96 typedef int (*TIFFCodeMethod)(TIFF* tif, uint8* buf, tmsize_t size, uint16 sample);
97 typedef int (*TIFFSeekMethod)(TIFF*, uint32);
98 typedef void (*TIFFPostMethod)(TIFF* tif, uint8* buf, tmsize_t size);
99 typedef uint32 (*TIFFStripMethod)(TIFF*, uint32);
100 typedef void (*TIFFTileMethod)(TIFF*, uint32*, uint32*);
102 struct tiff {
317 extern int _TIFFNoRowEncode(TIFF* tif, uint8* pp, tmsize_t cc, uint16 s);
318 extern int _TIFFNoStripEncode(TIFF* tif, uint8* pp, tmsize_t cc, uint16 s);
319 extern int _TIFFNoTileEncode(TIFF*, uint8* pp, tmsize_t cc, uint16 s);
320 extern int _TIFFNoRowDecode(TIFF* tif, uint8* pp, tmsize_t cc, uint16 s);
321 extern int _TIFFNoStripDecode(TIFF* tif, uint8* pp, tmsize_t cc, uint16 s);
322 extern int _TIFFNoTileDecode(TIFF*, uint8* pp, tmsize_t cc, uint16 s);
323 extern void _TIFFNoPostDecode(TIFF* tif, uint8* buf, tmsize_t cc);
324 extern int _TIFFNoPreCode(TIFF* tif, uint16 s);
325 extern int _TIFFNoSeek(TIFF* tif, uint32 off);
326 extern void _TIFFSwab16BitData(TIFF* tif, uint8* buf, tmsize_t cc);
327 extern void _TIFFSwab24BitData(TIFF* tif, uint8* buf, tmsize_t cc);
328 extern void _TIFFSwab32BitData(TIFF* tif, uint8* buf, tmsize_t cc);
329 extern void _TIFFSwab64BitData(TIFF* tif, uint8* buf, tmsize_t cc);
330 extern int TIFFFlushData1(TIFF* tif);
331 extern int TIFFDefaultDirectory(TIFF* tif);
332 extern void _TIFFSetDefaultCompressionState(TIFF* tif);
333 extern int _TIFFRewriteField(TIFF *, uint16, TIFFDataType, tmsize_t, void *);
334 extern int TIFFSetCompressionScheme(TIFF* tif, int scheme);
335 extern int TIFFSetDefaultCompressionState(TIFF* tif);
336 extern uint32 _TIFFDefaultStripSize(TIFF* tif, uint32 s);
337 extern void _TIFFDefaultTileSize(TIFF* tif, uint32* tw, uint32* th);
355 extern uint32 _TIFFMultiply32(TIFF*, uint32, uint32, const char*);
356 extern uint64 _TIFFMultiply64(TIFF*, uint64, uint64, const char*);
357 extern void* _TIFFCheckMalloc(TIFF*, tmsize_t, tmsize_t, const char*);
358 extern void* _TIFFCheckRealloc(TIFF*, void*, tmsize_t, tmsize_t, const char*);
363 extern int TIFFInitDumpMode(TIFF*, int);
365 extern int TIFFInitPackBits(TIFF*, int);
368 extern int TIFFInitCCITTRLE(TIFF*, int), TIFFInitCCITTRLEW(TIFF*, int);
369 extern int TIFFInitCCITTFax3(TIFF*, int), TIFFInitCCITTFax4(TIFF*, int);
372 extern int TIFFInitThunderScan(TIFF*, int);
375 extern int TIFFInitNeXT(TIFF*, int);
378 extern int TIFFInitLZW(TIFF*, int);
381 extern int TIFFInitOJPEG(TIFF*, int);
384 extern int TIFFInitJPEG(TIFF*, int);
387 extern int TIFFInitJBIG(TIFF*, int);
390 extern int TIFFInitZIP(TIFF*, int);
393 extern int TIFFInitPixarLog(TIFF*, int);
396 extern int TIFFInitSGILog(TIFF*, int);
399 extern int TIFFInitLZMA(TIFF*, int);