Home | History | Annotate | Download | only in libtiff

Lines Matching refs:td_stripoffset

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