Lines Matching +defs:x +defs:h
96 #define ROTR(x, n) \ argument
100 #define SHR(x, n) ((x) >> (n)) argument
103 #define BIGSIGMA0_256(x) (ROTR((x), 2) ^ ROTR((x), 13) ^ ROTR((x), 22)) argument
104 #define BIGSIGMA1_256(x) (ROTR((x), 6) ^ ROTR((x), 11) ^ ROTR((x), 25)) argument
105 #define SIGMA0_256(x) (ROTR((x), 7) ^ ROTR((x), 18) ^ SHR((x), 3)) argument
106 #define SIGMA1_256(x) (ROTR((x), 17) ^ ROTR((x), 19) ^ SHR((x), 10)) argument
108 #define SHA256ROUND(a, b, c, d, e, f, g, h, i, w) \ argument
115 #define BIGSIGMA0(x) (ROTR((x), 28) ^ ROTR((x), 34) ^ ROTR((x), 39)) argument
116 #define BIGSIGMA1(x) (ROTR((x), 14) ^ ROTR((x), 18) ^ ROTR((x), 41)) argument
117 #define SIGMA0(x) (ROTR((x), 1) ^ ROTR((x), 8) ^ SHR((x), 7)) argument
118 #define SIGMA1(x) (ROTR((x), 19) ^ ROTR((x), 61) ^ SHR((x), 6)) argument
119 #define SHA512ROUND(a, b, c, d, e, f, g, h, i, w) \ argument
167 uint32_t h = ctx->state.s32[7]; in SHA256Transform() local
377 uint64_t h = ctx->state.s64[7]; in SHA512Transform() local