Dash Core Source Documentation (0.16.0.1)
Find detailed information regarding the Dash Core source code.
Go to the documentation of this file. 7 #ifndef SECP256K1_FIELD_REPR_H 8 #define SECP256K1_FIELD_REPR_H 24 #define SECP256K1_FE_CONST_INNER(d7, d6, d5, d4, d3, d2, d1, d0) { \ 25 (d0) | (((uint64_t)(d1) & 0xFFFFFUL) << 32), \ 26 ((uint64_t)(d1) >> 20) | (((uint64_t)(d2)) << 12) | (((uint64_t)(d3) & 0xFFUL) << 44), \ 27 ((uint64_t)(d3) >> 8) | (((uint64_t)(d4) & 0xFFFFFFFUL) << 24), \ 28 ((uint64_t)(d4) >> 28) | (((uint64_t)(d5)) << 4) | (((uint64_t)(d6) & 0xFFFFUL) << 36), \ 29 ((uint64_t)(d6) >> 16) | (((uint64_t)(d7)) << 16) \ 33 #define SECP256K1_FE_CONST(d7, d6, d5, d4, d3, d2, d1, d0) {SECP256K1_FE_CONST_INNER((d7), (d6), (d5), (d4), (d3), (d2), (d1), (d0)), 1, 1} 35 #define SECP256K1_FE_CONST(d7, d6, d5, d4, d3, d2, d1, d0) {SECP256K1_FE_CONST_INNER((d7), (d6), (d5), (d4), (d3), (d2), (d1), (d0))} 42 #define SECP256K1_FE_STORAGE_CONST(d7, d6, d5, d4, d3, d2, d1, d0) {{ \ 43 (d0) | (((uint64_t)(d1)) << 32), \ 44 (d2) | (((uint64_t)(d3)) << 32), \ 45 (d4) | (((uint64_t)(d5)) << 32), \ 46 (d6) | (((uint64_t)(d7)) << 32) \