File: RotateDefs.h

package info (click to toggle)
lzma 9.22-2.1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,636 kB
  • ctags: 7,948
  • sloc: cpp: 32,791; ansic: 13,738; cs: 3,846; java: 3,077; makefile: 781; asm: 449; sh: 74
file content (20 lines) | stat: -rwxr-xr-x 413 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* RotateDefs.h -- Rotate functions
2009-02-07 : Igor Pavlov : Public domain */

#ifndef __ROTATE_DEFS_H
#define __ROTATE_DEFS_H

#ifdef _MSC_VER

#include <stdlib.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