Home | History | Annotate | Download | only in libtiff

Lines Matching full:uint64

130 	uint64               tif_diroff;       /* file offset of current directory */
131 uint64 tif_nextdiroff; /* file offset of following directory */
132 uint64* tif_dirlist; /* list of offsets to already seen directories to prevent IFD looping */
146 uint64 tif_curoff; /* current offset for read/write */
147 uint64 tif_dataoff; /* current offset for writing dir */
150 uint64 tif_subifdoff; /* offset for patching SubIFD link */
254 #define TIFFhowmany_64(x, y) ((((uint64)(x))+(((uint64)(y))-1))/((uint64)(y)))
255 #define TIFFhowmany8_64(x) (((x)&0x07)?((uint64)(x)>>3)+1:(uint64)(x)>>3)
356 extern uint64 _TIFFMultiply64(TIFF*, uint64, uint64, const char*);
360 extern double _TIFFUInt64ToDouble(uint64);
361 extern float _TIFFUInt64ToFloat(uint64);