| /libtiff-4.0.7/libtiff/ |
| H A D | tif_read.c | 182 uint32 strip; in TIFFSeek() local 334 if (strip>=td->td_nstrips) in TIFFReadEncodedStrip() 378 if (!TIFFFillStrip(tif,strip)) in TIFFReadEncodedStrip() 438 (unsigned long) strip, in TIFFReadRawStrip1() 445 (unsigned long) strip, in TIFFReadRawStrip1() 470 if (strip >= td->td_nstrips) { in TIFFReadRawStrip() 473 (unsigned long) strip, in TIFFReadRawStrip() 489 (unsigned long) strip); in TIFFReadRawStrip() 579 (unsigned long) strip, in TIFFFillStrip() 587 (unsigned long) strip, in TIFFFillStrip() [all …]
|
| H A D | tif_write.c | 54 uint32 strip; in TIFFWriteScanline() local 93 strip = row / td->td_rowsperstrip; in TIFFWriteScanline() 103 if (strip != tif->tif_curstrip) { in TIFFWriteScanline() 109 tif->tif_curstrip = strip; in TIFFWriteScanline() 136 td->td_stripbytecount[strip] = 0; in TIFFWriteScanline() 205 if (strip >= td->td_nstrips) { in TIFFWriteEncodedStrip() 225 tif->tif_curstrip = strip; in TIFFWriteEncodedStrip() 322 if (strip >= td->td_nstrips) { in TIFFWriteRawStrip() 333 if (strip >= td->td_stripsperimage) in TIFFWriteRawStrip() 339 tif->tif_curstrip = strip; in TIFFWriteRawStrip() [all …]
|
| H A D | tif_strip.c | 42 uint32 strip; in TIFFComputeStrip() local 44 strip = row / td->td_rowsperstrip; in TIFFComputeStrip() 52 strip += (uint32)sample*td->td_stripsperimage; in TIFFComputeStrip() 54 return (strip); in TIFFComputeStrip() 158 TIFFRawStripSize64(TIFF* tif, uint32 strip) in TIFFRawStripSize64() argument 162 uint64 bytecount = td->td_stripbytecount[strip]; in TIFFRawStripSize64() 170 (unsigned long) strip); in TIFFRawStripSize64() 175 (unsigned long) strip); in TIFFRawStripSize64() 183 TIFFRawStripSize(TIFF* tif, uint32 strip) in TIFFRawStripSize() argument 188 m=TIFFRawStripSize64(tif,strip); in TIFFRawStripSize()
|
| H A D | tiffio.h | 360 extern uint64 TIFFRawStripSize64(TIFF* tif, uint32 strip); 361 extern tmsize_t TIFFRawStripSize(TIFF* tif, uint32 strip); 466 extern tmsize_t TIFFReadEncodedStrip(TIFF* tif, uint32 strip, void* buf, tmsize_t size); 467 extern tmsize_t TIFFReadRawStrip(TIFF* tif, uint32 strip, void* buf, tmsize_t size); 470 extern tmsize_t TIFFWriteEncodedStrip(TIFF* tif, uint32 strip, void* data, tmsize_t cc); 471 extern tmsize_t TIFFWriteRawStrip(TIFF* tif, uint32 strip, void* data, tmsize_t cc);
|
| H A D | tif_dirread.c | 4015 uint32 strip; in TIFFReadDirectory() local 4018 for (strip = 1; strip < tif->tif_dir.td_nstrips; strip++) { in TIFFReadDirectory() 4287 uint32 strip; in EstimateStripByteCounts() local 4338 for (strip = 0; strip < td->td_nstrips; strip++) in EstimateStripByteCounts() 4347 strip--; in EstimateStripByteCounts() 4353 for (strip = 0; strip < td->td_nstrips; strip++) in EstimateStripByteCounts() 4358 for (strip = 0; strip < td->td_nstrips; strip++) in EstimateStripByteCounts() 5504 uint32 strip; in ChopUpSingleUncompressedStrip() local 5565 for (strip = 0; strip < nstrips32; strip++) { in ChopUpSingleUncompressedStrip() 5620 uint32 strip; in _TIFFFillStrilesInternal() local [all …]
|
| H A D | tif_config.h.in | 13 /* enable partial strip reading for large strips (experimental) */ 24 /* enable deferred strip/tile offset/size loading (experimental) */ 286 /* Support strip chopping (whether or not to convert single-strip uncompressed 290 /* Default size of the strip in bytes (when strip chopping enabled) */
|
| H A D | tif_config.h.cmake.in | 11 /* enable partial strip reading for large strips (experimental) */ 17 /* enable deferred strip/tile offset/size loading (experimental) */ 197 /* Default size of the strip in bytes (when strip chopping enabled) */
|
| H A D | tiffconf.h-vms | 71 /* Support strip chopping (whether or not to convert single-strip uncompressed
|
| H A D | tiffconf.h.in | 96 /* Support strip chopping (whether or not to convert single-strip uncompressed
|
| H A D | tiffconf.h.cmake.in | 99 /* Support strip chopping (whether or not to convert single-strip uncompressed
|
| /libtiff-4.0.7/test/ |
| H A D | strip.c | 40 tstrip_t strip, nstrips; in write_strips() local 50 for (offset = 0, strip = 0; in write_strips() 51 offset < size && strip < nstrips; in write_strips() 52 offset+=stripsize, strip++) { in write_strips() 63 (unsigned long)strip); in write_strips() 74 tstrip_t strip, nstrips; in read_strips() local 91 for (offset = 0, strip = 0; in read_strips() 92 offset < size && strip < nstrips; in read_strips() 93 offset+=stripsize, strip++) { in read_strips() 103 (unsigned long)strip); in read_strips() [all …]
|
| /libtiff-4.0.7/tools/ |
| H A D | tiffinfoce.c | 198 ShowStrip(tstrip_t strip, unsigned char* pp, uint32 nrow, tsize_t scanline) in ShowStrip() argument 202 printf("Strip %lu:\n", (unsigned long) strip); in ShowStrip() 229 tstrip_t strip = TIFFComputeStrip(tif, row, 0); in TIFFReadContigStripData() local 230 if (TIFFReadEncodedStrip(tif, strip, buf, nrow*scanline) < 0) { in TIFFReadContigStripData() 234 ShowStrip(strip, buf, nrow, scanline); in TIFFReadContigStripData() 259 tstrip_t strip = TIFFComputeStrip(tif, row, s); in TIFFReadSeparateStripData() local 260 if (TIFFReadEncodedStrip(tif, strip, buf, nrow*scanline) < 0) { in TIFFReadSeparateStripData() 264 ShowStrip(strip, buf, nrow, scanline); in TIFFReadSeparateStripData()
|
| H A D | tiffinfo.c | 200 ShowStrip(tstrip_t strip, unsigned char* pp, uint32 nrow, tsize_t scanline) in ShowStrip() argument 204 printf("Strip %lu:\n", (unsigned long) strip); in ShowStrip() 231 tstrip_t strip = TIFFComputeStrip(tif, row, 0); in TIFFReadContigStripData() local 232 if (TIFFReadEncodedStrip(tif, strip, buf, nrow*scanline) < 0) { in TIFFReadContigStripData() 236 ShowStrip(strip, buf, nrow, scanline); in TIFFReadContigStripData() 261 tstrip_t strip = TIFFComputeStrip(tif, row, s); in TIFFReadSeparateStripData() local 262 if (TIFFReadEncodedStrip(tif, strip, buf, nrow*scanline) < 0) { in TIFFReadSeparateStripData() 266 ShowStrip(strip, buf, nrow, scanline); in TIFFReadSeparateStripData()
|
| /libtiff-4.0.7/archive/tools/ |
| H A D | sgisv.c | 201 unsigned char *strip = (unsigned char *)_TIFFmalloc(stripsize); in svRGBContig() local 204 register unsigned char *pp = strip; in svRGBContig() 221 strip, stripsize) < 0) in svRGBContig() 224 _TIFFfree(strip); in svRGBContig()
|
| H A D | gif2tiff.c | 522 tstrip_t strip; in rasterize() local 568 strip = 0; in rasterize() 575 if (TIFFWriteEncodedStrip(tif, strip, newras+row*width, stripsize) < 0) in rasterize() 577 strip++; in rasterize()
|
| /libtiff-4.0.7/ |
| H A D | configure.ac | 952 dnl Default handling of strip chopping support. 955 AC_ARG_ENABLE(strip-chopping, 956 AS_HELP_STRING([--disable-strip-chopping], 957 …[disable support for strip chopping (whether or not to convert single-strip uncompressed images to… 959 AC_ARG_WITH(default-strip-size, 960 AS_HELP_STRING([--with-default-strip-size=SIZE], 961 [default size of the strip in bytes (when strip chopping enabled) [[default=8192]]]),,) 972 …RIP_SIZE_DEFAULT,$with_default_strip_size,[Default size of the strip in bytes (when strip chopping… 977 dnl Should we try to defer loading of strip/tile offsets and sizes to 998 AC_ARG_ENABLE(chunky-strip-read, [all …]
|
| H A D | CMakeLists.txt | 634 option(strip-chopping "strip chopping (whether or not to convert single-strip uncompressed images t… 635 set(TIFF_DEFAULT_STRIP_SIZE 8192 CACHE STRING "default size of the strip in bytes (when strip chopp… 638 if(strip-chopping) 645 # Defer loading of strip/tile offsets 646 option(defer-strile-load "enable deferred strip/tile offset/size loading (experimental)" OFF) 650 option(chunky-strip-read "enable reading large strips in chunks for TIFFReadScanline() (experimenta… 651 set(CHUNKY_STRIP_READ_SUPPORT ${chunky-strip-read})
|
| H A D | nmake.opt | 86 # Comment out the following lines to disable strip chopping 87 # (whether or not to convert single-strip uncompressed images to mutiple 88 # strips of specified size to reduce memory usage). Default strip size
|
| H A D | TODO | 4 o tiffcmp read data by strip/tile instead of scanline
|
| /libtiff-4.0.7/contrib/win_dib/ |
| H A D | Tiffile.cpp | 405 tstrip_t strip; in getStripContig1Bit() local 426 strip = TIFFComputeStrip(tif,row+img->row_offset, 0); in getStripContig1Bit() 428 if (TIFFReadEncodedStrip(tif, strip, buf, stripsize ) < 0 in getStripContig1Bit()
|
| /libtiff-4.0.7/contrib/pds/ |
| H A D | tif_pdsdirread.c | 1066 tstrip_t strip, nstrips, rowsperstrip; in ChopUpSingleUncompressedStrip() local 1105 for (strip = 0; strip < nstrips; strip++) { in ChopUpSingleUncompressedStrip() 1108 newcounts[strip] = stripbytes; in ChopUpSingleUncompressedStrip() 1109 newoffsets[strip] = offset; in ChopUpSingleUncompressedStrip()
|
| H A D | Makefile.in | 396 install-strip: 483 .MAKE: install-am install-strip 492 install-strip installcheck installcheck-am installdirs \
|
| /libtiff-4.0.7/contrib/mfs/ |
| H A D | Makefile.in | 393 install-strip: 480 .MAKE: install-am install-strip 489 install-strip installcheck installcheck-am installdirs \
|
| /libtiff-4.0.7/contrib/dbs/xtiff/ |
| H A D | Makefile.in | 398 install-strip: 485 .MAKE: install-am install-strip 494 install-strip installcheck installcheck-am installdirs \
|
| /libtiff-4.0.7/contrib/tags/ |
| H A D | Makefile.in | 397 install-strip: 484 .MAKE: install-am install-strip 493 install-strip installcheck installcheck-am installdirs \
|