Lines Matching refs:td_stripoffset
542 td->td_stripoffset = (uint64 *) in TIFFSetupStrips()
546 if (td->td_stripoffset == NULL || td->td_stripbytecount == NULL) in TIFFSetupStrips()
552 _TIFFmemset(td->td_stripoffset, 0, td->td_nstrips*sizeof (uint64)); in TIFFSetupStrips()
613 if (tif->tif_dir.td_stripoffset == NULL && !TIFFSetupStrips(tif)) { in TIFFWriteCheck()
687 new_stripoffset = (uint64*)_TIFFrealloc(td->td_stripoffset, in TIFFGrowStrips()
700 td->td_stripoffset = new_stripoffset; in TIFFGrowStrips()
702 _TIFFmemset(td->td_stripoffset + td->td_nstrips, in TIFFGrowStrips()
723 if (td->td_stripoffset[strip] == 0 || tif->tif_curoff == 0) { in TIFFAppendToStrip()
727 && td->td_stripoffset[strip] != 0 in TIFFAppendToStrip()
737 if (!SeekOK(tif, td->td_stripoffset[strip])) { in TIFFAppendToStrip()
750 td->td_stripoffset[strip] = TIFFSeekFile(tif, 0, SEEK_END); in TIFFAppendToStrip()
754 tif->tif_curoff = td->td_stripoffset[strip]; in TIFFAppendToStrip()