ReactOS 0.4.16-dev-937-g7afcd2a
rotl.cpp
Go to the documentation of this file.
1//
2// rotl.cpp
3//
4// Copyright (c) Microsoft Corporation. All rights reserved.
5//
6// Defines _lrotl(), _rotl(), and _rotl64(), which perform a rotate-left on an
7// integer.
8//
9#include <stdlib.h>
10#include <limits.h>
11
12
13
14#pragma function(_lrotl, _rotl, _rotl64)
15
16#if UINT_MAX != 0xffffffff
17 #error This source file assumes 32-bit integers
18#endif
19
20#if UINT_MAX != ULONG_MAX
21 #error This source file assumes sizeof(int) == sizeof(long)
22#endif
23
24
25
26extern "C" unsigned long __cdecl _lrotl(unsigned long value, int shift)
27{
28 shift &= 0x1f;
29 value = (value >> (0x20 - shift)) | (value << shift);
30 return value;
31}
32
33extern "C" unsigned __cdecl _rotl(unsigned value, int shift)
34{
35 shift &= 0x1f;
36 value = (value >> (0x20 - shift)) | (value << shift);
37 return value;
38}
39
40extern "C" unsigned __int64 __cdecl _rotl64(unsigned __int64 value, int shift)
41{
42 shift &= 0x3f;
43 value = (value >> (0x40 - shift)) | (value << shift);
44 return value;
45}
#define __cdecl
Definition: accygwin.h:79
#define __int64
Definition: basetyps.h:16
#define shift
Definition: input.c:1755
unsigned __int64 __cdecl _rotl64(unsigned __int64 value, int shift)
Definition: rotl.cpp:40
unsigned __cdecl _rotl(unsigned value, int shift)
Definition: rotl.cpp:33
unsigned long __cdecl _lrotl(unsigned long value, int shift)
Definition: rotl.cpp:26
Definition: pdh_main.c:96