From 38be0d13830efd2d98281c645c3a60afe05ffece Mon Sep 17 00:00:00 2001 From: Qt by Nokia Date: Wed, 27 Apr 2011 12:05:43 +0200 Subject: Initial import from the monolithic Qt. This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12 --- src/3rdparty/libtiff/html/man/TIFFswab.3tiff.html | 110 ++++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 src/3rdparty/libtiff/html/man/TIFFswab.3tiff.html (limited to 'src/3rdparty/libtiff/html/man/TIFFswab.3tiff.html') diff --git a/src/3rdparty/libtiff/html/man/TIFFswab.3tiff.html b/src/3rdparty/libtiff/html/man/TIFFswab.3tiff.html new file mode 100644 index 0000000000..2924a38bd9 --- /dev/null +++ b/src/3rdparty/libtiff/html/man/TIFFswab.3tiff.html @@ -0,0 +1,110 @@ + + + + + + +SWAB + + + +

SWAB

+NAME
+SYNOPSIS
+DESCRIPTION
+DIAGNOSTICS
+SEE ALSO
+ +
+ +

NAME

+ + + + + +
+

TIFFGetBitRevTable, TIFFReverseBits, TIFFSwabShort, +TIFFSwabLong, TIFFSwabArrayOfShort, TIFFSwabArrayOfLong +− byte- and bit-swapping routines

+
+ +

SYNOPSIS

+ + + + + +
+

#include <tiffio.h>

+ +

const unsigned char* TIFFGetBitRevTable(int +reversed)
+void TIFFReverseBits(u_char *
data, unsigned +long nbytes)
+void TIFFSwabShort(uint16 *
data)
+void TIFFSwabLong(uint32 *
data)
+void TIFFSwabArrayOfShort(uint16 *
data, +unsigned long nshorts)
+void TIFFSwabArrayOfLong(uint32 *
data, +unsigned long nlongs)

+
+ +

DESCRIPTION

+ + + + + +
+

The following routines are used by the library to swap +16- and 32-bit data and to reverse the order of bits in +bytes.

+ +

TIFFSwabShort and TIFFSwabLong swap the +bytes in a single 16-bit and 32-bit item, respectively. +TIFFSwabArrayOfShort and TIFFSwabArrayOfLong +swap the bytes in an array of 16-bit and 32-bit items, +respectively.

+ +

TIFFReverseBits replaces each byte in data +with the equivalent bit-reversed value. This operation is +performed with a lookup table, which is returned using the +TIFFGetBitRevTable function. reversed +parameter specifies which table should be returned. Supply +1 if you want bit reversal table. Supply 0 to +get the table that do not reverse bit values. It is a lookup +table that can be used as an identity function; i.e. +TIFFNoBitRevTable[n] == n.

+
+ +

DIAGNOSTICS

+ + + + + +
+

None.

+
+ +

SEE ALSO

+ + + + + +
+

libtiff(3TIFF)

+ +

Libtiff library home page: +http://www.remotesensing.org/libtiff/

+
+
+ + -- cgit v1.2.3