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

/u-boot/lib/
H A Dsha512.c54 static inline uint64_t Maj(uint64_t x, uint64_t y, uint64_t z) function
166 t2 = e0(a) + Maj(a,b,c); d+=t1; h=t1+t2;
168 t2 = e0(h) + Maj(h,a,b); c+=t1; g=t1+t2;
170 t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2;
172 t2 = e0(f) + Maj(f,g,h); a+=t1; e=t1+t2;
174 t2 = e0(e) + Maj(e,f,g); h+=t1; d=t1+t2;
176 t2 = e0(d) + Maj(d,e,f); g+=t1; c=t1+t2;
178 t2 = e0(c) + Maj(c,d,e); f+=t1; b=t1+t2;
180 t2 = e0(b) + Maj(b,c,d); e+=t1; a=t1+t2;
/u-boot/fs/zfs/
H A Dzfs_sha256.c45 * Maj(x, y, z) (((x) & (y)) | ((x) & (z)) | ((y) & (z)))
50 #define Maj(x, y, z) (((x) & (y)) ^ ((z) & ((x) ^ (y)))) macro
93 T2 = SIGMA0(a) + Maj(a, b, c);

Completed in 46 milliseconds