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