Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RotateDefs.h « Hash « Crypto « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 832e73570a983d24f828957e49d0351df77ce8d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RotateDefs.h

#ifndef __ROTATEDEFS_H
#define __ROTATEDEFS_H

#ifdef _MSC_VER

#include <stddef.h>
#define rotlFixed(x, n) _rotl((x), (n))
#define rotrFixed(x, n) _rotr((x), (n))

#else

#define rotlFixed(x, n) (((x) << (n)) | ((x) >> (32 - (n))))
#define rotrFixed(x, n) (((x) >> (n)) | ((x) << (32 - (n))))

#endif

#endif