Home | History | Annotate | Download | only in libtiff

Lines Matching refs:td_nstrips

101 	if (strip >= td->td_nstrips && !TIFFGrowStrips(tif, 1, module))
205 if (strip >= td->td_nstrips) {
305 if (strip >= td->td_nstrips) {
374 if (tile >= td->td_nstrips) {
376 (unsigned long) tile, (unsigned long) td->td_nstrips);
479 if (tile >= tif->tif_dir.td_nstrips) {
482 (unsigned long) tif->tif_dir.td_nstrips);
505 td->td_nstrips = td->td_stripsperimage;
509 _TIFFmalloc(td->td_nstrips * sizeof (uint64));
511 _TIFFmalloc(td->td_nstrips * sizeof (uint64));
518 _TIFFmemset(td->td_stripoffset, 0, td->td_nstrips*sizeof (uint64));
519 _TIFFmemset(td->td_stripbytecount, 0, td->td_nstrips*sizeof (uint64));
580 tif->tif_dir.td_nstrips = 0;
654 (td->td_nstrips + delta) * sizeof (uint64));
656 (td->td_nstrips + delta) * sizeof (uint64));
662 td->td_nstrips = 0;
668 _TIFFmemset(td->td_stripoffset + td->td_nstrips,
670 _TIFFmemset(td->td_stripbytecount + td->td_nstrips,
672 td->td_nstrips += delta;
690 assert(td->td_nstrips > 0);