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

  /onnv/onnv-gate/usr/src/common/crypto/sha2/
sha2.c 113 #define SIGMA0(x) (ROTR((x), 1) ^ ROTR((x), 8) ^ SHR((x), 7))
466 w0 = SIGMA1(w14) + w9 + SIGMA0(w1) + w0;
468 w1 = SIGMA1(w15) + w10 + SIGMA0(w2) + w1;
470 w2 = SIGMA1(w0) + w11 + SIGMA0(w3) + w2;
472 w3 = SIGMA1(w1) + w12 + SIGMA0(w4) + w3;
474 w4 = SIGMA1(w2) + w13 + SIGMA0(w5) + w4;
476 w5 = SIGMA1(w3) + w14 + SIGMA0(w6) + w5;
478 w6 = SIGMA1(w4) + w15 + SIGMA0(w7) + w6;
480 w7 = SIGMA1(w5) + w0 + SIGMA0(w8) + w7;
482 w8 = SIGMA1(w6) + w1 + SIGMA0(w9) + w8
    [all...]
  /onnv/onnv-gate/usr/src/grub/grub-0.97/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);
  /onnv/onnv-gate/usr/src/uts/common/fs/zfs/
sha256.c 48 #define SIGMA0(x) (Rot32(x, 2) ^ Rot32(x, 13) ^ Rot32(x, 22))
50 #define sigma0(x) (Rot32(x, 7) ^ Rot32(x, 18) ^ ((x) >> 3)) macro
82 sigma0(W[t - 15]) + W[t - 16];
89 T2 = SIGMA0(a) + Maj(a, b, c);

Completed in 4280 milliseconds