Lines Matching defs:tif
157 #define LZWState(tif) ((LZWBaseState*) (tif)->tif_data) argument
158 #define DecoderState(tif) ((LZWCodecState*) LZWState(tif)) argument
159 #define EncoderState(tif) ((LZWCodecState*) LZWState(tif)) argument
188 #define NextCode(tif, sp, bp, code, get) get(sp, bp, code) argument
192 LZWFixupTags(TIFF* tif) in LZWFixupTags()
199 LZWSetupDecode(TIFF* tif) in LZWSetupDecode()
261 LZWPreDecode(TIFF* tif, uint16 s) in LZWPreDecode()
352 codeLoop(TIFF* tif, const char* module) in codeLoop()
360 LZWDecode(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s) in LZWDecode()
597 LZWDecodeCompat(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s) in LZWDecodeCompat()
797 LZWSetupEncode(TIFF* tif) in LZWSetupEncode()
816 LZWPreEncode(TIFF* tif, uint16 s) in LZWPreEncode()
883 LZWEncode(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s) in LZWEncode()
1051 LZWPostEncode(TIFF* tif) in LZWPostEncode()
1123 LZWCleanup(TIFF* tif) in LZWCleanup()
1142 TIFFInitLZW(TIFF* tif, int scheme) in TIFFInitLZW()