3 uint32_t isl_imath_hash(mp_int v
, uint32_t hash
)
5 unsigned const char *data
= (unsigned char *)v
->digits
;
6 unsigned const char *end
= data
+ v
->used
* sizeof(v
->digits
[0]);
9 isl_hash_byte(hash
, 0xFF);
10 for (; data
< end
; ++data
)
11 isl_hash_byte(hash
, *data
);
15 /* Try a standard conversion that fits into a long.
17 int isl_imath_fits_slong_p(mp_int op
)
20 mp_result res
= mp_int_to_int(op
, &out
);
24 /* Try a standard conversion that fits into an unsigned long.
26 int isl_imath_fits_ulong_p(mp_int op
)
29 mp_result res
= mp_int_to_uint(op
, &out
);
33 void isl_imath_addmul_ui(mp_int rop
, mp_int op1
, unsigned long op2
)
38 mp_int_set_uvalue(&temp
, op2
);
39 mp_int_mul(op1
, &temp
, &temp
);
40 mp_int_add(rop
, &temp
, rop
);
45 void isl_imath_submul_ui(mp_int rop
, mp_int op1
, unsigned long op2
)
50 mp_int_set_uvalue(&temp
, op2
);
51 mp_int_mul(op1
, &temp
, &temp
);
52 mp_int_sub(rop
, &temp
, rop
);
57 /* Compute the division of lhs by a rhs of type unsigned long, rounding towards
58 * positive infinity (Ceil).
60 void isl_imath_cdiv_q_ui(mp_int rop
, mp_int lhs
, unsigned long rhs
)
65 mp_int_set_uvalue(&temp
, rhs
);
66 impz_cdiv_q(rop
, lhs
, &temp
);
71 /* Compute the division of lhs by a rhs of type unsigned long, rounding towards
72 * negative infinity (Floor).
74 void isl_imath_fdiv_q_ui(mp_int rop
, mp_int lhs
, unsigned long rhs
)
79 mp_int_set_uvalue(&temp
, rhs
);
80 impz_fdiv_q(rop
, lhs
, &temp
);