math/big.Float.MinPrec (method)

9 uses

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

	golang.org/x/tools/internal/gcimporter
		bexport.go#L640: 	m.SetMantExp(&m, int(m.MinPrec()))
		iexport.go#L1070: 	prec := mant.MinPrec()