Searched refs:ror (Results 1 - 3 of 3) sorted by relevance

/seL4-camkes-master/tools/seL4/elfloader-tool/src/utils/
H A Dcrypt_sha256.c36 static uint32_t ror(uint32_t n, int k) function
42 #define S0(x) (ror(x,2) ^ ror(x,13) ^ ror(x,22))
43 #define S1(x) (ror(x,6) ^ ror(x,11) ^ ror(x,25))
44 #define R0(x) (ror(x,7) ^ ror(x,18) ^ (x>>3))
45 #define R1(x) (ror(
[all...]
/seL4-camkes-master/projects/musllibc/src/crypt/
H A Dcrypt_sha256.c24 static uint32_t ror(uint32_t n, int k) { return (n >> k) | (n << (32-k)); } function
27 #define S0(x) (ror(x,2) ^ ror(x,13) ^ ror(x,22))
28 #define S1(x) (ror(x,6) ^ ror(x,11) ^ ror(x,25))
29 #define R0(x) (ror(x,7) ^ ror(x,18) ^ (x>>3))
30 #define R1(x) (ror(
[all...]
H A Dcrypt_sha512.c25 static uint64_t ror(uint64_t n, int k) { return (n >> k) | (n << (64-k)); } function
28 #define S0(x) (ror(x,28) ^ ror(x,34) ^ ror(x,39))
29 #define S1(x) (ror(x,14) ^ ror(x,18) ^ ror(x,41))
30 #define R0(x) (ror(x,1) ^ ror(x,8) ^ (x>>7))
31 #define R1(x) (ror(
[all...]

Completed in 35 milliseconds