Lines Matching refs:td_stripbytecount

3749 …          if (!TIFFFetchStripThing(tif,dp,tif->tif_dir.td_nstrips,&tif->tif_dir.td_stripbytecount))  in TIFFReadDirectory()
3937 ( (tif->tif_dir.td_stripbytecount[0] == 0 && tif->tif_dir.td_stripoffset[0] != 0) || \ in TIFFReadDirectory()
3939 … tif->tif_dir.td_stripbytecount[0] > TIFFGetFileSize(tif) - tif->tif_dir.td_stripoffset[0]) || \ in TIFFReadDirectory()
3942 … tif->tif_dir.td_stripbytecount[0] < TIFFScanlineSize64(tif) * tif->tif_dir.td_imagelength) ) in TIFFReadDirectory()
3963 && tif->tif_dir.td_stripbytecount[0] != tif->tif_dir.td_stripbytecount[1] in TIFFReadDirectory()
3964 && tif->tif_dir.td_stripbytecount[0] != 0 in TIFFReadDirectory()
3965 && tif->tif_dir.td_stripbytecount[1] != 0 ) { in TIFFReadDirectory()
4034 if ( !_TIFFFillStriles(tif) || !tif->tif_dir.td_stripbytecount ) in TIFFReadDirectory()
4278 if (td->td_stripbytecount) in EstimateStripByteCounts()
4279 _TIFFfree(td->td_stripbytecount); in EstimateStripByteCounts()
4280 td->td_stripbytecount = (uint64*) in EstimateStripByteCounts()
4283 if( td->td_stripbytecount == NULL ) in EstimateStripByteCounts()
4324 td->td_stripbytecount[strip] = space; in EstimateStripByteCounts()
4333 if (td->td_stripoffset[strip]+td->td_stripbytecount[strip] > filesize) in EstimateStripByteCounts()
4334 td->td_stripbytecount[strip] = filesize - td->td_stripoffset[strip]; in EstimateStripByteCounts()
4339 td->td_stripbytecount[strip] = bytespertile; in EstimateStripByteCounts()
4344 td->td_stripbytecount[strip] = rowbytes * rowsperstrip; in EstimateStripByteCounts()
5470 bytecount = td->td_stripbytecount[0]; in ChopUpSingleUncompressedStrip()
5538 _TIFFfree(td->td_stripbytecount); in ChopUpSingleUncompressedStrip()
5540 td->td_stripbytecount = newcounts; in ChopUpSingleUncompressedStrip()
5564 td->td_nstrips,&td->td_stripbytecount)) in _TIFFFillStriles()