Home | History | Annotate | Download | only in big

Lines Matching full:minprec

205 // MinPrec returns the minimum precision required to represent x exactly
208 func (x *Float) MinPrec() uint {
348 return x.prec <= uint32(x.exp) || x.MinPrec() <= uint(x.exp) // not enough bits for fractional mantissa
777 if x.MinPrec() <= 64 {
825 if x.MinPrec() <= uint(x.exp) {
832 if x.exp == 64 && x.MinPrec() == 1 {
1096 if x.MinPrec() <= exp {