Home | History | Annotate | Download | only in libtiff

Lines Matching refs:td_stripoffset

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