strconv.decimalSlice.d (field)

21 uses

	strconv (current package)
		extfloat.go#L279: 		d.d[i-pos] = buf[i]
		extfloat.go#L300: 			d.d[nd] = byte(digit + '0')
		extfloat.go#L329: 		if d.d[i] != '0' {
		extfloat.go#L359: 			if d.d[i] == '9' {
		extfloat.go#L366: 			d.d[0] = '1'
		extfloat.go#L370: 			d.d[i]++
		extfloat.go#L401: 			d.d[i] = buf[n+1+i]
		extfloat.go#L404: 		for d.nd > 0 && d.d[d.nd-1] == '0' {
		extfloat.go#L452: 		d.d[i] = byte(digit + '0')
		extfloat.go#L476: 		d.d[d.nd] = byte(digit + '0')
		extfloat.go#L500: 		d.d[d.nd-1]--
		extfloat.go#L511: 	if d.nd == 1 && d.d[0] == '0' {
		ftoa.go#L120: 		digs.d = buf[:]
		ftoa.go#L149: 			digs.d = buf[:]
		ftoa.go#L169: 		digs = decimalSlice{d: d.d[:], nd: d.nd, dp: d.dp}
		ftoa.go#L192: 		digs = decimalSlice{d: d.d[:], nd: d.nd, dp: d.dp}
		ftoa.go#L372: 	d      []byte
		ftoa.go#L387: 		ch = d.d[0]
		ftoa.go#L397: 			dst = append(dst, d.d[i:m]...)
		ftoa.go#L442: 		dst = append(dst, d.d[:m]...)
		ftoa.go#L456: 				ch = d.d[j]