Searched refs:Maj (Results 1 – 4 of 4) sorted by relevance
/titanic_41/usr/src/lib/libsum/common/ |
H A D | sum-sha2.c | 268 #define Maj(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) macro 484 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \ 494 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \ 507 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \ 596 T2 = Sigma0_256(a) + Maj(a, b, c); in SHA256_Transform() 619 T2 = Sigma0_256(a) + Maj(a, b, c); in SHA256_Transform() 852 (h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)), \ 862 (h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)); \ 875 (h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)); \ 959 T2 = Sigma0_512(a) + Maj(a, b, c); in SHA512_Transform() [all …]
|
/titanic_41/usr/src/grub/grub-0.97/stage2/ |
H A D | zfs_sha256.c | 45 #define Maj(x, y, z) (((x) & (y)) ^ ((z) & ((x) ^ (y)))) macro 88 T2 = SIGMA0(a) + Maj(a, b, c); in SHA256Transform()
|
/titanic_41/usr/src/tools/depcheck/ |
H A D | make_pkg_db | 374 if (($Entity,$FType,$Class,$Maj,$Min,$Mode,$Owner,$Group,@Pkgs) = 467 if (($Entity,$FType,$Class,$Maj,$Min,$Mode,$Owner,$Group,@Pkgs) =
|
/titanic_41/usr/src/common/crypto/sha2/ |
H A D | sha2.c | 89 #define Maj(b, c, d) (((b) & (c)) ^ ((b) & (d)) ^ ((c) & (d))) macro 107 T2 = BIGSIGMA0_256(a) + Maj(a, b, c); \ 118 T2 = BIGSIGMA0(a) + Maj(a, b, c); \
|