Searched refs:__TBL_10_SMALL_SIZE (Results 1 – 2 of 2) sorted by relevance
315 if (n < __TBL_10_SMALL_SIZE) { in __big_float_times_power()319 } else if (n < (__TBL_10_SMALL_SIZE * __TBL_10_BIG_SIZE)) { in __big_float_times_power()321 tablepower[0] = n % __TBL_10_SMALL_SIZE; in __big_float_times_power()322 tablepower[1] = n / __TBL_10_SMALL_SIZE; in __big_float_times_power()324 } else if (n < (__TBL_10_SMALL_SIZE * __TBL_10_BIG_SIZE * in __big_float_times_power()327 tablepower[0] = n % __TBL_10_SMALL_SIZE; in __big_float_times_power()328 n /= __TBL_10_SMALL_SIZE; in __big_float_times_power()
274 #define __TBL_10_SMALL_SIZE 64 macro