summaryrefslogtreecommitdiffstats
path: root/usr.sbin/kgzip/endian.h
blob: 78c9b16a3f0b5447b4f6f88824aa0193689f773f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
 * $FreeBSD$
 */

#include <sys/types.h>
#include <machine/endian.h>

#define	bswap16(x) (uint16_t) \
	((x >> 8) | (x << 8))

#define	bswap32(x) (uint32_t) \
	((x >> 24) | ((x >> 8) & 0xff00) | ((x << 8) & 0xff0000) | (x << 24))

#define	bswap64(x) (uint64_t) \
	((x >> 56) | ((x >> 40) & 0xff00) | ((x >> 24) & 0xff0000) | \
	((x >> 8) & 0xff000000) | ((x << 8) & ((uint64_t)0xff << 32)) | \
	((x << 24) & ((uint64_t)0xff << 40)) | \
	((x << 40) & ((uint64_t)0xff << 48)) | ((x << 56)))

/*
 * Host to big endian, host to little endian, big endian to host, and little
 * endian to host byte order functions as detailed in byteorder(9).
 */
#if _BYTE_ORDER == _LITTLE_ENDIAN
#define	HTOBE16(x)	bswap16((uint16_t)(x))
#define	HTOBE32(x)	bswap32((uint32_t)(x))
#define	HTOBE64(x)	bswap64((uint64_t)(x))
#define	HTOLE16(x)	((uint16_t)(x))
#define	HTOLE32(x)	((uint32_t)(x))
#define	HTOLE64(x)	((uint64_t)(x))

#define	BE16TOH(x)	bswap16((uint16_t)(x))
#define	BE32TOH(x)	bswap32((uint32_t)(x))
#define	BE64TOH(x)	bswap64((uint64_t)(x))
#define	LE16TOH(x)	((uint16_t)(x))
#define	LE32TOH(x)	((uint32_t)(x))
#define	LE64TOH(x)	((uint64_t)(x))
#else /* _BYTE_ORDER != _LITTLE_ENDIAN */
#define	HTOBE16(x)	((uint16_t)(x))
#define	HTOBE32(x)	((uint32_t)(x))
#define	HTOBE64(x)	((uint64_t)(x))
#define	HTOLE16(x)	bswap16((uint16_t)(x))
#define	HTOLE32(x)	bswap32((uint32_t)(x))
#define	HTOLE64(x)	bswap64((uint64_t)(x))

#define	BE16TOH(x)	((uint16_t)(x))
#define	BE32TOH(x)	((uint32_t)(x))
#define	BE64TOH(x)	((uint64_t)(x))
#define	LE16TOH(x)	bswap16((uint16_t)(x))
#define	LE32TOH(x)	bswap32((uint32_t)(x))
#define	LE64TOH(x)	bswap64((uint64_t)(x))
#endif /* _BYTE_ORDER == _LITTLE_ENDIAN */
OpenPOWER on IntegriCloud