summaryrefslogtreecommitdiffstats
path: root/depends/classparser/src/javaendian.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2016-04-10 15:53:05 +0200
committerPetr Mrázek <peterix@gmail.com>2016-05-01 00:00:14 +0200
commitb6d455a02bd338e9dc0faa09d4d8177ecd8d569a (patch)
tree41982bca1ede50049f2f8c7109dd18edeefde6d0 /depends/classparser/src/javaendian.h
parent47e37635f50c09b4f9a9ee7699e3120bab3e4088 (diff)
downloadMultiMC-b6d455a02bd338e9dc0faa09d4d8177ecd8d569a.tar
MultiMC-b6d455a02bd338e9dc0faa09d4d8177ecd8d569a.tar.gz
MultiMC-b6d455a02bd338e9dc0faa09d4d8177ecd8d569a.tar.lz
MultiMC-b6d455a02bd338e9dc0faa09d4d8177ecd8d569a.tar.xz
MultiMC-b6d455a02bd338e9dc0faa09d4d8177ecd8d569a.zip
NOISSUE reorganize and document libraries
Diffstat (limited to 'depends/classparser/src/javaendian.h')
-rw-r--r--depends/classparser/src/javaendian.h76
1 files changed, 0 insertions, 76 deletions
diff --git a/depends/classparser/src/javaendian.h b/depends/classparser/src/javaendian.h
deleted file mode 100644
index d488b382..00000000
--- a/depends/classparser/src/javaendian.h
+++ /dev/null
@@ -1,76 +0,0 @@
-#pragma once
-#include <stdint.h>
-
-/**
- * Swap bytes between big endian and local number representation
- */
-namespace util
-{
-#ifdef MULTIMC_BIG_ENDIAN
-inline uint64_t bigswap(uint64_t x)
-{
- return x;
-}
-;
-inline uint32_t bigswap(uint32_t x)
-{
- return x;
-}
-;
-inline uint16_t bigswap(uint16_t x)
-{
- return x;
-}
-;
-inline int64_t bigswap(int64_t x)
-{
- return x;
-}
-;
-inline int32_t bigswap(int32_t x)
-{
- return x;
-}
-;
-inline int16_t bigswap(int16_t x)
-{
- return x;
-}
-;
-#else
-inline uint64_t bigswap(uint64_t x)
-{
- return (x >> 56) | ((x << 40) & 0x00FF000000000000) | ((x << 24) & 0x0000FF0000000000) |
- ((x << 8) & 0x000000FF00000000) | ((x >> 8) & 0x00000000FF000000) |
- ((x >> 24) & 0x0000000000FF0000) | ((x >> 40) & 0x000000000000FF00) | (x << 56);
-}
-;
-inline uint32_t bigswap(uint32_t x)
-{
- return (x >> 24) | ((x << 8) & 0x00FF0000) | ((x >> 8) & 0x0000FF00) | (x << 24);
-}
-;
-inline uint16_t bigswap(uint16_t x)
-{
- return (x >> 8) | (x << 8);
-}
-;
-inline int64_t bigswap(int64_t x)
-{
- return (x >> 56) | ((x << 40) & 0x00FF000000000000) | ((x << 24) & 0x0000FF0000000000) |
- ((x << 8) & 0x000000FF00000000) | ((x >> 8) & 0x00000000FF000000) |
- ((x >> 24) & 0x0000000000FF0000) | ((x >> 40) & 0x000000000000FF00) | (x << 56);
-}
-;
-inline int32_t bigswap(int32_t x)
-{
- return (x >> 24) | ((x << 8) & 0x00FF0000) | ((x >> 8) & 0x0000FF00) | (x << 24);
-}
-;
-inline int16_t bigswap(int16_t x)
-{
- return (x >> 8) | (x << 8);
-}
-;
-#endif
-}