Lines Matching defs:x
399 # define PULL64(x) ({ SHA_LONG64 ret=*((const SHA_LONG64 *)(&(x))); \ argument
406 # define PULL64(x) ({ const unsigned int *p=(const unsigned int *)(&(x));\ argument
415 # define PULL64(x) ({ const unsigned int *p=(const unsigned int *)(&(x));\ argument
434 # define PULL64(x) ({ SHA_LONG64 ret; \ argument
440 # define PULL64(x) ({ SHA_LONG64 ret; \ argument
450 # define PULL64(x) ({ SHA_LONG64 ret; \ argument
456 # define Sigma0(x) ({ SHA_LONG64 ret; unsigned int *r = (unsigned int *)(&(ret)); \ argument
464 # define Sigma1(x) ({ SHA_LONG64 ret; unsigned int *r = (unsigned int *)(&(ret)); \ argument
472 # define sigma0(x) ({ SHA_LONG64 ret; unsigned int *r = (unsigned int *)(&(ret)); \ argument
480 # define sigma1(x) ({ SHA_LONG64 ret; unsigned int *r = (unsigned int *)(&(ret)); \ argument
489 # define Sigma0(x) ({ SHA_LONG64 ret; \ argument
493 # define Sigma1(x) ({ SHA_LONG64 ret; \ argument
497 # define sigma0(x) ({ SHA_LONG64 ret; \ argument
501 # define sigma1(x) ({ SHA_LONG64 ret; \ argument
507 # define Ch(x,y,z) ({ SHA_LONG64 ret; unsigned int *r = (unsigned int *)(&(ret)); \ argument
517 # define Maj(x,y,z) ({ SHA_LONG64 ret; unsigned int *r = (unsigned int *)(&(ret)); \ argument
528 # define Ch(x,y,z) ({ SHA_LONG64 ret; \ argument
532 # define Maj(x,y,z) ({ SHA_LONG64 ret; \ argument
545 static SHA_LONG64 __fastcall __pull64be(const void *x) in __pull64be()
557 static SHA_LONG64 __fastcall __pull64be(const void *x) in __pull64be()
565 # define PULL64(x) __pull64be(&(x)) argument
570 # define B(x,j) (((SHA_LONG64)(*(((const unsigned char *)(&x))+j)))<<((7-j)*8)) argument
571 # define PULL64(x) (B(x,0)|B(x,1)|B(x,2)|B(x,3)|B(x,4)|B(x,5)|B(x,6)|B(x,7)) argument
574 # define ROTR(x,s) (((x)>>s) | (x)<<(64-s)) argument
577 # define Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39)) argument
580 # define Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41)) argument
583 # define sigma0(x) (ROTR((x),1) ^ ROTR((x),8) ^ ((x)>>7)) argument
586 # define sigma1(x) (ROTR((x),19) ^ ROTR((x),61) ^ ((x)>>6)) argument
589 # define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) argument
592 # define Maj(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) argument