Home | History | Annotate | Download | only in sha2

Lines Matching full:w512

677 	REVERSE64(*data++, W512[j]); \
679 K512[j] + W512[j]; \
689 K512[j] + (W512[j] = *data++); \
697 s0 = W512[(j+1)&0x0f]; \
699 s1 = W512[(j+14)&0x0f]; \
702 (W512[j&0x0f] += s1 + W512[(j+9)&0x0f] + s0); \
709 sha2_word64 T1, *W512 = (sha2_word64*)context->buffer;
764 sha2_word64 T1, T2, *W512 = (sha2_word64*)context->buffer;
781 REVERSE64(*data++, W512[j]);
783 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + W512[j];
786 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + (W512[j] = *data++);
803 s0 = W512[(j+1)&0x0f];
805 s1 = W512[(j+14)&0x0f];
810 (W512[j&0x0f] += s1 + W512[(j+9)&0x0f] + s0);