Home
last modified time | relevance | path

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

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