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