Home
last modified time | relevance | path

Searched refs:uint64 (Results 1 – 25 of 34) sorted by relevance

12

/libtiff-4.0.7/libtiff/
H A Dtif_stream.cxx87 static uint64 _tiffosSeekProc(thandle_t fd, uint64 off, int whence);
88 static uint64 _tiffisSeekProc(thandle_t fd, uint64 off, int whence);
153 static uint64
167 uint64 new_offset = static_cast<uint64>(data->start_pos) + off; in _tiffosSeekProc()
232 uint64 num_fill; in _tiffosSeekProc()
251 static uint64
260 uint64 new_offset = static_cast<uint64>(data->start_pos) + off; in _tiffisSeekProc()
295 static uint64
307 return (uint64) len; in _tiffosSizeProc()
310 static uint64
[all …]
H A Dtif_strip.c86 uint64
142 uint64 m; in TIFFVStripSize()
157 uint64
186 uint64 m; in TIFFRawStripSize()
211 uint64
224 uint64 m; in TIFFStripSize()
258 uint64 rows; in _TIFFDefaultStripSize()
282 uint64
343 uint64 m; in TIFFScanlineSize()
360 uint64
[all …]
H A Dtif_dirread.c174 uint64 l;
261 uint64 m; in TIFFReadDirEntryByte()
347 uint64 m; in TIFFReadDirEntryShort()
430 uint64 m; in TIFFReadDirEntryLong()
586 uint64 m; in TIFFReadDirEntryFloat()
697 uint64 m; in TIFFReadDirEntryDouble()
972 uint64* ma; in TIFFReadDirEntryByteArray()
1151 uint64* ma; in TIFFReadDirEntrySbyteArray()
1870 uint64* data; in TIFFReadDirEntryLong8Array()
2061 uint64* m; in TIFFReadDirEntrySlong8Array()
[all …]
H A Dtif_tile.c143 uint64
148 uint64 rowsize; in TIFFTileRowSize64()
149 uint64 tilerowsize; in TIFFTileRowSize64()
185 uint64 m; in TIFFTileRowSize()
189 if ((uint64)n!=m) in TIFFTileRowSize()
200 uint64
252 uint64 m; in TIFFVTileSize()
256 if ((uint64)n!=m) in TIFFVTileSize()
267 uint64
276 uint64 m; in TIFFTileSize()
[all …]
H A Dtiffiop.h131 uint64 tif_diroff; /* file offset of current directory */
132 uint64 tif_nextdiroff; /* file offset of following directory */
133uint64* tif_dirlist; /* list of offsets to already seen directories to prevent I…
147 uint64 tif_curoff; /* current offset for read/write */
148 uint64 tif_dataoff; /* current offset for writing dir */
151 uint64 tif_subifdoff; /* offset for patching SubIFD link */
255 #define TIFFhowmany_64(x, y) ((((uint64)(x))+(((uint64)(y))-1))/((uint64)(y)))
256 #define TIFFhowmany8_64(x) (((x)&0x07)?((uint64)(x)>>3)+1:(uint64)(x)>>3)
357 extern uint64 _TIFFMultiply64(TIFF*, uint64, uint64, const char*);
361 extern double _TIFFUInt64ToDouble(uint64);
[all …]
H A Dtif_write.c542 td->td_stripoffset = (uint64 *) in TIFFSetupStrips()
543 _TIFFmalloc(td->td_nstrips * sizeof (uint64)); in TIFFSetupStrips()
544 td->td_stripbytecount = (uint64 *) in TIFFSetupStrips()
683 uint64* new_stripoffset; in TIFFGrowStrips()
684 uint64* new_stripbytecount; in TIFFGrowStrips()
688 (td->td_nstrips + delta) * sizeof (uint64)); in TIFFGrowStrips()
690 (td->td_nstrips + delta) * sizeof (uint64)); in TIFFGrowStrips()
703 0, delta*sizeof (uint64)); in TIFFGrowStrips()
705 0, delta*sizeof (uint64)); in TIFFGrowStrips()
720 uint64 m; in TIFFAppendToStrip()
[all …]
H A Dtif_dir.c68 static void _TIFFsetLong8Array(uint64** lpp, uint64* lp, uint32 n) in _TIFFsetLong8Array()
428 _TIFFsetLong8Array(&td->td_subifd, (uint64*) va_arg(ap, uint64*), in _TIFFVSetField()
665 uint64 v2 = va_arg(ap, uint64); in _TIFFVSetField()
1387 TIFFAdvanceDirectory(TIFF* tif, uint64* nextdir, uint64* off) in TIFFAdvanceDirectory()
1426 uint64 dircount64; in TIFFAdvanceDirectory()
1490 uint64 dircount64; in TIFFAdvanceDirectory()
1532 uint64 nextdir; in TIFFNumberOfDirectories()
1562 uint64 nextdir; in TIFFSetDirectory()
1608 uint64
1631 uint64 nextdir; in TIFFUnlinkDirectory()
[all …]
H A Dtif_unix.c125 static uint64
126 _tiffSeekProc(thandle_t fd, uint64 off, int whence) in _tiffSeekProc()
130 if ((uint64) off_io != off) in _tiffSeekProc()
133 return (uint64) -1; /* this is really gross */ in _tiffSeekProc()
136 return((uint64)_TIFF_lseek_f(fdh.fd,off_io,whence)); in _tiffSeekProc()
147 static uint64
156 return((uint64)sb.st_size); in _tiffSizeProc()
165 uint64 size64 = _tiffSizeProc(fd); in _tiffMapProc()
167 if ((uint64)sizem==size64) { in _tiffMapProc()
H A Dtiffio.h68 typedef uint64 toff_t; /* file offset */
354 extern uint64 TIFFScanlineSize64(TIFF* tif);
356 extern uint64 TIFFRasterScanlineSize64(TIFF* tif);
358 extern uint64 TIFFStripSize64(TIFF* tif);
364 extern uint64 TIFFTileRowSize64(TIFF* tif);
366 extern uint64 TIFFTileSize64(TIFF* tif);
368 extern uint64 TIFFVTileSize64(TIFF* tif, uint32 nrows);
393 extern uint64 TIFFCurrentDirOffset(TIFF*);
406 extern int TIFFSetSubDirectory(TIFF*, uint64);
412 extern int TIFFWriteCustomDirectory(TIFF *, uint64 *);
[all …]
H A Dtif_dirwrite.c305 uint64 nextdir; in TIFFRewriteDirectory()
338 uint64 m; in TIFFRewriteDirectory()
1605 uint64* ma; in TIFFWriteDirectoryTagLongLong8Array()
1663 uint64* ma; in TIFFWriteDirectoryTagIfdIfd8Array()
1716 uint64* ma; in TIFFWriteDirectoryTagShortLongLong8Array()
1856 uint64 m; in TIFFWriteDirectoryTagSubifd()
1869 uint64* pa; in TIFFWriteDirectoryTagSubifd()
2048 uint64 m; in TIFFWriteDirectoryTagCheckedLong8()
2334 uint64 na,nb; in TIFFWriteDirectoryTagData()
2417 uint64 m; in TIFFLinkDirectory()
[all …]
H A Dtif_read.c56 uint64 read_offset; in TIFFFillStripPartial()
465 uint64 bytecount; in TIFFReadRawStrip()
499 if ((uint64)bytecountm!=bytecount) { in TIFFReadRawStrip()
567 if (bytecount > (uint64)tif->tif_size || in TIFFFillStrip()
614 if ((uint64)bytecountm!=bytecount) in TIFFFillStrip()
800 uint64 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()
[all …]
H A Dtif_win32.c67 uint64 mb; in _tiffReadProc()
77 if ((uint64)n>mb) in _tiffReadProc()
97 uint64 mb; in _tiffWriteProc()
107 if ((uint64)n>mb) in _tiffWriteProc()
120 static uint64
121 _tiffSeekProc(thandle_t fd, uint64 off, int whence) in _tiffSeekProc()
153 static uint64
184 uint64 size; in _tiffMapProc()
190 if ((uint64)sizem!=size) in _tiffMapProc()
H A Dtif_dir.h53 uint64 tdir_count; /* number of items; length in spec */
57 uint64 toff_long8;
98 uint64* td_stripoffset;
99 uint64* td_stripbytecount;
106 uint64* td_subifd;
H A Dtif_aux.c49 uint64
50 _TIFFMultiply64(TIFF* tif, uint64 first, uint64 second, const char* where) in _TIFFMultiply64()
52 uint64 bytes = first * second; in _TIFFMultiply64()
331 _TIFFUInt64ToFloat(uint64 ui64) in _TIFFUInt64ToFloat()
347 _TIFFUInt64ToDouble(uint64 ui64) in _TIFFUInt64ToDouble()
H A Dtif_swab.c59 TIFFSwabLong8(uint64* lp) in TIFFSwabLong8()
63 assert(sizeof(uint64)==8); in TIFFSwabLong8()
122 TIFFSwabArrayOfLong8(register uint64* lp, tmsize_t n) in TIFFSwabArrayOfLong8()
126 assert(sizeof(uint64)==8); in TIFFSwabArrayOfLong8()
H A Dtif_ojpeg.c253 uint64 file_size;
274 uint64 qtable_offset[3];
275 uint64 dctable_offset[3];
488 *va_arg(ap,uint64*)=(uint64)sp->jpeg_interchange_format; in OJPEGVGetField()
491 *va_arg(ap,uint64*)=(uint64)sp->jpeg_interchange_format_length; in OJPEGVGetField()
529 uint64* mb; in OJPEGVSetField()
536 sp->jpeg_interchange_format=(uint64)va_arg(ap,uint64); in OJPEGVSetField()
539 sp->jpeg_interchange_format_length=(uint64)va_arg(ap,uint64); in OJPEGVSetField()
558 mb=(uint64*)va_arg(ap,uint64*); in OJPEGVSetField()
573 mb=(uint64*)va_arg(ap,uint64*); in OJPEGVSetField()
[all …]
H A Dtif_print.c103 (unsigned __int64)((uint64 *) raw_data)[j]); in _TIFFPrintField()
106 (unsigned long long)((uint64 *) raw_data)[j]); in _TIFFPrintField()
117 (unsigned __int64)((uint64 *) raw_data)[j]); in _TIFFPrintField()
120 (unsigned long long)((uint64 *) raw_data)[j]); in _TIFFPrintField()
H A Dtiff.h78 typedef TIFF_UINT64_T uint64; typedef
107 uint64 tiff_diroff; /* byte offset to first directory */
H A Dtif_flush.c50 uint64 *offsets=NULL, *sizes=NULL; in TIFFFlush()
/libtiff-4.0.7/tools/
H A Dtiffdump.c119 uint64 diroff = 0; in main()
162 static uint64 ReadDirectory(int, unsigned, uint64);
300 static uint64
306 uint64 nextdiroff = 0; in ReadDirectory()
326 if (read(fd, (char*) &dircount64, sizeof (uint64)) != sizeof (uint64)) { in ReadDirectory()
366 if (read(fd, (char*) &nextdiroff, sizeof (uint64)) != sizeof (uint64)) in ReadDirectory()
385 uint64 count; in ReadDirectory()
386 uint64 datasize; in ReadDirectory()
389 uint64 dataoffset; in ReadDirectory()
762 uint64 *llp = (uint64*)data; in PrintData()
[all …]
H A Dtiffsplit.c238 uint64 *bytecounts; in cpStrips()
246 if (bytecounts[s] > (uint64)bufsize) { in cpStrips()
272 uint64 *bytecounts; in cpTiles()
280 if (bytecounts[t] > (uint64) bufsize) { in cpTiles()
H A Dthumbnail.c171 { uint64 longv8; in cpTag()
310 uint64 *bytecounts; in cpStrips()
314 if (bytecounts[s] > (uint64) bufsize) { in cpStrips()
344 uint64 *bytecounts; in cpTiles()
348 if (bytecounts[t] > (uint64) bufsize) { in cpTiles()
H A Dtiff2pdf.c383 static uint64
412 static uint64
428 static uint64
449 static uint64
450 checkAdd64(uint64 summand1, uint64 summand2, T2P* t2p) in checkAdd64()
464 static uint64
465 checkMultiply64(uint64 first, uint64 second, T2P* t2p) in checkMultiply64()
1894 uint64* sbc=NULL; in t2p_read_tiff_size()
2039 uint64* tbc = NULL; in t2p_read_tiff_size_tile()
2044 uint64 k; in t2p_read_tiff_size_tile()
[all …]
/libtiff-4.0.7/test/
H A Drewrite_tag.c142 uint64 base_value ) in rewrite_test()
148 uint64 *rowoffset, *rowbytes; in rewrite_test()
149 uint64 *upd_rowoffset; in rewrite_test()
150 uint64 *upd_bytecount; in rewrite_test()
222 upd_rowoffset = (uint64 *) _TIFFmalloc(sizeof(uint64) * length); in rewrite_test()
235 upd_bytecount = (uint64 *) _TIFFmalloc(sizeof(uint64) * length); in rewrite_test()
266 uint64 expect = base_value + i*10; in rewrite_test()
289 uint64 expect = 100 + i*10; in rewrite_test()
H A Dcustom_dir.c67 uint64 dir_offset = 0, dir_offset2 = 0; in main()
68 uint64 read_dir_offset = 0, read_dir_offset2 = 0; in main()
69 uint64 *dir_offset2_ptr = NULL; in main()

12