OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ROL
(Results
1 - 2
of
2
) sorted by null
/external/dropbear/libtomcrypt/src/headers/
tomcrypt_macros.h
241
#define
ROL
(x,n) _lrotl(x,n)
247
static inline unsigned
ROL
(unsigned word, int i)
283
#define ROLc
ROL
290
static inline unsigned
ROL
(unsigned word, int i)
326
#define ROLc
ROL
335
#define
ROL
(x, y) ( (((unsigned long)(x)<<(unsigned long)((y)&31)) | (((unsigned long)(x)&0xFFFFFFFFUL)>>(unsigned long)(32-((y)&31)))) & 0xFFFFFFFFUL)
/external/valgrind/main/memcheck/tests/
wrap6.c
14
#define
ROL
(_x,n) (((_x) << n) | ((UInt)(_x)) >> ((8*sizeof(UInt)-n)))
52
v1 =
ROL
(v1,1); \
53
v2 =
ROL
(v2,2); \
54
v3 =
ROL
(v3,3); \
55
v4 =
ROL
(v4,4); \
56
v5 =
ROL
(v5,5); \
57
v6 =
ROL
(v6,6); \
58
v7 =
ROL
(v7,7); \
59
v8 =
ROL
(v8,8); \
60
v9 =
ROL
(v9,9);
[
all
...]
Completed in 855 milliseconds