Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libc/port/fp/
H A D__x_power.c274 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()
/illumos-gate/usr/src/lib/libc/inc/
H A Dbase_conversion.h283 #define __TBL_2_SMALL_SIZE 176 macro