__TBL_10_SMALL_SIZE
if (n < __TBL_10_SMALL_SIZE) {
} else if (n < (__TBL_10_SMALL_SIZE * __TBL_10_BIG_SIZE)) {
tablepower[0] = n % __TBL_10_SMALL_SIZE;
tablepower[1] = n / __TBL_10_SMALL_SIZE;
} else if (n < (__TBL_10_SMALL_SIZE * __TBL_10_BIG_SIZE *
tablepower[0] = n % __TBL_10_SMALL_SIZE;
n /= __TBL_10_SMALL_SIZE;