math/big.Float.MinPrec (method)

7 uses

	math/big (current package)
		float.go#L215: func (x *Float) MinPrec() uint {
		float.go#L359: 	return x.prec <= uint32(x.exp) || x.MinPrec() <= uint(x.exp) // not enough bits for fractional mantissa
		float.go#L760: 			if x.MinPrec() <= 64 {
		float.go#L808: 			if x.MinPrec() <= uint(x.exp) {
		float.go#L815: 			if x.exp == 64 && x.MinPrec() == 1 {
		float.go#L1105: 		if x.MinPrec() <= exp {
		ftoa.go#L372: 		n = 1 + (x.MinPrec()-1+3)/4*4 // round MinPrec up to 1 mod 4