| /libtiff-4.0.7/libtiff/ |
| H A D | tif_swab.c | 41 t = cp[1]; cp[1] = cp[0]; cp[0] = t; in TIFFSwabShort() 52 t = cp[3]; cp[3] = cp[0]; cp[0] = t; in TIFFSwabLong() 53 t = cp[2]; cp[2] = cp[1]; cp[1] = t; in TIFFSwabLong() 64 t = cp[7]; cp[7] = cp[0]; cp[0] = t; in TIFFSwabLong8() 65 t = cp[6]; cp[6] = cp[1]; cp[1] = t; in TIFFSwabLong8() 66 t = cp[5]; cp[5] = cp[2]; cp[2] = t; in TIFFSwabLong8() 67 t = cp[4]; cp[4] = cp[3]; cp[3] = t; in TIFFSwabLong8() 81 t = cp[1]; cp[1] = cp[0]; cp[0] = t; in TIFFSwabArrayOfShort() 97 t = cp[2]; cp[2] = cp[0]; cp[0] = t; in TIFFSwabArrayOfTriples() 146 t = cp[3]; cp[3] = cp[0]; cp[0] = t; in TIFFSwabFloat() [all …]
|
| H A D | tif_vms.c | 526 float_t t; \ 527 if (t.ieee.exp = (fp)->native.exp) \ 528 t.ieee.exp += -129 + 127; \ 529 t.ieee.sign = (fp)->native.sign; \ 531 *(fp) = t; \ 534 float_t t; int v = (fp)->ieee.exp; \ 536 t.native.exp = v; /* implicit truncation of exponent */\ 537 t.native.sign = (fp)->ieee.sign; \ 539 t.native.mant1 = v >> 16; \ 540 t.native.mant2 = v;\ [all …]
|
| H A D | tif_fax3.h | 194 #define DEBUG_SHOW putchar(BitAcc & (1 << t) ? '1' : '0') 196 int t; \ 201 for (t = 0; t < TabEnt->Width; t++) \ 208 int t; \ 213 for (t = 0; t < TabEnt->Width; t++) \
|
| H A D | tiffiop.h | 212 #define isPseudoTag(t) (t > 0xffff) /* is tag value normal or pseudo */ argument 260 #define TIFFSafeMultiply(t,v,m) ((((t)(m) != (t)0) && (((t)(((v)*(m))/(m))) == (t)(v))) ? (t)((v)*(… argument
|
| H A D | tif_fax3.c | 93 #define isAligned(p,t) ((((size_t)(p)) & (sizeof (t)-1)) == 0) argument 265 #define SWAP(t,a,b) { t x; x = (a); (a) = (b); (b) = x; } argument 623 int t; \ 625 for (t = length-1; t >= 0; t--) \ 626 putchar(code & (1<<t) ? '1' : '0'); \ 1394 #define SWAP(t,a,b) { t x; x = (a); (a) = (b); (b) = x; } argument
|
| H A D | tiffconf.h-vms | 80 packages produce RGBA files but don't mark the alpha properly. */ 89 * XXX: These macros are obsoleted. Don't use them in your apps!
|
| H A D | tif_lzw.c | 418 int t; in LZWDecode() local 420 t = codep->value; in LZWDecode() 422 *tp = (char)t; in LZWDecode() 533 int t; in LZWDecode() local 535 t = codep->value; in LZWDecode() 537 *tp = (char)t; in LZWDecode()
|
| H A D | tiffconf.h.in | 105 packages produce RGBA files but don't mark the alpha properly. */ 117 * XXX: These macros are obsoleted. Don't use them in your apps!
|
| H A D | tiffconf.h.cmake.in | 108 packages produce RGBA files but don't mark the alpha properly. */ 120 * XXX: These macros are obsoleted. Don't use them in your apps!
|
| H A D | tif_aux.c | 108 double t = (double)i/((double) n-1.); in TIFFDefaultTransferFunction() local 109 tf[0][i] = (uint16)floor(65535.*pow(t, 2.2) + .5); in TIFFDefaultTransferFunction()
|
| /libtiff-4.0.7/tools/ |
| H A D | tiffsplit.c | 271 ttile_t t, nt = TIFFNumberOfTiles(in); in cpTiles() local 279 for (t = 0; t < nt; t++) { in cpTiles() 280 if (bytecounts[t] > (uint64) bufsize) { in cpTiles() 281 buf = (unsigned char *)_TIFFrealloc(buf, (tmsize_t)bytecounts[t]); in cpTiles() 284 bufsize = (tmsize_t)bytecounts[t]; in cpTiles() 286 if (TIFFReadRawTile(in, t, buf, (tmsize_t)bytecounts[t]) < 0 || in cpTiles() 287 TIFFWriteRawTile(out, t, buf, (tmsize_t)bytecounts[t]) < 0) { in cpTiles()
|
| H A D | thumbnail.c | 343 ttile_t t, nt = TIFFNumberOfTiles(in); in cpTiles() local 347 for (t = 0; t < nt; t++) { in cpTiles() 348 if (bytecounts[t] > (uint64) bufsize) { in cpTiles() 349 buf = (unsigned char *)_TIFFrealloc(buf, (tmsize_t)bytecounts[t]); in cpTiles() 352 bufsize = (tmsize_t)bytecounts[t]; in cpTiles() 354 if (TIFFReadRawTile(in, t, buf, (tmsize_t)bytecounts[t]) < 0 || in cpTiles() 355 TIFFWriteRawTile(out, t, buf, (tmsize_t)bytecounts[t]) < 0) { in cpTiles()
|
| H A D | fax2ps.c | 128 int t = 0; in printruns() local 132 t |= ((1 << runlength)-1) << (bitsleft-runlength); in printruns() 146 t |= ((1 << bitsleft)-1); in printruns() 155 putchar(svalue[t]), n--; in printruns()
|
| /libtiff-4.0.7/m4/ |
| H A D | lt~obsolete.m4 | 16 # which have later been changed to m4_define as they aren't part of the 22 # pull the old libtool.m4 in (it doesn't see our shiny new m4_define 23 # and doesn't know about Autoconf macros at all.) 27 # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything 36 # This is to help aclocal find these macros, as it can't see m4_define.
|
| H A D | libtool.m4 | 1780 # we can't tell. 2835 # Don't embed -rpath directories since the linker doesn't support them. 3845 # These system don't have libm, or don't need it 4028 " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ 4071 # define LT@&t@_DLSYM_CONST 5588 # Don't use ranlib 6659 # Don't use ranlib 7698 subroutine t 7705 program t 7834 subroutine t [all …]
|
| /libtiff-4.0.7/contrib/iptcutil/ |
| H A D | README | 6 Usage: iptcutil -t | -b [-i file] [-o file] <input >output 8 Notes: You tell the program the "type" of input file via the -t and -b 9 switches. The -t says that the input is text, while the -b says
|
| /libtiff-4.0.7/test/images/ |
| H A D | minisblack-1c-8b.pgm | 4 …�~x^b��������ĸ�������ľ��������������������R@�����������������»��������Ͻ��-1t��������������-T�tS… 8 R����������������t�����������y���������sE*nKLI[ri[WWURSTPNLNLJc{}���vQTSYWZ]\_toZYY[[[\]\YY\\]_… 13 …WZ[]__aa_^YX]\]^__bbbbabaadfgefed`bbaab``bdrlccli������������ysi^ely��������t}�������������������o… 55 …������̺��lD?I[n~ufh}������A-w����������Z�������������������������/HW��[t�}gRA9577:88<=75512/3… 56 …s_NFA:541344437552141/10$Y�������������������������������?;@4Cj}�������}e[]�t)A�����u�~��ļ�ْ]��ePo… 57 …t�����������������������������~"U����������������PJP,#g�����������ɿÒ`��Ve��y2BKUez�������������… 66 WJFGKNMROPS[Y[XYY\x��>B9:9<:8>BB@@@8;99982.,'#t��������������������������}7 70 …"#P��������������������������d3"\u���������������������������������ܬ]t{��|���������������ı�… 111 …����g!+:@CNXagmdWS\cn{��~xvrzyxuraREBABDGHQY][dpy������������N@S^t~����zleab[E$ 116 …[hcLABHDJKLQPRWVHD/$"&($#:g��ƾ����kYaY_io������������������DŽ���t]TE;5�ļ��������������…
|
| /libtiff-4.0.7/contrib/pds/ |
| H A D | README | 11 You probably don't remember me, but I sent in a couple of bug fixes 18 top of the library so they shouldn't be much trouble to incorporate them 40 and 64-bit floating point data, which wasn't possible with ReadRGBA(). 48 ReadRGBA() in terms of the image iterator, but I haven't done that.
|
| H A D | tif_pdsdirwrite.c | 662 uint32* t; in TIFFWriteRationalArray() local 668 t = (uint32*) _TIFFmalloc(2*n * sizeof (uint32)); in TIFFWriteRationalArray() 688 t[2*i+0] = sign * (fv + 0.5); in TIFFWriteRationalArray() 689 t[2*i+1] = den; in TIFFWriteRationalArray() 691 status = TIFFWriteData(tif, dir, (char *)t); in TIFFWriteRationalArray() 692 _TIFFfree((char*) t); in TIFFWriteRationalArray()
|
| /libtiff-4.0.7/ |
| H A D | aclocal.m4 | 164 # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was 186 # making bogus files that we don't know about and never remove. For 192 # Copy depcomp to subdir because otherwise we won't find it if we're 256 # This compiler won't grok '-c -o', but also, the minuso test has 418 # your package does certain things. But this isn't really a big deal. 636 # with a leading dot. For instance MS-DOS doesn't. 702 # If we don't find an include directive, just comment out the code. 893 # Do 'set' in a subshell so we don't clobber the current shell's 904 # -L didn't work. 905 set X `ls -t "$srcdir/configure" conftest.file` [all …]
|
| H A D | README | 14 If you don't have an HTML viewer then you can read the HTML source 19 If you can't hack either of these options then basically what you
|
| H A D | ChangeLog | 4692 don't have assert.h. 5364 TIFFReadRGBAStrip.3t, TIFFReadRGBATile.3t, TIFFRGBAImage.3t}: 5424 * libtiff/{tiffio.h, tif_codec.c}, man/{libtiff.3t, TIFFcodec.3t}: 5490 * libtiff/{tiffio.h, tif_strip.c}, man/{TIFFstrip.3t, libtiff.3t}: 5631 lzw-compression-kit hasn't such troubles. 6231 won't work when tags with uknown sizes founded. 6258 * man/libtiff.3t: added copyright tag info. 6867 * tif_open.c: Don't set MMAP for O_RDWR files. 6896 won't include it when building with __CYGWIN__. 7075 * Added html for TIFFWriteTile.3t man page. [all …]
|
| /libtiff-4.0.7/contrib/addtiffo/ |
| H A D | README | 43 it doesn't copy geotiff tags to the reduced resolution images. 48 packages. Many don't properly support PLANARCONFIG_SEPARATE. 52 both, but it isn't currently easy to add a SUBIFD tag to an existing
|
| /libtiff-4.0.7/archive/tools/ |
| H A D | ras2tiff.c | 244 #define SWAP(a,b) { unsigned char t = (a); (a) = (b); (b) = t; } in main()
|
| /libtiff-4.0.7/contrib/win_dib/ |
| H A D | README.Tiffile | 8 pixel, rather than 1 bit). I read tiff files, but don't need to
|