HelenOS sources
BIGINT_BASE 82 uspace/app/sbi/src/bigint.c t = t / BIGINT_BASE;
BIGINT_BASE 91 uspace/app/sbi/src/bigint.c bigint->digit[idx] = t % BIGINT_BASE;
BIGINT_BASE 92 uspace/app/sbi/src/bigint.c t = t / BIGINT_BASE;
BIGINT_BASE 200 uspace/app/sbi/src/bigint.c val = val * BIGINT_BASE + bigint->digit[idx];
BIGINT_BASE 280 uspace/app/sbi/src/bigint.c da = a->digit[idx] + r * BIGINT_BASE;
BIGINT_BASE 381 uspace/app/sbi/src/bigint.c static_assert(BIGINT_BASE >= 10, "");
BIGINT_BASE 510 uspace/app/sbi/src/bigint.c carry = (bigint_word_t) (tmp / BIGINT_BASE);
BIGINT_BASE 511 uspace/app/sbi/src/bigint.c res = (bigint_word_t) (tmp % BIGINT_BASE);
BIGINT_BASE 556 uspace/app/sbi/src/bigint.c tmp = da + BIGINT_BASE - db - borrow;
BIGINT_BASE 583 uspace/app/sbi/src/bigint.c tmp = da + BIGINT_BASE - db - borrow;
BIGINT_BASE 636 uspace/app/sbi/src/bigint.c carry = (bigint_word_t) (tmp / BIGINT_BASE);
BIGINT_BASE 637 uspace/app/sbi/src/bigint.c res = (bigint_word_t) (tmp % BIGINT_BASE);
HelenOS homepage, sources at GitHub