2
0
mirror of https://github.com/xcat2/xNBA.git synced 2026-05-20 07:44:45 +00:00
Files
xNBA/src/include/ipxe/rotate.h
T
Michael Brown 8406115834 [build] Rename gPXE to iPXE
Access to the gpxe.org and etherboot.org domains and associated
resources has been revoked by the registrant of the domain.  Work
around this problem by renaming project from gPXE to iPXE, and
updating URLs to match.

Also update README, LOG and COPYRIGHTS to remove obsolete information.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
2010-04-19 23:43:39 +01:00

30 lines
757 B
C

#ifndef _IPXE_ROTATE_H
#define _IPXE_ROTATE_H
/** @file
*
* Bit operations
*/
FILE_LICENCE ( GPL2_OR_LATER );
#include <stdint.h>
static inline uint32_t rol32 ( uint32_t data, unsigned int rotation ) {
return ( ( data << rotation ) | ( data >> ( 32 - rotation ) ) );
}
static inline uint32_t ror32 ( uint32_t data, unsigned int rotation ) {
return ( ( data >> rotation ) | ( data << ( 32 - rotation ) ) );
}
static inline uint64_t rol64 ( uint64_t data, unsigned int rotation ) {
return ( ( data << rotation ) | ( data >> ( 64 - rotation ) ) );
}
static inline uint64_t ror64 ( uint64_t data, unsigned int rotation ) {
return ( ( data >> rotation ) | ( data << ( 64 - rotation ) ) );
}
#endif /* _IPXE_ROTATE_H */