Lines Matching refs:d
138 uint64_t a, b, c, d, e, f, g, h, t1, t2; in sha512_transform() local
144 a = state[0]; b = state[1]; c = state[2]; d = state[3]; in sha512_transform()
164 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; in sha512_transform()
165 t1 = g + e1(d) + Ch(d, e, f) + sha512_K[i+1] + W[(i & 15) + 1]; in sha512_transform()
167 t1 = f + e1(c) + Ch(c, d, e) + sha512_K[i+2] + W[(i & 15) + 2]; in sha512_transform()
169 t1 = e + e1(b) + Ch(b, c, d) + sha512_K[i+3] + W[(i & 15) + 3]; in sha512_transform()
171 t1 = d + e1(a) + Ch(a, b, c) + sha512_K[i+4] + W[(i & 15) + 4]; in sha512_transform()
172 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2; in sha512_transform()
174 t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2; in sha512_transform()
176 t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2; in sha512_transform()
178 t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2; in sha512_transform()
181 state[0] += a; state[1] += b; state[2] += c; state[3] += d; in sha512_transform()
185 a = b = c = d = e = f = g = h = t1 = t2 = 0; in sha512_transform()