Searched refs:rowbytes (Results 1 – 5 of 5) sorted by relevance
231 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() local498 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 …]
4356 uint64 rowbytes = TIFFScanlineSize64(tif); in EstimateStripByteCounts() local4359 td->td_stripbytecount[strip] = rowbytes * rowsperstrip; in EstimateStripByteCounts()
148 uint64 *rowoffset, *rowbytes; in rewrite_test() local216 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()
328 uint32 rowbytes = TIFFScanlineSize(tif); in EstimateStripByteCounts() local331 td->td_stripbytecount[i] = rowbytes*rowsperstrip; in EstimateStripByteCounts()1065 tsize_t rowbytes = TIFFVTileSize(tif, 1), stripbytes; in ChopUpSingleUncompressedStrip() local1074 if (rowbytes > 8192) { in ChopUpSingleUncompressedStrip()1075 stripbytes = rowbytes; in ChopUpSingleUncompressedStrip()1078 rowsperstrip = 8192 / rowbytes; in ChopUpSingleUncompressedStrip()1079 stripbytes = rowbytes * rowsperstrip; in ChopUpSingleUncompressedStrip()
6192 * tif_dirread.c: avoid div-by-zero if rowbytes is zero in chop func.