Lines Matching refs:td_stripoffset
508 td->td_stripoffset = (uint64 *) in TIFFSetupStrips()
512 if (td->td_stripoffset == NULL || td->td_stripbytecount == NULL) in TIFFSetupStrips()
518 _TIFFmemset(td->td_stripoffset, 0, td->td_nstrips*sizeof (uint64)); in TIFFSetupStrips()
579 if (tif->tif_dir.td_stripoffset == NULL && !TIFFSetupStrips(tif)) { in TIFFWriteCheck()
653 new_stripoffset = (uint64*)_TIFFrealloc(td->td_stripoffset, in TIFFGrowStrips()
666 td->td_stripoffset = new_stripoffset; in TIFFGrowStrips()
668 _TIFFmemset(td->td_stripoffset + td->td_nstrips, in TIFFGrowStrips()
689 if (td->td_stripoffset[strip] == 0 || tif->tif_curoff == 0) { in TIFFAppendToStrip()
693 && td->td_stripoffset[strip] != 0 in TIFFAppendToStrip()
703 if (!SeekOK(tif, td->td_stripoffset[strip])) { in TIFFAppendToStrip()
716 td->td_stripoffset[strip] = TIFFSeekFile(tif, 0, SEEK_END); in TIFFAppendToStrip()
720 tif->tif_curoff = td->td_stripoffset[strip]; in TIFFAppendToStrip()