Searched refs:__TBL_10_SMALL_SIZE (Results 1 – 2 of 2) sorted by relevance
317 if (n < __TBL_10_SMALL_SIZE) { in __big_float_times_power()321 } else if (n < (__TBL_10_SMALL_SIZE * __TBL_10_BIG_SIZE)) { in __big_float_times_power()323 tablepower[0] = n % __TBL_10_SMALL_SIZE; in __big_float_times_power()324 tablepower[1] = n / __TBL_10_SMALL_SIZE; in __big_float_times_power()326 } else if (n < (__TBL_10_SMALL_SIZE * __TBL_10_BIG_SIZE * in __big_float_times_power()329 tablepower[0] = n % __TBL_10_SMALL_SIZE; in __big_float_times_power()330 n /= __TBL_10_SMALL_SIZE; in __big_float_times_power()
276 #define __TBL_10_SMALL_SIZE 64 macro