Lines Matching defs:T1
290 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
292 (d) += T1; \
293 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
301 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
303 (d) += T1; \
304 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
311 uint32_t T1, *W256;
362 a = b = c = d = e = f = g = h = T1 = 0;
371 uint32_t T1, T2, *W256;
391 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
396 e = d + T1;
400 a = T1 + T2;
413 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
419 e = d + T1;
423 a = T1 + T2;
439 a = b = c = d = e = f = g = h = T1 = T2 = 0;
636 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
638 (d) += T1, \
639 (h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)), \
647 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + K512[j] + \
649 (d) += T1; \
650 (h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)); \
657 uint64_t T1, *W512 = (uint64_t *)context->buffer;
705 a = b = c = d = e = f = g = h = T1 = 0;
714 uint64_t T1, T2, *W512 = (void *)context->buffer;
732 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + W512[j];
737 e = d + T1;
741 a = T1 + T2;
754 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] +
760 e = d + T1;
764 a = T1 + T2;
780 a = b = c = d = e = f = g = h = T1 = T2 = 0;