Lines Matching refs:td_stripbytecount

3732 				if (!TIFFFetchStripThing(tif,dp,tif->tif_dir.td_nstrips,&tif->tif_dir.td_stripbytecount))    in TIFFReadDirectory()
3933 ( (tif->tif_dir.td_stripbytecount[0] == 0 && tif->tif_dir.td_stripoffset[0] != 0) || \ in TIFFReadDirectory()
3935 … tif->tif_dir.td_stripbytecount[0] > TIFFGetFileSize(tif) - tif->tif_dir.td_stripoffset[0]) || \ in TIFFReadDirectory()
3938 … tif->tif_dir.td_stripbytecount[0] < TIFFScanlineSize64(tif) * tif->tif_dir.td_imagelength) ) in TIFFReadDirectory()
3959 && tif->tif_dir.td_stripbytecount[0] != tif->tif_dir.td_stripbytecount[1] in TIFFReadDirectory()
3960 && tif->tif_dir.td_stripbytecount[0] != 0 in TIFFReadDirectory()
3961 && tif->tif_dir.td_stripbytecount[1] != 0 ) { in TIFFReadDirectory()
4030 if ( !_TIFFFillStriles(tif) || !tif->tif_dir.td_stripbytecount ) in TIFFReadDirectory()
4275 if (td->td_stripbytecount) in EstimateStripByteCounts()
4276 _TIFFfree(td->td_stripbytecount); in EstimateStripByteCounts()
4277 td->td_stripbytecount = (uint64*) in EstimateStripByteCounts()
4280 if( td->td_stripbytecount == NULL ) in EstimateStripByteCounts()
4321 td->td_stripbytecount[strip] = space; in EstimateStripByteCounts()
4330 if (td->td_stripoffset[strip]+td->td_stripbytecount[strip] > filesize) in EstimateStripByteCounts()
4331 td->td_stripbytecount[strip] = filesize - td->td_stripoffset[strip]; in EstimateStripByteCounts()
4336 td->td_stripbytecount[strip] = bytespertile; in EstimateStripByteCounts()
4341 td->td_stripbytecount[strip] = rowbytes * rowsperstrip; in EstimateStripByteCounts()
5484 bytecount = td->td_stripbytecount[0]; in ChopUpSingleUncompressedStrip()
5552 _TIFFfree(td->td_stripbytecount); in ChopUpSingleUncompressedStrip()
5554 td->td_stripbytecount = newcounts; in ChopUpSingleUncompressedStrip()
5578 td->td_nstrips,&td->td_stripbytecount)) in _TIFFFillStriles()