Home
last modified time | relevance | path

Searched refs:Maj (Results 1 – 2 of 2) sorted by relevance

/rk3399_ARM-atf/plat/intel/soc/common/lib/sha/
H A Dsha.c164 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()
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()
H A Dsha.h60 static inline uint64_t Maj(uint64_t x, uint64_t y, uint64_t z) in Maj() function