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) {
322 if (strip >= td->td_nstrips) {
391 if (tile >= td->td_nstrips) {
393 (unsigned long) tile, (unsigned long) td->td_nstrips);
513 if (tile >= tif->tif_dir.td_nstrips) {
516 (unsigned long) tif->tif_dir.td_nstrips);
539 td->td_nstrips = td->td_stripsperimage;
543 _TIFFmalloc(td->td_nstrips * sizeof (uint64));
545 _TIFFmalloc(td->td_nstrips * sizeof (uint64));
552 _TIFFmemset(td->td_stripoffset, 0, td->td_nstrips*sizeof (uint64));
553 _TIFFmemset(td->td_stripbytecount, 0, td->td_nstrips*sizeof (uint64));
614 tif->tif_dir.td_nstrips = 0;
688 (td->td_nstrips + delta) * sizeof (uint64));
690 (td->td_nstrips + delta) * sizeof (uint64));
696 td->td_nstrips = 0;
702 _TIFFmemset(td->td_stripoffset + td->td_nstrips,
704 _TIFFmemset(td->td_stripbytecount + td->td_nstrips,
706 td->td_nstrips += delta;
724 assert(td->td_nstrips > 0);