Searched refs:BcRandState (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/bc/include/
H A Drand.h82 typedef __uint128_t BcRandState; typedef
84 #define bc_rand_mul(a, b) (((BcRandState) (a)) * ((BcRandState) (b)))
85 #define bc_rand_add(a, b) (((BcRandState) (a)) + ((BcRandState) (b)))
87 #define bc_rand_mul2(a, b) (((BcRandState) (a)) * ((BcRandState) (b)))
88 #define bc_rand_add2(a, b) (((BcRandState) (a)) + ((BcRandState) (b)))
93 #define BC_RAND_CONSTANT(h, l) ((((BcRandState) (
101 typedef struct BcRandState { struct
106 } BcRandState; typedef in typeref:struct:BcRandState
143 typedef uint_fast64_t BcRandState; typedef
[all...]
/freebsd-12-stable/contrib/bc/src/
H A Drand.c63 static BcRandState bc_rand_addition(uint_fast64_t a, uint_fast64_t b) {
65 BcRandState res;
73 static BcRandState bc_rand_addition2(BcRandState a, BcRandState b) {
75 BcRandState temp, res;
84 static BcRandState bc_rand_multiply(uint_fast64_t a, uint_fast64_t b) {
87 BcRandState carry, res;
107 static BcRandState bc_rand_multiply2(BcRandState
[all...]
H A Ddata.c947 const BcRandState bc_rand_multiplier = BC_RAND_MULTIPLIER;

Completed in 127 milliseconds