Lines Matching defs:T1
463 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
465 (d) += T1; \
466 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
473 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
475 (d) += T1; \
476 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
486 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
488 (d) += T1; \
489 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
494 sha2_word32 T1, *W256;
545 a = b = c = d = e = f = g = h = T1 = 0;
552 sha2_word32 T1, T2, *W256;
573 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
576 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + (W256[j] = *data++);
582 e = d + T1;
586 a = T1 + T2;
599 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
605 e = d + T1;
609 a = T1 + T2;
625 a = b = c = d = e = f = g = h = T1 = T2 = 0;
831 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
833 (d) += T1, \
834 (h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)), \
841 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
843 (d) += T1; \
844 (h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)); \
854 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + K512[j] + \
856 (d) += T1; \
857 (h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)); \
862 sha2_word64 T1, *W512 = (sha2_word64*)sha->buffer;
910 a = b = c = d = e = f = g = h = T1 = 0;
917 sha2_word64 T1, T2, *W512 = (sha2_word64*)sha->buffer;
936 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + W512[j];
939 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + (W512[j] = *data++);
945 e = d + T1;
949 a = T1 + T2;
962 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] +
968 e = d + T1;
972 a = T1 + T2;
988 a = b = c = d = e = f = g = h = T1 = T2 = 0;