Lines Matching refs:td_stripbytecount
129 if( td->td_stripbytecount[strip] > 0 )
132 td->td_stripbytecount[strip] = 0;
233 if( td->td_stripbytecount[strip] > 0 )
368 if( td->td_stripbytecount[tile] > 0 )
466 td->td_stripbytecount = (uint64 *)
468 if (td->td_stripoffset == NULL || td->td_stripbytecount == NULL)
475 _TIFFmemset(td->td_stripbytecount, 0, td->td_nstrips*sizeof (uint64));
611 new_stripbytecount = (uint64*)_TIFFrealloc(td->td_stripbytecount,
623 td->td_stripbytecount = new_stripbytecount;
626 _TIFFmemset(td->td_stripbytecount + td->td_nstrips,
648 if( td->td_stripbytecount[strip] != 0
650 && td->td_stripbytecount[strip] >= (uint64) cc )
681 old_byte_count = td->td_stripbytecount[strip];
682 td->td_stripbytecount[strip] = 0;
699 td->td_stripbytecount[strip] += cc;
701 if( (int64) td->td_stripbytecount[strip] != old_byte_count )