Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libc/port/fp/
H A D__x_power.c276 if (n < __TBL_2_SMALL_SIZE) { in __big_float_times_power()
280 } else if (n < (__TBL_2_SMALL_SIZE * __TBL_2_BIG_SIZE)) { in __big_float_times_power()
282 tablepower[0] = n % __TBL_2_SMALL_SIZE; in __big_float_times_power()
283 tablepower[1] = n / __TBL_2_SMALL_SIZE; in __big_float_times_power()
285 } else if (n < (__TBL_2_SMALL_SIZE * __TBL_2_BIG_SIZE * in __big_float_times_power()
288 tablepower[0] = n % __TBL_2_SMALL_SIZE; in __big_float_times_power()
289 n /= __TBL_2_SMALL_SIZE; in __big_float_times_power()
/titanic_50/usr/src/lib/libc/inc/
H A Dbase_conversion.h285 #define __TBL_2_SMALL_SIZE 176 macro