Lines Matching refs:j
79 #define SHA256_EXP(a, b, c, d, e, f, g, h, j) \ argument
82 + sha256_k[j] + w[j]; \
128 int j = 0; in sha256_transf() local
135 for (j = 0; j < 16; j++) in sha256_transf()
136 PACK32(&sub_block[j << 2], &w[j]); in sha256_transf()
138 for (j = 16; j < 64; j++) in sha256_transf()
139 SHA256_SCR(j); in sha256_transf()
141 for (j = 0; j < 8; j++) in sha256_transf()
142 wv[j] = ctx->h[j]; in sha256_transf()
144 for (j = 0; j < 64; j++) { in sha256_transf()
146 + sha256_k[j] + w[j]; in sha256_transf()
158 for (j = 0; j < 8; j++) in sha256_transf()
159 ctx->h[j] += wv[j]; in sha256_transf()