summaryrefslogtreecommitdiffstats
path: root/balkan/byteswap.h
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-12-03 21:24:07 +0000
committerJeremy Katz <katzj@redhat.com>2002-12-03 21:24:07 +0000
commit8345996b3b9f995c464789292c21e2496fe80189 (patch)
tree49149f75685d96ff9078343db4158911b1b34664 /balkan/byteswap.h
parent093639f925df83f717caeb8a930b22968b9309c8 (diff)
downloadanaconda-8345996b3b9f995c464789292c21e2496fe80189.tar.gz
anaconda-8345996b3b9f995c464789292c21e2496fe80189.tar.xz
anaconda-8345996b3b9f995c464789292c21e2496fe80189.zip
die balkan die die die
Diffstat (limited to 'balkan/byteswap.h')
-rw-r--r--balkan/byteswap.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/balkan/byteswap.h b/balkan/byteswap.h
deleted file mode 100644
index d271146aa..000000000
--- a/balkan/byteswap.h
+++ /dev/null
@@ -1,59 +0,0 @@
-#ifndef H_BYTESWAP
-#define H_BYTESWAP 1
-
-#include <endian.h>
-#include <stdint.h>
-
-#define swab16(x) \
- ((uint16_t)( \
- (((uint16_t)(x) & (uint16_t)0x00ffU) << 8) | \
- (((uint16_t)(x) & (uint16_t)0xff00U) >> 8) ))
-#define swab32(x) \
- ((uint32_t)( \
- (((uint32_t)(x) & (uint32_t)0x000000ffUL) << 24) | \
- (((uint32_t)(x) & (uint32_t)0x0000ff00UL) << 8) | \
- (((uint32_t)(x) & (uint32_t)0x00ff0000UL) >> 8) | \
- (((uint32_t)(x) & (uint32_t)0xff000000UL) >> 24) ))
-#define swab64(x) \
- ((uint64_t)( \
- (uint64_t)(((uint64_t)(x) & (uint64_t)0x00000000000000ffULL) << 56) | \
- (uint64_t)(((uint64_t)(x) & (uint64_t)0x000000000000ff00ULL) << 40) | \
- (uint64_t)(((uint64_t)(x) & (uint64_t)0x0000000000ff0000ULL) << 24) | \
- (uint64_t)(((uint64_t)(x) & (uint64_t)0x00000000ff000000ULL) << 8) | \
- (uint64_t)(((uint64_t)(x) & (uint64_t)0x000000ff00000000ULL) >> 8) | \
- (uint64_t)(((uint64_t)(x) & (uint64_t)0x0000ff0000000000ULL) >> 24) | \
- (uint64_t)(((uint64_t)(x) & (uint64_t)0x00ff000000000000ULL) >> 40) | \
- (uint64_t)(((uint64_t)(x) & (uint64_t)0xff00000000000000ULL) >> 56) ))
-
-#if __BYTE_ORDER == __LITTLE_ENDIAN
-
-#define cpu_to_le16(x) x
-#define cpu_to_le32(x) x
-#define cpu_to_le64(x) x
-#define le16_to_cpu(x) x
-#define le32_to_cpu(x) x
-#define le64_to_cpu(x) x
-#define cpu_to_be16(x) swab16(x)
-#define cpu_to_be32(x) swab32(x)
-#define cpu_to_be64(x) swab64(x)
-#define be16_to_cpu(x) swab16(x)
-#define be32_to_cpu(x) swab32(x)
-#define be64_to_cpu(x) swab64(x)
-
-#else
-
-#define cpu_to_le16(x) swab16(x)
-#define cpu_to_le32(x) swab32(x)
-#define cpu_to_le64(x) swab64(x)
-#define le16_to_cpu(x) swab16(x)
-#define le32_to_cpu(x) swab32(x)
-#define le64_to_cpu(x) swab64(x)
-#define cpu_to_be16(x) x
-#define cpu_to_be32(x) x
-#define cpu_to_be64(x) x
-#define be16_to_cpu(x) x
-#define be32_to_cpu(x) x
-#define be64_to_cpu(x) x
-
-#endif
-#endif