Home | History | Annotate | Download | only in libtiff

Lines Matching refs:td_stripbytecount

3767                                 if( tif->tif_dir.td_stripbytecount != NULL )
3770 "tif->tif_dir.td_stripbytecount is "
3775 if (!TIFFFetchStripThing(tif,dp,tif->tif_dir.td_nstrips,&tif->tif_dir.td_stripbytecount))
3988 ( (tif->tif_dir.td_stripbytecount[0] == 0 && tif->tif_dir.td_stripoffset[0] != 0) || \
3990 tif->tif_dir.td_stripbytecount[0] > TIFFGetFileSize(tif) - tif->tif_dir.td_stripoffset[0]) || \
3993 tif->tif_dir.td_stripbytecount[0] < TIFFScanlineSize64(tif) * tif->tif_dir.td_imagelength) )
4014 && tif->tif_dir.td_stripbytecount[0] != tif->tif_dir.td_stripbytecount[1]
4015 && tif->tif_dir.td_stripbytecount[0] != 0
4016 && tif->tif_dir.td_stripbytecount[1] != 0 ) {
4085 if ( !_TIFFFillStriles(tif) || !tif->tif_dir.td_stripbytecount )
4331 if (td->td_stripbytecount)
4332 _TIFFfree(td->td_stripbytecount);
4333 td->td_stripbytecount = (uint64*)
4336 if( td->td_stripbytecount == NULL )
4377 td->td_stripbytecount[strip] = space;
4386 if (td->td_stripoffset[strip]+td->td_stripbytecount[strip] > filesize)
4387 td->td_stripbytecount[strip] = filesize - td->td_stripoffset[strip];
4392 td->td_stripbytecount[strip] = bytespertile;
4397 td->td_stripbytecount[strip] = rowbytes * rowsperstrip;
5548 bytecount = td->td_stripbytecount[0];
5615 _TIFFfree(td->td_stripbytecount);
5617 td->td_stripbytecount = newcounts;
5647 td->td_nstrips,&td->td_stripbytecount))