Lines Matching refs:uint64
56 uint64 read_offset; in TIFFFillStripPartial()
122 if( (uint64) to_read > td->td_stripbytecount[strip] in TIFFFillStripPartial()
249 … && (uint64) tif->tif_rawdataoff+tif->tif_rawdataloaded < td->td_stripbytecount[strip] ) in TIFFSeek()
427 if ((td->td_stripoffset[strip] > (uint64)TIFF_TMSIZE_T_MAX)||(ma>tif->tif_size)) in TIFFReadRawStrip1()
465 uint64 bytecount; in TIFFReadRawStrip()
499 if ((uint64)bytecountm!=bytecount) { in TIFFReadRawStrip()
523 uint64 bytecount = td->td_stripbytecount[strip]; in TIFFFillStrip()
567 if (bytecount > (uint64)tif->tif_size || in TIFFFillStrip()
568 td->td_stripoffset[strip] > (uint64)tif->tif_size - bytecount) { in TIFFFillStrip()
614 if ((uint64)bytecountm!=bytecount) in TIFFFillStrip()
761 if ((td->td_stripoffset[tile] > (uint64)TIFF_TMSIZE_T_MAX)||(ma>tif->tif_size)) in TIFFReadRawTile1()
800 uint64 bytecount64; in TIFFReadRawTile()
818 if (size != (tmsize_t)(-1) && (uint64)size < bytecount64) in TIFFReadRawTile()
819 bytecount64 = (uint64)size; in TIFFReadRawTile()
821 if ((uint64)bytecountm!=bytecount64) in TIFFReadRawTile()
844 uint64 bytecount = td->td_stripbytecount[tile]; in TIFFFillTile()
888 if (bytecount > (uint64)tif->tif_size || in TIFFFillTile()
889 td->td_stripoffset[tile] > (uint64)tif->tif_size - bytecount) { in TIFFFillTile()
907 if ((uint64)bytecountm!=bytecount) in TIFFFillTile()
973 tif->tif_rawdatasize = (tmsize_t)TIFFroundup_64((uint64)size, 1024); in TIFFReadBufferSetup()