type strconv.extFloat

18 uses

	strconv (current package)
		extfloat.go#L15: type extFloat struct {
		extfloat.go#L28: var smallPowersOfTen = [...]extFloat{
		extfloat.go#L39: var powersOfTen = [...]extFloat{
		extfloat.go#L133: func (f *extFloat) AssignComputeBounds(mant uint64, exp int, neg bool, flt *floatInfo) (lower, upper extFloat) {
		extfloat.go#L145: 	upper = extFloat{mant: 2*f.mant + 1, exp: f.exp - 1, neg: f.neg}
		extfloat.go#L147: 		lower = extFloat{mant: 2*f.mant - 1, exp: f.exp - 1, neg: f.neg}
		extfloat.go#L149: 		lower = extFloat{mant: 4*f.mant - 1, exp: f.exp - 2, neg: f.neg}
		extfloat.go#L156: func (f *extFloat) Normalize() uint {
		extfloat.go#L169: func (f *extFloat) Multiply(g extFloat) {
		extfloat.go#L185: func (f *extFloat) frexp10() (exp10, index int) {
		extfloat.go#L217: func frexp10Many(a, b, c *extFloat) (exp10 int) {
		extfloat.go#L227: func (f *extFloat) FixedDecimal(d *decimalSlice, n int) bool {
		extfloat.go#L381: func (f *extFloat) ShortestDecimal(d *decimalSlice, lower, upper *extFloat) bool {
		ftoa.go#L117: 		f := new(extFloat)
		ftoa.go#L150: 			f := extFloat{mant, exp - int(flt.mantbits), neg}