1 /* bitrotate.h - Rotate bits in integers
2 Copyright (C) 2008-2017 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17 /* Written by Simon Josefsson <simon@josefsson.org>, 2008. */
19 #ifndef _GL_BITROTATE_H
20 #define _GL_BITROTATE_H
24 #include <sys/types.h>
26 #ifndef _GL_INLINE_HEADER_BEGIN
27 #error "Please include config.h first."
29 _GL_INLINE_HEADER_BEGIN
30 #ifndef BITROTATE_INLINE
31 # define BITROTATE_INLINE _GL_INLINE
35 /* Given an unsigned 64-bit argument X, return the value corresponding
36 to rotating the bits N steps to the left. N must be between 1 and
38 BITROTATE_INLINE
uint64_t
39 rotl64 (uint64_t x
, int n
)
41 return ((x
<< n
) | (x
>> (64 - n
))) & UINT64_MAX
;
44 /* Given an unsigned 64-bit argument X, return the value corresponding
45 to rotating the bits N steps to the right. N must be between 1 to
47 BITROTATE_INLINE
uint64_t
48 rotr64 (uint64_t x
, int n
)
50 return ((x
>> n
) | (x
<< (64 - n
))) & UINT64_MAX
;
54 /* Given an unsigned 32-bit argument X, return the value corresponding
55 to rotating the bits N steps to the left. N must be between 1 and
57 BITROTATE_INLINE
uint32_t
58 rotl32 (uint32_t x
, int n
)
60 return ((x
<< n
) | (x
>> (32 - n
))) & UINT32_MAX
;
63 /* Given an unsigned 32-bit argument X, return the value corresponding
64 to rotating the bits N steps to the right. N must be between 1 to
66 BITROTATE_INLINE
uint32_t
67 rotr32 (uint32_t x
, int n
)
69 return ((x
>> n
) | (x
<< (32 - n
))) & UINT32_MAX
;
72 /* Given a size_t argument X, return the value corresponding
73 to rotating the bits N steps to the left. N must be between 1 and
74 (CHAR_BIT * sizeof (size_t) - 1) inclusive. */
75 BITROTATE_INLINE
size_t
76 rotl_sz (size_t x
, int n
)
78 return ((x
<< n
) | (x
>> ((CHAR_BIT
* sizeof x
) - n
))) & SIZE_MAX
;
81 /* Given a size_t argument X, return the value corresponding
82 to rotating the bits N steps to the right. N must be between 1 to
83 (CHAR_BIT * sizeof (size_t) - 1) inclusive. */
84 BITROTATE_INLINE
size_t
85 rotr_sz (size_t x
, int n
)
87 return ((x
>> n
) | (x
<< ((CHAR_BIT
* sizeof x
) - n
))) & SIZE_MAX
;
90 /* Given an unsigned 16-bit argument X, return the value corresponding
91 to rotating the bits N steps to the left. N must be between 1 to
92 15 inclusive, but on most relevant targets N can also be 0 and 16
93 because 'int' is at least 32 bits and the arguments must widen
95 BITROTATE_INLINE
uint16_t
96 rotl16 (uint16_t x
, int n
)
98 return ((x
<< n
) | (x
>> (16 - n
))) & UINT16_MAX
;
101 /* Given an unsigned 16-bit argument X, return the value corresponding
102 to rotating the bits N steps to the right. N must be in 1 to 15
103 inclusive, but on most relevant targets N can also be 0 and 16
104 because 'int' is at least 32 bits and the arguments must widen
106 BITROTATE_INLINE
uint16_t
107 rotr16 (uint16_t x
, int n
)
109 return ((x
>> n
) | (x
<< (16 - n
))) & UINT16_MAX
;
112 /* Given an unsigned 8-bit argument X, return the value corresponding
113 to rotating the bits N steps to the left. N must be between 1 to 7
114 inclusive, but on most relevant targets N can also be 0 and 8
115 because 'int' is at least 32 bits and the arguments must widen
117 BITROTATE_INLINE
uint8_t
118 rotl8 (uint8_t x
, int n
)
120 return ((x
<< n
) | (x
>> (8 - n
))) & UINT8_MAX
;
123 /* Given an unsigned 8-bit argument X, return the value corresponding
124 to rotating the bits N steps to the right. N must be in 1 to 7
125 inclusive, but on most relevant targets N can also be 0 and 8
126 because 'int' is at least 32 bits and the arguments must widen
128 BITROTATE_INLINE
uint8_t
129 rotr8 (uint8_t x
, int n
)
131 return ((x
>> n
) | (x
<< (8 - n
))) & UINT8_MAX
;
134 _GL_INLINE_HEADER_END
136 #endif /* _GL_BITROTATE_H */