Home
last modified time | relevance | path

Searched refs:BIGSIGMA0_256 (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dzfs_sha256.c51 #define BIGSIGMA0_256(x) (ROTR(x, 2) ^ ROTR(x, 13) ^ ROTR(x, 22)) macro
147 T2 = BIGSIGMA0_256(a) + Maj(a, b, c); in SHA256Transform()
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dsha256.c52 #define BIGSIGMA0_256(x) (ROTR(x, 2) ^ ROTR(x, 13) ^ ROTR(x, 22)) macro
148 T2 = BIGSIGMA0_256(a) + Maj(a, b, c); in SHA256Transform()
/illumos-gate/usr/src/common/crypto/sha2/
H A Dsha2.c103 #define BIGSIGMA0_256(x) (ROTR((x), 2) ^ ROTR((x), 13) ^ ROTR((x), 22)) macro
111 T2 = BIGSIGMA0_256(a) + Maj(a, b, c); \