Home | History | Annotate | Download | only in big

Lines Matching full:prec

30 	prec := z.prec
31 if prec == 0 {
32 prec = 64
61 z.prec = prec
109 z.prec = prec
126 p := new(Float).SetPrec(z.Prec() + 64) // use more bits for p -- TODO(gri) what is the right number?
160 f := new(Float).SetPrec(z.Prec() + 64).SetInt64(10)
237 func ParseFloat(s string, base int, prec uint, mode RoundingMode) (f *Float, b int, err error) {
238 return new(Float).SetPrec(prec).SetMode(mode).Parse(s, base)