Searched defs:ROL (Results 1 – 13 of 13) sorted by relevance
/openbsd-src/sys/arch/hppa/hppa/ |
H A D | in_cksum.c | 65 #define ROL asm volatile ("shd %0, %0, 8, %0" : "+r" (sum)) macro
|
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/ |
H A D | 20020508-2.c | 8 #define ROL(a,b) (((a) << (b)) | ((a) >> ((sizeof (a) * CHAR_BIT) - (b)))) macro
|
H A D | 20020226-1.c | 10 #define ROL(a,b) (((a) << (b)) | ((a) >> ((sizeof (a) * CHAR_BIT) - (b)))) macro
|
H A D | 20020508-1.c | 10 #define ROL(a,b) (((a) << (b)) | ((a) >> ((sizeof (a) * CHAR_BIT) - (b)))) macro
|
H A D | 20020508-3.c | 8 #define ROL(a,b) (((a) << (b)) | ((a) >> ((sizeof (a) * CHAR_BIT) - (b)))) macro
|
/openbsd-src/sys/arch/sh/sh/ |
H A D | in_cksum.S | 51 #define ROL \ macro
|
/openbsd-src/sys/arch/m88k/m88k/ |
H A D | in_cksum.c | 43 #define ROL (sum <<= 8) macro
|
/openbsd-src/sys/crypto/ |
H A D | michael.c | 30 #define ROL(n, x) (((x) << (n)) | ((x) >> (32 - (n)))) macro
|
H A D | cast.c | 22 #define ROL(x, n) ( ((x)<<(n)) | ((x)>>(32-(n))) ) macro
|
H A D | rmd160.c | 70 #define ROL(n, x) (((x) << (n)) | ((x) >> (32-(n)))) macro
|
/openbsd-src/gnu/llvm/llvm/lib/Target/AVR/ |
H A D | AVRISelLowering.h | 54 ROL, ///< Bit rotate left. enumerator
|
/openbsd-src/gnu/usr.bin/cvs/diff/ |
H A D | io.c | 22 #define ROL(v, n) ((v) << (n) | (v) >> (UINT_BIT - (n))) macro
|
/openbsd-src/lib/libc/hash/ |
H A D | rmd160.c | 69 #define ROL(n, x) (((x) << (n)) | ((x) >> (32-(n)))) macro
|