Lines Matching full:uint64
464 td->td_stripoffset = (uint64 *)
465 _TIFFmalloc(td->td_nstrips * sizeof (uint64));
466 td->td_stripbytecount = (uint64 *)
467 _TIFFmalloc(td->td_nstrips * sizeof (uint64));
474 _TIFFmemset(td->td_stripoffset, 0, td->td_nstrips*sizeof (uint64));
475 _TIFFmemset(td->td_stripbytecount, 0, td->td_nstrips*sizeof (uint64));
605 uint64* new_stripoffset;
606 uint64* new_stripbytecount;
609 new_stripoffset = (uint64*)_TIFFrealloc(td->td_stripoffset,
610 (td->td_nstrips + delta) * sizeof (uint64));
611 new_stripbytecount = (uint64*)_TIFFrealloc(td->td_stripbytecount,
612 (td->td_nstrips + delta) * sizeof (uint64));
625 0, delta*sizeof (uint64));
627 0, delta*sizeof (uint64));
642 uint64 m;
650 && td->td_stripbytecount[strip] >= (uint64) cc )
688 if ((m<tif->tif_curoff)||(m<(uint64)cc))