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.c317 if (n < __TBL_10_SMALL_SIZE) {
321 } else if (n < (__TBL_10_SMALL_SIZE * __TBL_10_BIG_SIZE)) {
323 tablepower[0] = n % __TBL_10_SMALL_SIZE;
324 tablepower[1] = n / __TBL_10_SMALL_SIZE;
326 } else if (n < (__TBL_10_SMALL_SIZE * __TBL_10_BIG_SIZE *
329 tablepower[0] = n % __TBL_10_SMALL_SIZE;
330 n /= __TBL_10_SMALL_SIZE;
/illumos-gate/usr/src/lib/libc/inc/
H A Dbase_conversion.h251 * 5**__TBL_10_SMALL_SIZE-1
254 * 5**__TBL_10_SMALL_SIZE, ...
255 * 5**__TBL_10_SMALL_SIZE*(__TBL_10_BIG_SIZE-1)
258 * 5**__TBL_10_SMALL_SIZE*__TBL_10_BIG_SIZE, ...
259 * 5**__TBL_10_SMALL_SIZE*__TBL_10_BIG_SIZE*(__TBL_10_HUGE_SIZE-1)
262 * 5**__TBL_10_SMALL_SIZE*__TBL_10_BIG_SIZE*__TBL_10_HUGE_SIZE
276 #define __TBL_10_SMALL_SIZE 64 macro

Completed in 46 milliseconds