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