Damien George | ecf5b77 | 2014-04-04 11:13:51 +0000 | [diff] [blame^] | 1 | // Functions for small integer arithmetic |
2 | |||||
3 | bool mp_small_int_mul_overflow(machine_int_t x, machine_int_t y); | ||||
4 | machine_int_t mp_small_int_modulo(machine_int_t dividend, machine_int_t divisor); | ||||
5 | machine_int_t mp_small_int_floor_divide(machine_int_t num, machine_int_t denom); |