Home | History | Annotate | Download | only in big

Lines Matching refs:ndigits

305 		bb, ndigits := maxPow(b)
309 table := divisors(len(x), b, ndigits, bb)
315 q.convertWords(s, b, ndigits, bb, table)
350 func (q nat) convertWords(s []byte, b Word, ndigits int, bb Word, table []divisor) {
374 h := len(s) - table[index].ndigits
375 r.convertWords(s[h:], b, ndigits, bb, table[0:index])
376 s = s[:h] // == q.convertWords(s, b, ndigits, bb, table[0:index+1])
388 for j := 0; j < ndigits && i > 0; j++ {
402 for j := 0; j < ndigits && i > 0; j++ {
426 ndigits int // digit length of divisor in terms of output base digits
440 func divisors(m int, b Word, ndigits int, bb Word) []divisor {
462 if table[k-1].ndigits == 0 {
466 if table[i].ndigits == 0 {
469 table[0].ndigits = ndigits * leafSize
472 table[i].ndigits = 2 * table[i-1].ndigits
479 table[i].ndigits++