Lines Matching refs:h
138 uint64_t a, b, c, d, e, f, g, h, t1, t2; in sha512_transform() local
145 e = state[4]; f = state[5]; g = state[6]; h = state[7]; in sha512_transform()
163 t1 = h + e1(e) + Ch(e, f, g) + sha512_K[i] + W[(i & 15)]; in sha512_transform()
164 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; in sha512_transform()
166 t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2; in sha512_transform()
168 t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2; in sha512_transform()
170 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2; in sha512_transform()
172 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2; in sha512_transform()
173 t1 = c + e1(h) + Ch(h, a, b) + sha512_K[i+5] + W[(i & 15) + 5]; in sha512_transform()
175 t1 = b + e1(g) + Ch(g, h, a) + sha512_K[i+6] + W[(i & 15) + 6]; in sha512_transform()
177 t1 = a + e1(f) + Ch(f, g, h) + sha512_K[i+7] + W[(i & 15) + 7]; in sha512_transform()
182 state[4] += e; state[5] += f; state[6] += g; state[7] += h; in sha512_transform()
185 a = b = c = d = e = f = g = h = t1 = t2 = 0; in sha512_transform()