HomeSort by relevance Sort by last modified time
    Searched refs:SIGMA0 (Results 1 - 3 of 3) sorted by null

  /netvirt/usr/src/common/crypto/sha2/
sha2.c 99 #define SIGMA0(x) (ROTR((x), 1) ^ ROTR((x), 8) ^ SHR((x), 7))
458 w0 = SIGMA1(w14) + w9 + SIGMA0(w1) + w0;
460 w1 = SIGMA1(w15) + w10 + SIGMA0(w2) + w1;
462 w2 = SIGMA1(w0) + w11 + SIGMA0(w3) + w2;
464 w3 = SIGMA1(w1) + w12 + SIGMA0(w4) + w3;
466 w4 = SIGMA1(w2) + w13 + SIGMA0(w5) + w4;
468 w5 = SIGMA1(w3) + w14 + SIGMA0(w6) + w5;
470 w6 = SIGMA1(w4) + w15 + SIGMA0(w7) + w6;
472 w7 = SIGMA1(w5) + w0 + SIGMA0(w8) + w7;
474 w8 = SIGMA1(w6) + w1 + SIGMA0(w9) + w8
    [all...]
  /netvirt/usr/src/grub/grub-0.95/stage2/
zfs_sha256.c 47 #define SIGMA0(x) (Rot32(x, 2) ^ Rot32(x, 13) ^ Rot32(x, 22))
49 #define sigma0(x) (Rot32(x, 7) ^ Rot32(x, 18) ^ ((x) >> 3)) macro
81 sigma0(W[t - 15]) + W[t - 16];
88 T2 = SIGMA0(a) + Maj(a, b, c);
  /netvirt/usr/src/uts/common/fs/zfs/
sha256.c 51 #define SIGMA0(x) (Rot32(x, 2) ^ Rot32(x, 13) ^ Rot32(x, 22))
53 #define sigma0(x) (Rot32(x, 7) ^ Rot32(x, 18) ^ ((x) >> 3)) macro
85 sigma0(W[t - 15]) + W[t - 16];
92 T2 = SIGMA0(a) + Maj(a, b, c);

Completed in 120 milliseconds