Lines Matching defs:W256
480 REVERSE32(*data++, W256[j]); \
482 K256[j] + W256[j]; \
492 K256[j] + (W256[j] = *data++); \
500 s0 = W256[(j+1)&0x0f]; \
502 s1 = W256[(j+14)&0x0f]; \
505 (W256[j&0x0f] += s1 + W256[(j+9)&0x0f] + s0); \
512 sha2_word32 T1, *W256;
515 W256 = (sha2_word32*)sha->buffer;
570 sha2_word32 T1, T2, *W256;
573 W256 = (sha2_word32*)sha->buffer;
589 REVERSE32(*data++,W256[j]);
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++);
611 s0 = W256[(j+1)&0x0f];
613 s1 = W256[(j+14)&0x0f];
618 (W256[j&0x0f] += s1 + W256[(j+9)&0x0f] + s0);