ReactOS 0.4.16-dev-937-g7afcd2a
rotl.cpp File Reference
#include <stdlib.h>
#include <limits.h>
Include dependency graph for rotl.cpp:

Go to the source code of this file.

Functions

unsigned long __cdecl _lrotl (unsigned long value, int shift)
 
unsigned __cdecl _rotl (unsigned value, int shift)
 
unsigned __int64 __cdecl _rotl64 (unsigned __int64 value, int shift)
 

Function Documentation

◆ _lrotl()

unsigned long __cdecl _lrotl ( unsigned long  value,
int  shift 
)

Definition at line 26 of file rotl.cpp.

27{
28 shift &= 0x1f;
29 value = (value >> (0x20 - shift)) | (value << shift);
30 return value;
31}
#define shift
Definition: input.c:1755
Definition: pdh_main.c:96

◆ _rotl()

unsigned __cdecl _rotl ( unsigned  value,
int  shift 
)

Definition at line 33 of file rotl.cpp.

34{
35 shift &= 0x1f;
36 value = (value >> (0x20 - shift)) | (value << shift);
37 return value;
38}

◆ _rotl64()

unsigned __int64 __cdecl _rotl64 ( unsigned __int64  value,
int  shift 
)

Definition at line 40 of file rotl.cpp.

41{
42 shift &= 0x3f;
43 value = (value >> (0x40 - shift)) | (value << shift);
44 return value;
45}