Home
last modified time | relevance | path

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

/libtiff-4.0.7/libtiff/
H A Dtif_fax3.c231 if (occ % sp->b.rowbytes) in Fax3Decode1D()
250 buf += sp->b.rowbytes; in Fax3Decode1D()
251 occ -= sp->b.rowbytes; in Fax3Decode1D()
307 buf += sp->b.rowbytes; in Fax3Decode2D()
308 occ -= sp->b.rowbytes; in Fax3Decode2D()
480 tmsize_t rowbytes; in Fax3SetupState() local
498 sp->rowbytes = rowbytes; in Fax3SetupState()
1083 bp += sp->b.rowbytes; in Fax3Encode()
1084 cc -= sp->b.rowbytes; in Fax3Encode()
1465 bp += sp->b.rowbytes; in Fax4Encode()
[all …]
H A Dtif_dirread.c4356 uint64 rowbytes = TIFFScanlineSize64(tif); in EstimateStripByteCounts() local
4359 td->td_stripbytecount[strip] = rowbytes * rowsperstrip; in EstimateStripByteCounts()
/libtiff-4.0.7/test/
H A Drewrite_tag.c148 uint64 *rowoffset, *rowbytes; in rewrite_test() local
216 if( !TIFFGetField( tif, TIFFTAG_STRIPBYTECOUNTS, &rowbytes ) ) in rewrite_test()
281 if( !TIFFGetField( tif, TIFFTAG_STRIPBYTECOUNTS, &rowbytes ) ) in rewrite_test()
291 if( rowbytes[i] != expect ) in rewrite_test()
296 (int) (rowbytes[i] >> 32), in rewrite_test()
297 (int) (rowbytes[i] & 0xFFFFFFFF), in rewrite_test()
/libtiff-4.0.7/contrib/pds/
H A Dtif_pdsdirread.c328 uint32 rowbytes = TIFFScanlineSize(tif); in EstimateStripByteCounts() local
331 td->td_stripbytecount[i] = rowbytes*rowsperstrip; in EstimateStripByteCounts()
1065 tsize_t rowbytes = TIFFVTileSize(tif, 1), stripbytes; in ChopUpSingleUncompressedStrip() local
1074 if (rowbytes > 8192) { in ChopUpSingleUncompressedStrip()
1075 stripbytes = rowbytes; in ChopUpSingleUncompressedStrip()
1078 rowsperstrip = 8192 / rowbytes; in ChopUpSingleUncompressedStrip()
1079 stripbytes = rowbytes * rowsperstrip; in ChopUpSingleUncompressedStrip()
/libtiff-4.0.7/
H A DChangeLog6192 * tif_dirread.c: avoid div-by-zero if rowbytes is zero in chop func.