annotate bswap.h @ 20:fce16251755c src

Remove all trailing whitespace, patch by Erik Hovland *erik$hovland dot org%
author rathann
date Sat, 06 Sep 2008 21:55:51 +0000
parents fdbae45c30fc
children 4aa618ae094f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
1 #ifndef BSWAP_H_INCLUDED
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
2 #define BSWAP_H_INCLUDED
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
4 /*
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
5 * Copyright (C) 2000, 2001 Billy Biggs <vektor@dumbterm.net>,
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
6 * Håkan Hjort <d95hjort@dtek.chalmers.se>
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
7 *
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
8 * This program is free software; you can redistribute it and/or modify
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
9 * it under the terms of the GNU General Public License as published by
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
10 * the Free Software Foundation; either version 2 of the License, or
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
11 * (at your option) any later version.
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
12 *
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
13 * This program is distributed in the hope that it will be useful,
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
16 * GNU General Public License for more details.
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
17 *
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
18 * You should have received a copy of the GNU General Public License
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
19 * along with this program; if not, write to the Free Software
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
21 */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
22
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
23 #include <config.h>
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
24
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
25 #if defined(WORDS_BIGENDIAN)
20
fce16251755c Remove all trailing whitespace,
rathann
parents: 3
diff changeset
26 /* All bigendian systems are fine, just ignore the swaps. */
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
27 #define B2N_16(x) (void)(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
28 #define B2N_32(x) (void)(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
29 #define B2N_64(x) (void)(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
30
20
fce16251755c Remove all trailing whitespace,
rathann
parents: 3
diff changeset
31 #else
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
32
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
33 /* For __FreeBSD_version */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
34 #if defined(HAVE_SYS_PARAM_H)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
35 #include <sys/param.h>
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
36 #endif
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
37
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
38 #if defined(__linux__) || defined(__GLIBC__)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
39 #include <byteswap.h>
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
40 #define B2N_16(x) x = bswap_16(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
41 #define B2N_32(x) x = bswap_32(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
42 #define B2N_64(x) x = bswap_64(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
43
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
44 #elif defined(__APPLE__)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
45 #include <libkern/OSByteOrder.h>
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
46 #define B2N_16(x) x = OSSwapBigToHostInt16(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
47 #define B2N_32(x) x = OSSwapBigToHostInt32(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
48 #define B2N_64(x) x = OSSwapBigToHostInt64(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
49
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
50 #elif defined(__NetBSD__)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
51 #include <sys/endian.h>
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
52 #define B2N_16(x) BE16TOH(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
53 #define B2N_32(x) BE32TOH(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
54 #define B2N_64(x) BE64TOH(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
55
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
56 #elif defined(__OpenBSD__)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
57 #include <sys/endian.h>
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
58 #define B2N_16(x) x = swap16(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
59 #define B2N_32(x) x = swap32(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
60 #define B2N_64(x) x = swap64(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
61
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
62 #elif defined(__FreeBSD__) && __FreeBSD_version >= 470000
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
63 #include <sys/endian.h>
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
64 #define B2N_16(x) x = be16toh(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
65 #define B2N_32(x) x = be32toh(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
66 #define B2N_64(x) x = be64toh(x)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
67
20
fce16251755c Remove all trailing whitespace,
rathann
parents: 3
diff changeset
68 /* This is a slow but portable implementation, it has multiple evaluation
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
69 * problems so beware.
20
fce16251755c Remove all trailing whitespace,
rathann
parents: 3
diff changeset
70 * Old FreeBSD's and Solaris don't have <byteswap.h> or any other such
fce16251755c Remove all trailing whitespace,
rathann
parents: 3
diff changeset
71 * functionality!
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
72 */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
73
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
74 #elif defined(__FreeBSD__) || defined(__sun) || defined(__bsdi__) || defined(WIN32) || defined(__CYGWIN__) || defined(__BEOS__)
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
75 #define B2N_16(x) \
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
76 x = ((((x) & 0xff00) >> 8) | \
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
77 (((x) & 0x00ff) << 8))
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
78 #define B2N_32(x) \
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
79 x = ((((x) & 0xff000000) >> 24) | \
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
80 (((x) & 0x00ff0000) >> 8) | \
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
81 (((x) & 0x0000ff00) << 8) | \
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
82 (((x) & 0x000000ff) << 24))
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
83 #define B2N_64(x) \
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
84 x = ((((x) & 0xff00000000000000ULL) >> 56) | \
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
85 (((x) & 0x00ff000000000000ULL) >> 40) | \
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
86 (((x) & 0x0000ff0000000000ULL) >> 24) | \
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
87 (((x) & 0x000000ff00000000ULL) >> 8) | \
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
88 (((x) & 0x00000000ff000000ULL) << 8) | \
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
89 (((x) & 0x0000000000ff0000ULL) << 24) | \
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
90 (((x) & 0x000000000000ff00ULL) << 40) | \
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
91 (((x) & 0x00000000000000ffULL) << 56))
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
92
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
93 #else
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
94
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
95 /* If there isn't a header provided with your system with this functionality
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
96 * add the relevant || define( ) to the portable implementation above.
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
97 */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
98 #error "You need to add endian swap macros for you're system"
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
99
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
100 #endif
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
101
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
102 #endif /* WORDS_BIGENDIAN */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
103
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
104 #endif /* BSWAP_H_INCLUDED */