Searched refs:rol (Results 1 - 2 of 2) sorted by relevance

/seL4-camkes-master/tools/seL4/elfloader-tool/src/utils/
H A Dcrypt_md5.c28 static uint32_t rol(uint32_t n, int k) function
36 #define FF(a,b,c,d,w,s,t) a += F(b,c,d) + w + t; a = rol(a,s) + b
37 #define GG(a,b,c,d,w,s,t) a += G(b,c,d) + w + t; a = rol(a,s) + b
38 #define HH(a,b,c,d,w,s,t) a += H(b,c,d) + w + t; a = rol(a,s) + b
39 #define II(a,b,c,d,w,s,t) a += I(b,c,d) + w + t; a = rol(a,s) + b
/seL4-camkes-master/projects/musllibc/src/crypt/
H A Dcrypt_md5.c20 static uint32_t rol(uint32_t n, int k) { return (n << k) | (n >> (32-k)); } function
25 #define FF(a,b,c,d,w,s,t) a += F(b,c,d) + w + t; a = rol(a,s) + b
26 #define GG(a,b,c,d,w,s,t) a += G(b,c,d) + w + t; a = rol(a,s) + b
27 #define HH(a,b,c,d,w,s,t) a += H(b,c,d) + w + t; a = rol(a,s) + b
28 #define II(a,b,c,d,w,s,t) a += I(b,c,d) + w + t; a = rol(a,s) + b

Completed in 38 milliseconds