Home | History | Annotate | Download | only in libtiff

Lines Matching full:uint64

125     uint64               tif_diroff;       /* file offset of current directory */
126 uint64 tif_nextdiroff; /* file offset of following directory */
127 uint64* tif_dirlist; /* list of offsets to already seen directories to prevent IFD looping */
141 uint64 tif_curoff; /* current offset for read/write */
142 uint64 tif_dataoff; /* current offset for writing dir */
145 uint64 tif_subifdoff; /* offset for patching SubIFD link */
249 #define TIFFhowmany_64(x, y) ((((uint64)(x))+(((uint64)(y))-1))/((uint64)(y)))
250 #define TIFFhowmany8_64(x) (((x)&0x07)?((uint64)(x)>>3)+1:(uint64)(x)>>3)
304 extern uint64 _TIFFMultiply64(TIFF*, uint64, uint64, const char*);
308 extern double _TIFFUInt64ToDouble(uint64);
309 extern float _TIFFUInt64ToFloat(uint64);