Lines Matching refs:T1

332 	T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
334 (d) += T1; \
335 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
342 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
344 (d) += T1; \
345 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
355 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
357 (d) += T1; \
358 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
364 sha2_word32 T1, *W256;
415 a = b = c = d = e = f = g = h = T1 = 0;
423 sha2_word32 T1, T2, *W256;
444 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
447 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + (W256[j] = *data++);
453 e = d + T1;
457 a = T1 + T2;
470 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
476 e = d + T1;
480 a = T1 + T2;
496 a = b = c = d = e = f = g = h = T1 = T2 = 0;
646 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
648 (d) += T1, \
649 (h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)), \
656 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
658 (d) += T1; \
659 (h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)); \
669 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + K512[j] + \
671 (d) += T1; \
672 (h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)); \
678 sha2_word64 T1, *W512 = (sha2_word64*)context->buffer;
726 a = b = c = d = e = f = g = h = T1 = 0;
734 sha2_word64 T1, T2, *W512 = (sha2_word64*)context->buffer;
753 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + W512[j];
756 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + (W512[j] = *data++);
762 e = d + T1;
766 a = T1 + T2;
779 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] +
785 e = d + T1;
789 a = T1 + T2;
805 a = b = c = d = e = f = g = h = T1 = T2 = 0;