Searched defs:Ch (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dzfs_sha256.c41 * Ch(x, y, z) (((x) & (y)) ^ ((~(x)) & (z)))
46 #define Ch(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) macro
146 T1 = h + BIGSIGMA1_256(e) + Ch(e, f, g) + SHA256_K[t] + W[t];
180 T1 = h + BIGSIGMA1_512(e) + Ch(e, f, g) + SHA512_K[t] + W[t];
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dsha256.c42 * Ch(x, y, z) (((x) & (y)) ^ ((~(x)) & (z)))
47 #define Ch(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) macro
147 T1 = h + BIGSIGMA1_256(e) + Ch(e, f, g) + SHA256_K[t] + W[t];
181 T1 = h + BIGSIGMA1_512(e) + Ch(e, f, g) + SHA512_K[t] + W[t];
/illumos-gate/usr/src/common/crypto/sha2/
H A Dsha2.c90 /* Ch and Maj are the basic SHA2 functions. */
91 #define Ch(b, c, d) (((b) & (c)) ^ ((~b) & (d))) macro
108 T1 = h + BIGSIGMA1_256(e) + Ch(e, f, g) + SHA256_CONST(i) + w; \
119 T1 = h + BIGSIGMA1(e) + Ch(e, f, g) + SHA512_CONST(i) + w; \
/illumos-gate/usr/src/lib/libsum/common/
H A Dsum-sha2.c267 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) macro
481 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
491 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
504 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
591 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
594 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + (W256[j] = *data++);
617 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
849 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
859 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
872 T1 = (h) + Sigma1_512(e) + Ch((
[all...]

Completed in 62 milliseconds