Home
last modified time | relevance | path

Searched refs:__TBL_10_SMALL_SIZE (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/fp/
H A D__x_power.c315 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()
/illumos-gate/usr/src/lib/libc/inc/
H A Dbase_conversion.h274 #define __TBL_10_SMALL_SIZE 64 macro