Home
last modified time | relevance | path

Searched defs:sigma1 (Results 1 – 5 of 5) sorted by relevance

/src/crypto/openssl/crypto/sha/
H A Dsha256.c172 #define sigma1(x) ({ MD32_REG_T ret; \ macro
205 #define sigma1(x) (ROTATE((x), 15) ^ ROTATE((x), 13) ^ ((x) >> 10)) macro
H A Dsha512.c474 #define sigma1(x) ({ SHA_LONG64 ret; unsigned int *r = (unsigned int *)(&(ret)); \ macro
495 #define sigma1(x) ({ SHA_LONG64 ret; \ macro
568 #define sigma1(x) (ROTR((x), 19) ^ ROTR((x), 61) ^ ((x) >> 6)) macro
/src/sys/contrib/openzfs/module/icp/algs/sha2/
H A Dsha2_generic.c69 #define sigma1(x) (rotr32((x), 17) ^ rotr32((x), 19) ^ ((x) >> 10)) macro
144 #define sigma1(x) (rotr64((x), 19) ^ rotr64((x), 61) ^ ((x) >> 6)) macro
/src/crypto/krb5/src/lib/crypto/builtin/sha2/
H A Dsha256.c76 #define sigma1(x) (ROTR(x,17) ^ ROTR(x,19) ^ ((x)>>10)) macro
H A Dsha512.c54 #define sigma1(x) (ROTR(x,19) ^ ROTR(x,61) ^ ((x)>>6)) macro