Symbol: Ch
crypto/krb5/src/lib/crypto/builtin/sha2/sha256.c
146
T1 = HH + Sigma1(EE) + Ch(EE, FF, GG) + constant_256[i] + data[i];
crypto/krb5/src/lib/crypto/builtin/sha2/sha512.c
154
T1 = HH + Sigma1(EE) + Ch(EE, FF, GG) + constant_512[i] + data[i];
crypto/openssh/openbsd-compat/sha2.c
370
T1 = (h) + Sigma1_256((e)) + Ch((e), (f), (g)) + K256[j] + W256[j]; \
crypto/openssh/openbsd-compat/sha2.c
381
T1 = (h) + Sigma1_256((e)) + Ch((e), (f), (g)) + K256[j] + \
crypto/openssh/openbsd-compat/sha2.c
468
T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
crypto/openssh/openbsd-compat/sha2.c
490
T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
crypto/openssh/openbsd-compat/sha2.c
650
T1 = (h) + Sigma1_512((e)) + Ch((e), (f), (g)) + K512[j] + W512[j]; \
crypto/openssh/openbsd-compat/sha2.c
662
T1 = (h) + Sigma1_512((e)) + Ch((e), (f), (g)) + K512[j] + \
crypto/openssh/openbsd-compat/sha2.c
749
T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + W512[j];
crypto/openssh/openbsd-compat/sha2.c
771
T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] +
crypto/openssl/crypto/sha/sha256.c
207
#ifndef Ch
crypto/openssl/crypto/sha/sha256.c
238
T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i];
crypto/openssl/crypto/sha/sha256.c
257
T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i];
crypto/openssl/crypto/sha/sha256.c
284
T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i]; \
crypto/openssl/crypto/sha/sha512.c
570
#ifndef Ch
crypto/openssl/crypto/sha/sha512.c
612
T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i];
crypto/openssl/crypto/sha/sha512.c
625
T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i];
crypto/openssl/crypto/sha/sha512.c
670
T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i];
crypto/openssl/crypto/sha/sha512.c
689
T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i];
crypto/openssl/crypto/sha/sha512.c
717
T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i]; \
sys/cddl/boot/zfs/sha256.c
147
T1 = h + BIGSIGMA1_256(e) + Ch(e, f, g) + SHA256_K[t] + W[t];
sys/cddl/boot/zfs/sha256.c
181
T1 = h + BIGSIGMA1_512(e) + Ch(e, f, g) + SHA512_K[t] + W[t];
sys/crypto/sha2/sha256c.c
118
h += S1(e) + Ch(e, f, g) + k; \
sys/crypto/sha2/sha512c.c
147
h += S1(e) + Ch(e, f, g) + k; \