Searched defs:SIGMA0_256 (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dzfs_sha256.c53 #define SIGMA0_256(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ ((x) >> 3)) macro
138 SIGMA0_256(W[t - 15]) + W[t - 16];
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dsha256.c54 #define SIGMA0_256(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ ((x) >> 3)) macro
139 SIGMA0_256(W[t - 15]) + W[t - 16];
/illumos-gate/usr/src/common/crypto/sha2/
H A Dsha2.c104 #define SIGMA0_256(x) (ROTR((x), 7) ^ ROTR((x), 18) ^ SHR((x), 3)) macro
253 w0 = SIGMA1_256(w14) + w9 + SIGMA0_256(w1) + w0;
255 w1 = SIGMA1_256(w15) + w10 + SIGMA0_256(w2) + w1;
257 w2 = SIGMA1_256(w0) + w11 + SIGMA0_256(w3) + w2;
259 w3 = SIGMA1_256(w1) + w12 + SIGMA0_256(w4) + w3;
261 w4 = SIGMA1_256(w2) + w13 + SIGMA0_256(w5) + w4;
263 w5 = SIGMA1_256(w3) + w14 + SIGMA0_256(w6) + w5;
265 w6 = SIGMA1_256(w4) + w15 + SIGMA0_256(w7) + w6;
267 w7 = SIGMA1_256(w5) + w0 + SIGMA0_256(w8) + w7;
269 w8 = SIGMA1_256(w6) + w1 + SIGMA0_256(w
[all...]

Completed in 46 milliseconds