aboutsummaryrefslogtreecommitdiffstats
path: root/doc/api-documentation/html/sysdata_8h-source.html
diff options
context:
space:
mode:
authordanglassey <danglassey>2002-10-31 14:03:48 +0000
committerdanglassey <danglassey>2002-10-31 14:03:48 +0000
commitc25950a1b05be0cd5d7590327e6fadd5682392e2 (patch)
tree0b5c5a7aa45e7e5838b0774e50a67a0e09ef1467 /doc/api-documentation/html/sysdata_8h-source.html
parent2816ff7ae11cc09934214a2aaeffa92a483e1618 (diff)
downloadsword-sf-cvs-c25950a1b05be0cd5d7590327e6fadd5682392e2.tar.gz
sync with crosswire 20021031-1400
Diffstat (limited to 'doc/api-documentation/html/sysdata_8h-source.html')
-rw-r--r--doc/api-documentation/html/sysdata_8h-source.html157
1 files changed, 79 insertions, 78 deletions
diff --git a/doc/api-documentation/html/sysdata_8h-source.html b/doc/api-documentation/html/sysdata_8h-source.html
index 62f4c93..5e17211 100644
--- a/doc/api-documentation/html/sysdata_8h-source.html
+++ b/doc/api-documentation/html/sysdata_8h-source.html
@@ -3,88 +3,89 @@
<title>sysdata.h Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
-<!-- Generated by Doxygen 1.2.15 -->
+<!-- Generated by Doxygen 1.2.17 -->
<center>
-<a class="qindex" href="index.html">Main Page</a> &nbsp; <a class="qindex" href="namespaces.html">Namespace List</a> &nbsp; <a class="qindex" href="hierarchy.html">Class Hierarchy</a> &nbsp; <a class="qindex" href="classes.html">Alphabetical List</a> &nbsp; <a class="qindex" href="annotated.html">Compound List</a> &nbsp; <a class="qindex" href="files.html">File List</a> &nbsp; <a class="qindex" href="functions.html">Compound Members</a> &nbsp; </center>
-<hr><h1>sysdata.h</h1><div class="fragment"><pre>00001 <font class="preprocessor">#ifndef SIZEDTYPES_H</font>
-00002 <font class="preprocessor"></font><font class="preprocessor">#define SIZEDTYPES_H</font>
-00003 <font class="preprocessor"></font><font class="comment">/*</font>
-00004 <font class="comment"> * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the</font>
-00005 <font class="comment"> * header files exported to user space</font>
-00006 <font class="comment"> */</font>
-00007 <font class="preprocessor">#ifdef USE_AUTOTOOLS</font>
-00008 <font class="preprocessor"></font><font class="preprocessor">#include "config.h"</font>
-00009 <font class="preprocessor">#endif</font>
-00010 <font class="preprocessor"></font>
-00011 <font class="keyword">typedef</font> <font class="keywordtype">signed</font> <font class="keywordtype">char</font> __s8;
-00012 <font class="keyword">typedef</font> <font class="keywordtype">unsigned</font> <font class="keywordtype">char</font> __u8;
-00013
-00014 <font class="keyword">typedef</font> <font class="keywordtype">signed</font> <font class="keywordtype">short</font> __s16;
-00015 <font class="keyword">typedef</font> <font class="keywordtype">unsigned</font> <font class="keywordtype">short</font> __u16;
-00016
-00017 <font class="keyword">typedef</font> <font class="keywordtype">signed</font> <font class="keywordtype">int</font> __s32;
-00018 <font class="keyword">typedef</font> <font class="keywordtype">unsigned</font> <font class="keywordtype">int</font> __u32;
-00019
-00020 <font class="preprocessor">#if defined(__GNUC__) &amp;&amp; !defined(__STRICT_ANSI__)</font>
-00021 <font class="preprocessor"></font><font class="comment">//typedef __signed__ long long __s64;</font>
-00022 <font class="comment">//typedef unsigned long long __u64;</font>
-00023 <font class="preprocessor">#endif</font>
-00024 <font class="preprocessor"></font>
-00025
-00026 <font class="preprocessor">#define __swap16(x) \</font>
-00027 <font class="preprocessor"> ((__u16)( \</font>
-00028 <font class="preprocessor"> (((__u16)(x) &amp; (__u16)0x00ffU) &lt;&lt; 8) | \</font>
-00029 <font class="preprocessor"> (((__u16)(x) &amp; (__u16)0xff00U) &gt;&gt; 8) ))</font>
-00030 <font class="preprocessor"></font>
-00031
-00032 <font class="preprocessor">#define __swap32(x) \</font>
-00033 <font class="preprocessor"> ((__u32)( \</font>
-00034 <font class="preprocessor"> (((__u32)(x) &amp; (__u32)0x000000ffUL) &lt;&lt; 24) | \</font>
-00035 <font class="preprocessor"> (((__u32)(x) &amp; (__u32)0x0000ff00UL) &lt;&lt; 8) | \</font>
-00036 <font class="preprocessor"> (((__u32)(x) &amp; (__u32)0x00ff0000UL) &gt;&gt; 8) | \</font>
-00037 <font class="preprocessor"> (((__u32)(x) &amp; (__u32)0xff000000UL) &gt;&gt; 24) ))</font>
-00038 <font class="preprocessor"></font>
-00039
-00040 <font class="preprocessor">#define __swap64(x) \</font>
-00041 <font class="preprocessor"> ((__u64)( \</font>
-00042 <font class="preprocessor"> (__u64)(((__u64)(x) &amp; (__u64)0x00000000000000ffULL) &lt;&lt; 56) | \</font>
-00043 <font class="preprocessor"> (__u64)(((__u64)(x) &amp; (__u64)0x000000000000ff00ULL) &lt;&lt; 40) | \</font>
-00044 <font class="preprocessor"> (__u64)(((__u64)(x) &amp; (__u64)0x0000000000ff0000ULL) &lt;&lt; 24) | \</font>
-00045 <font class="preprocessor"> (__u64)(((__u64)(x) &amp; (__u64)0x00000000ff000000ULL) &lt;&lt; 8) | \</font>
-00046 <font class="preprocessor"> (__u64)(((__u64)(x) &amp; (__u64)0x000000ff00000000ULL) &gt;&gt; 8) | \</font>
-00047 <font class="preprocessor"> (__u64)(((__u64)(x) &amp; (__u64)0x0000ff0000000000ULL) &gt;&gt; 24) | \</font>
-00048 <font class="preprocessor"> (__u64)(((__u64)(x) &amp; (__u64)0x00ff000000000000ULL) &gt;&gt; 40) | \</font>
-00049 <font class="preprocessor"> (__u64)(((__u64)(x) &amp; (__u64)0xff00000000000000ULL) &gt;&gt; 56) ))</font>
-00050 <font class="preprocessor"></font>
-00051
+<a class="qindex" href="index.html">Main Page</a> &nbsp; <a class="qindex" href="namespaces.html">Namespace List</a> &nbsp; <a class="qindex" href="hierarchy.html">Class Hierarchy</a> &nbsp; <a class="qindex" href="classes.html">Alphabetical List</a> &nbsp; <a class="qindex" href="annotated.html">Compound List</a> &nbsp; <a class="qindex" href="files.html">File List</a> &nbsp; <a class="qindex" href="namespacemembers.html">Namespace Members</a> &nbsp; <a class="qindex" href="functions.html">Compound Members</a> &nbsp; </center>
+<hr><h1>sysdata.h</h1><div class="fragment"><pre>00001 <span class="preprocessor">#ifndef SIZEDTYPES_H</span>
+00002 <span class="preprocessor"></span><span class="preprocessor">#define SIZEDTYPES_H</span>
+00003 <span class="preprocessor"></span><span class="comment">/*</span>
+00004 <span class="comment"> * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the</span>
+00005 <span class="comment"> * header files exported to user space</span>
+00006 <span class="comment"> */</span>
+00007 <span class="preprocessor">#ifdef USE_AUTOTOOLS</span>
+00008 <span class="preprocessor"></span><span class="preprocessor">#include "config.h"</span>
+00009 <span class="preprocessor">#endif</span>
+00010 <span class="preprocessor"></span>
+00011
+00012 <span class="keyword">typedef</span> <span class="keywordtype">signed</span> <span class="keywordtype">char</span> __s8;
+00013 <span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> __u8;
+00014
+00015 <span class="keyword">typedef</span> <span class="keywordtype">signed</span> <span class="keywordtype">short</span> __s16;
+00016 <span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">short</span> __u16;
+00017
+00018 <span class="keyword">typedef</span> <span class="keywordtype">signed</span> <span class="keywordtype">int</span> __s32;
+00019 <span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> __u32;
+00020
+00021 <span class="preprocessor">#if defined(__GNUC__) &amp;&amp; !defined(__STRICT_ANSI__)</span>
+00022 <span class="preprocessor"></span><span class="comment">//typedef __signed__ long long __s64;</span>
+00023 <span class="comment">//typedef unsigned long long __u64;</span>
+00024 <span class="preprocessor">#endif</span>
+00025 <span class="preprocessor"></span>
+00026
+00027 <span class="preprocessor">#define __swap16(x) \</span>
+00028 <span class="preprocessor"> ((__u16)( \</span>
+00029 <span class="preprocessor"> (((__u16)(x) &amp; (__u16)0x00ffU) &lt;&lt; 8) | \</span>
+00030 <span class="preprocessor"> (((__u16)(x) &amp; (__u16)0xff00U) &gt;&gt; 8) ))</span>
+00031 <span class="preprocessor"></span>
+00032
+00033 <span class="preprocessor">#define __swap32(x) \</span>
+00034 <span class="preprocessor"> ((__u32)( \</span>
+00035 <span class="preprocessor"> (((__u32)(x) &amp; (__u32)0x000000ffUL) &lt;&lt; 24) | \</span>
+00036 <span class="preprocessor"> (((__u32)(x) &amp; (__u32)0x0000ff00UL) &lt;&lt; 8) | \</span>
+00037 <span class="preprocessor"> (((__u32)(x) &amp; (__u32)0x00ff0000UL) &gt;&gt; 8) | \</span>
+00038 <span class="preprocessor"> (((__u32)(x) &amp; (__u32)0xff000000UL) &gt;&gt; 24) ))</span>
+00039 <span class="preprocessor"></span>
+00040
+00041 <span class="preprocessor">#define __swap64(x) \</span>
+00042 <span class="preprocessor"> ((__u64)( \</span>
+00043 <span class="preprocessor"> (__u64)(((__u64)(x) &amp; (__u64)0x00000000000000ffULL) &lt;&lt; 56) | \</span>
+00044 <span class="preprocessor"> (__u64)(((__u64)(x) &amp; (__u64)0x000000000000ff00ULL) &lt;&lt; 40) | \</span>
+00045 <span class="preprocessor"> (__u64)(((__u64)(x) &amp; (__u64)0x0000000000ff0000ULL) &lt;&lt; 24) | \</span>
+00046 <span class="preprocessor"> (__u64)(((__u64)(x) &amp; (__u64)0x00000000ff000000ULL) &lt;&lt; 8) | \</span>
+00047 <span class="preprocessor"> (__u64)(((__u64)(x) &amp; (__u64)0x000000ff00000000ULL) &gt;&gt; 8) | \</span>
+00048 <span class="preprocessor"> (__u64)(((__u64)(x) &amp; (__u64)0x0000ff0000000000ULL) &gt;&gt; 24) | \</span>
+00049 <span class="preprocessor"> (__u64)(((__u64)(x) &amp; (__u64)0x00ff000000000000ULL) &gt;&gt; 40) | \</span>
+00050 <span class="preprocessor"> (__u64)(((__u64)(x) &amp; (__u64)0xff00000000000000ULL) &gt;&gt; 56) ))</span>
+00051 <span class="preprocessor"></span>
00052
00053
-00054 <font class="preprocessor">#ifndef WORDS_BIGENDIAN</font>
-00055 <font class="preprocessor"></font>
-00056 <font class="preprocessor">#define swordtoarch16(x) (x)</font>
-00057 <font class="preprocessor"></font><font class="preprocessor">#define swordtoarch32(x) (x)</font>
-00058 <font class="preprocessor"></font><font class="preprocessor">#define swordtoarch64(x) (x)</font>
-00059 <font class="preprocessor"></font><font class="preprocessor">#define archtosword16(x) (x)</font>
-00060 <font class="preprocessor"></font><font class="preprocessor">#define archtosword32(x) (x)</font>
-00061 <font class="preprocessor"></font><font class="preprocessor">#define archtosword64(x) (x)</font>
-00062 <font class="preprocessor"></font>
-00063 <font class="preprocessor">#else </font>
-00064 <font class="preprocessor"></font>
-00065 <font class="preprocessor">#define swordtoarch16(x) __swap16(x)</font>
-00066 <font class="preprocessor"></font><font class="preprocessor">#define swordtoarch32(x) __swap32(x)</font>
-00067 <font class="preprocessor"></font><font class="preprocessor">#define swordtoarch64(x) __swap64(x)</font>
-00068 <font class="preprocessor"></font><font class="preprocessor">#define archtosword16(x) __swap16(x)</font>
-00069 <font class="preprocessor"></font><font class="preprocessor">#define archtosword32(x) __swap32(x)</font>
-00070 <font class="preprocessor"></font><font class="preprocessor">#define archtosword64(x) __swap64(x)</font>
-00071 <font class="preprocessor"></font>
-00072
-00073 <font class="preprocessor">#endif</font>
-00074 <font class="preprocessor"></font>
-00075
-00076 <font class="preprocessor">#endif</font>
-</pre></div><hr><address align="right"><small>Generated on Thu Jun 20 22:13:00 2002 for The Sword Project by
+00054
+00055 <span class="preprocessor">#ifndef WORDS_BIGENDIAN</span>
+00056 <span class="preprocessor"></span>
+00057 <span class="preprocessor">#define swordtoarch16(x) (x)</span>
+00058 <span class="preprocessor"></span><span class="preprocessor">#define swordtoarch32(x) (x)</span>
+00059 <span class="preprocessor"></span><span class="preprocessor">#define swordtoarch64(x) (x)</span>
+00060 <span class="preprocessor"></span><span class="preprocessor">#define archtosword16(x) (x)</span>
+00061 <span class="preprocessor"></span><span class="preprocessor">#define archtosword32(x) (x)</span>
+00062 <span class="preprocessor"></span><span class="preprocessor">#define archtosword64(x) (x)</span>
+00063 <span class="preprocessor"></span>
+00064 <span class="preprocessor">#else </span>
+00065 <span class="preprocessor"></span>
+00066 <span class="preprocessor">#define swordtoarch16(x) __swap16(x)</span>
+00067 <span class="preprocessor"></span><span class="preprocessor">#define swordtoarch32(x) __swap32(x)</span>
+00068 <span class="preprocessor"></span><span class="preprocessor">#define swordtoarch64(x) __swap64(x)</span>
+00069 <span class="preprocessor"></span><span class="preprocessor">#define archtosword16(x) __swap16(x)</span>
+00070 <span class="preprocessor"></span><span class="preprocessor">#define archtosword32(x) __swap32(x)</span>
+00071 <span class="preprocessor"></span><span class="preprocessor">#define archtosword64(x) __swap64(x)</span>
+00072 <span class="preprocessor"></span>
+00073
+00074 <span class="preprocessor">#endif</span>
+00075 <span class="preprocessor"></span>
+00076
+00077 <span class="preprocessor">#endif</span>
+</pre></div><hr><address style="align: right;"><small>Generated on Thu Oct 31 12:11:28 2002 for The Sword Project by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0
-width=110 height=53></a>1.2.15 </small></address>
+width=110 height=53></a>1.2.17 </small></address>
</body>
</html>