Home | History | Annotate | Download | only in gmp

Lines Matching defs:accum

19 	accum = big.NewInt(0)
25 if big.CmpInt(numer, accum) > 0 {
28 tmp1.Lsh(numer, 1).Add(tmp1, numer).Add(tmp1, accum)
39 accum.Add(accum, tmp1.Lsh(numer, 1))
40 accum.Mul(accum, tmp1.SetInt64(y2))
46 accum.Sub(accum, tmp1.Mul(denom, tmp1.SetInt64(d)))
47 accum.Mul(accum, ten)
72 fmt.Printf("\n%d calls; bit sizes: %d %d %d\n", runtime.NumCgoCall(), numer.Len(), accum.Len(), denom.Len())