Lines Matching refs:td_stripbytecount

133 		if( td->td_stripbytecount[strip] > 0 )  in TIFFWriteScanline()
136 td->td_stripbytecount[strip] = 0; in TIFFWriteScanline()
239 if( td->td_stripbytecount[strip] > 0 ) in TIFFWriteEncodedStrip()
245 if( tif->tif_rawdatasize <= (tmsize_t)td->td_stripbytecount[strip] ) in TIFFWriteEncodedStrip()
248 (tmsize_t)TIFFroundup_64((uint64)(td->td_stripbytecount[strip] + 1), 1024))) ) in TIFFWriteEncodedStrip()
390 if( td->td_stripbytecount[tile] > 0 ) in TIFFWriteEncodedTile()
396 if( tif->tif_rawdatasize <= (tmsize_t) td->td_stripbytecount[tile] ) in TIFFWriteEncodedTile()
399 (tmsize_t)TIFFroundup_64((uint64)(td->td_stripbytecount[tile] + 1), 1024))) ) in TIFFWriteEncodedTile()
510 td->td_stripbytecount = (uint64 *) in TIFFSetupStrips()
512 if (td->td_stripoffset == NULL || td->td_stripbytecount == NULL) in TIFFSetupStrips()
519 _TIFFmemset(td->td_stripbytecount, 0, td->td_nstrips*sizeof (uint64)); in TIFFSetupStrips()
655 new_stripbytecount = (uint64*)_TIFFrealloc(td->td_stripbytecount, in TIFFGrowStrips()
667 td->td_stripbytecount = new_stripbytecount; in TIFFGrowStrips()
670 _TIFFmemset(td->td_stripbytecount + td->td_nstrips, in TIFFGrowStrips()
692 if( td->td_stripbytecount[strip] != 0 in TIFFAppendToStrip()
694 && td->td_stripbytecount[strip] >= (uint64) cc ) in TIFFAppendToStrip()
725 old_byte_count = td->td_stripbytecount[strip]; in TIFFAppendToStrip()
726 td->td_stripbytecount[strip] = 0; in TIFFAppendToStrip()
743 td->td_stripbytecount[strip] += cc; in TIFFAppendToStrip()
745 if( (int64) td->td_stripbytecount[strip] != old_byte_count ) in TIFFAppendToStrip()