Lines Matching refs:T1

481 	T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
483 (d) += T1; \
484 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
491 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
493 (d) += T1; \
494 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
504 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
506 (d) += T1; \
507 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
512 sha2_word32 T1, *W256;
563 a = b = c = d = e = f = g = h = T1 = 0;
570 sha2_word32 T1, T2, *W256;
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++);
600 e = d + T1;
604 a = T1 + T2;
617 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
623 e = d + T1;
627 a = T1 + T2;
643 a = b = c = d = e = f = g = h = T1 = T2 = 0;
849 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
851 (d) += T1, \
852 (h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)), \
859 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
861 (d) += T1; \
862 (h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)); \
872 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + K512[j] + \
874 (d) += T1; \
875 (h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)); \
880 sha2_word64 T1, *W512 = (sha2_word64*)sha->buffer;
928 a = b = c = d = e = f = g = h = T1 = 0;
935 sha2_word64 T1, T2, *W512 = (sha2_word64*)sha->buffer;
954 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + W512[j];
957 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + (W512[j] = *data++);
963 e = d + T1;
967 a = T1 + T2;
980 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] +
986 e = d + T1;
990 a = T1 + T2;
1006 a = b = c = d = e = f = g = h = T1 = T2 = 0;