Home
last modified time | relevance | path

Searched defs:ROL (Results 1 – 13 of 13) sorted by relevance

/openbsd-src/sys/arch/hppa/hppa/
H A Din_cksum.c65 #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 D20020508-2.c8 #define ROL(a,b) (((a) << (b)) | ((a) >> ((sizeof (a) * CHAR_BIT) - (b)))) macro
H A D20020226-1.c10 #define ROL(a,b) (((a) << (b)) | ((a) >> ((sizeof (a) * CHAR_BIT) - (b)))) macro
H A D20020508-1.c10 #define ROL(a,b) (((a) << (b)) | ((a) >> ((sizeof (a) * CHAR_BIT) - (b)))) macro
H A D20020508-3.c8 #define ROL(a,b) (((a) << (b)) | ((a) >> ((sizeof (a) * CHAR_BIT) - (b)))) macro
/openbsd-src/sys/arch/sh/sh/
H A Din_cksum.S51 #define ROL \ macro
/openbsd-src/sys/arch/m88k/m88k/
H A Din_cksum.c43 #define ROL (sum <<= 8) macro
/openbsd-src/sys/crypto/
H A Dmichael.c30 #define ROL(n, x) (((x) << (n)) | ((x) >> (32 - (n)))) macro
H A Dcast.c22 #define ROL(x, n) ( ((x)<<(n)) | ((x)>>(32-(n))) ) macro
H A Drmd160.c70 #define ROL(n, x) (((x) << (n)) | ((x) >> (32-(n)))) macro
/openbsd-src/gnu/llvm/llvm/lib/Target/AVR/
H A DAVRISelLowering.h54 ROL, ///< Bit rotate left. enumerator
/openbsd-src/gnu/usr.bin/cvs/diff/
H A Dio.c22 #define ROL(v, n) ((v) << (n) | (v) >> (UINT_BIT - (n))) macro
/openbsd-src/lib/libc/hash/
H A Drmd160.c69 #define ROL(n, x) (((x) << (n)) | ((x) >> (32-(n)))) macro