Lines Matching refs:x
38 #define UL64(x) x##ui64 argument
40 #define UL64(x) x##ULL argument
205 #define SHR(x,n) (x >> n) in mbedtls_sha512_process() argument
206 #define ROTR(x,n) (SHR(x,n) | (x << (64 - n))) in mbedtls_sha512_process() argument
208 #define S0(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHR(x, 7)) in mbedtls_sha512_process() argument
209 #define S1(x) (ROTR(x,19) ^ ROTR(x,61) ^ SHR(x, 6)) in mbedtls_sha512_process() argument
211 #define S2(x) (ROTR(x,28) ^ ROTR(x,34) ^ ROTR(x,39)) in mbedtls_sha512_process() argument
212 #define S3(x) (ROTR(x,14) ^ ROTR(x,18) ^ ROTR(x,41)) in mbedtls_sha512_process() argument
214 #define F0(x,y,z) ((x & y) | (z & (x | y))) in mbedtls_sha512_process() argument
215 #define F1(x,y,z) (z ^ (x & (y ^ z))) in mbedtls_sha512_process() argument
217 #define P(a,b,c,d,e,f,g,h,x,K) \ in mbedtls_sha512_process() argument
219 temp1 = h + S3(e) + F1(e,f,g) + K + x; \ in mbedtls_sha512_process()