Lines Matching refs:j

386 	REVERSE32(*data++, W256[j]); \
388 K256[j] + W256[j]; \
391 j++
398 K256[j] + (W256[j] = *data++); \
401 j++
406 s0 = W256[(j+1)&0x0f]; \
408 s1 = W256[(j+14)&0x0f]; \
410 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
411 (W256[j&0x0f] += s1 + W256[(j+9)&0x0f] + s0); \
414 j++
419 int j; in SHA256_Transform() local
433 j = 0; in SHA256_Transform()
444 } while (j < 16); in SHA256_Transform()
456 } while (j < 64); in SHA256_Transform()
477 int j; in SHA256_Transform() local
491 j = 0; in SHA256_Transform()
495 REVERSE32(*data++,W256[j]); in SHA256_Transform()
497 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j]; in SHA256_Transform()
500 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + (W256[j] = *data++); in SHA256_Transform()
512 j++; in SHA256_Transform()
513 } while (j < 16); in SHA256_Transform()
517 s0 = W256[(j+1)&0x0f]; in SHA256_Transform()
519 s1 = W256[(j+14)&0x0f]; in SHA256_Transform()
523 T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + in SHA256_Transform()
524 (W256[j&0x0f] += s1 + W256[(j+9)&0x0f] + s0); in SHA256_Transform()
535 j++; in SHA256_Transform()
536 } while (j < 64); in SHA256_Transform()
649 int j; in SHA256_Final() local
650 for (j = 0; j < 8; j++) { in SHA256_Final()
651 REVERSE32(context->state[j],context->state[j]); in SHA256_Final()
652 *d++ = context->state[j]; in SHA256_Final()
714 REVERSE64(*data++, W512[j]); \
716 K512[j] + W512[j]; \
719 j++
726 K512[j] + (W512[j] = *data++); \
729 j++
734 s0 = W512[(j+1)&0x0f]; \
736 s1 = W512[(j+14)&0x0f]; \
738 T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + K512[j] + \
739 (W512[j&0x0f] += s1 + W512[(j+9)&0x0f] + s0); \
742 j++
747 int j; in SHA512_Transform() local
759 j = 0; in SHA512_Transform()
769 } while (j < 16); in SHA512_Transform()
781 } while (j < 80); in SHA512_Transform()
802 int j; in SHA512_Transform() local
814 j = 0; in SHA512_Transform()
818 REVERSE64(*data++, W512[j]); in SHA512_Transform()
820 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + W512[j]; in SHA512_Transform()
823 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + (W512[j] = *data++); in SHA512_Transform()
835 j++; in SHA512_Transform()
836 } while (j < 16); in SHA512_Transform()
840 s0 = W512[(j+1)&0x0f]; in SHA512_Transform()
842 s1 = W512[(j+14)&0x0f]; in SHA512_Transform()
846 T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + in SHA512_Transform()
847 (W512[j&0x0f] += s1 + W512[(j+9)&0x0f] + s0); in SHA512_Transform()
858 j++; in SHA512_Transform()
859 } while (j < 80); in SHA512_Transform()
980 int j; in SHA512_Final() local
981 for (j = 0; j < 8; j++) { in SHA512_Final()
982 REVERSE64(context->state[j],context->state[j]); in SHA512_Final()
983 *d++ = context->state[j]; in SHA512_Final()
1056 int j; in SHA384_Final() local
1057 for (j = 0; j < 6; j++) { in SHA384_Final()
1058 REVERSE64(context->state[j],context->state[j]); in SHA384_Final()
1059 *d++ = context->state[j]; in SHA384_Final()