aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/platform.h
diff options
context:
space:
mode:
authorGravatar ShizZy <shizzy@6bit.net>2014-04-22 18:47:43 -0400
committerGravatar ShizZy <shizzy@6bit.net>2014-04-22 18:47:43 -0400
commitc47992114216c461528e441f970432a6f3f0873f (patch)
tree77724ebda82a40186713118e06819422e0c3d9fc /src/common/platform.h
parent5c89324809f3753e143638acee1168d98ff7db6c (diff)
removed duplicate rotl/rotr functions
Diffstat (limited to 'src/common/platform.h')
-rw-r--r--src/common/platform.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/common/platform.h b/src/common/platform.h
index 633f1d69..1e8dffbd 100644
--- a/src/common/platform.h
+++ b/src/common/platform.h
@@ -108,32 +108,6 @@ inline struct tm* localtime_r(const time_t *clock, struct tm *result) {
typedef void EXCEPTION_POINTERS;
-inline u32 _rotl(u32 x, int shift) {
- shift &= 31;
- if (0 == shift) {
- return x;
- }
- return (x << shift) | (x >> (32 - shift));
-}
-
-inline u64 _rotl64(u64 x, u32 shift){
- u32 n = shift % 64;
- return (x << n) | (x >> (64 - n));
-}
-
-inline u32 _rotr(u32 x, int shift) {
- shift &= 31;
- if (0 == shift) {
- return x;
- }
- return (x >> shift) | (x << (32 - shift));
-}
-
-inline u64 _rotr64(u64 x, u32 shift){
- u32 n = shift % 64;
- return (x >> n) | (x << (64 - n));
-}
-
#endif
#define GCC_VERSION_AVAILABLE(major, minor) (defined(__GNUC__) && (__GNUC__ > (major) || \