mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
removed duplicate rotl/rotr functions
This commit is contained in:
parent
5c89324809
commit
c479921142
@ -108,32 +108,6 @@ inline struct tm* localtime_r(const time_t *clock, struct tm *result) {
|
|||||||
|
|
||||||
typedef void EXCEPTION_POINTERS;
|
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
|
#endif
|
||||||
|
|
||||||
#define GCC_VERSION_AVAILABLE(major, minor) (defined(__GNUC__) && (__GNUC__ > (major) || \
|
#define GCC_VERSION_AVAILABLE(major, minor) (defined(__GNUC__) && (__GNUC__ > (major) || \
|
||||||
|
Loading…
Reference in New Issue
Block a user