Searched refs:__TBL_2_SMALL_SIZE (Results 1 – 2 of 2) sorted by relevance
274 if (n < __TBL_2_SMALL_SIZE) { in __big_float_times_power()278 } else if (n < (__TBL_2_SMALL_SIZE * __TBL_2_BIG_SIZE)) { in __big_float_times_power()280 tablepower[0] = n % __TBL_2_SMALL_SIZE; in __big_float_times_power()281 tablepower[1] = n / __TBL_2_SMALL_SIZE; in __big_float_times_power()283 } else if (n < (__TBL_2_SMALL_SIZE * __TBL_2_BIG_SIZE * in __big_float_times_power()286 tablepower[0] = n % __TBL_2_SMALL_SIZE; in __big_float_times_power()287 n /= __TBL_2_SMALL_SIZE; in __big_float_times_power()
283 #define __TBL_2_SMALL_SIZE 176 macro