func github.com/jackc/pgio.AppendUint64

24 uses

	github.com/jackc/pgio (current package)
		write.go#L19: func AppendUint64(buf []byte, n uint64) []byte {
		write.go#L35: 	return AppendUint64(buf, uint64(n))

	github.com/jackc/pgtype
		box.go#L135: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P[0].X))
		box.go#L136: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P[0].Y))
		box.go#L137: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P[1].X))
		box.go#L138: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P[1].Y))
		circle.go#L122: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P.X))
		circle.go#L123: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P.Y))
		circle.go#L124: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.R))
		float8.go#L236: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.Float))
		line.go#L120: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.A))
		line.go#L121: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.B))
		line.go#L122: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.C))
		lseg.go#L136: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P[0].X))
		lseg.go#L137: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P[0].Y))
		lseg.go#L138: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P[1].X))
		lseg.go#L139: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P[1].Y))
		numeric.go#L595: 		buf = pgio.AppendUint64(buf, pgNumericNaN)
		path.go#L166: 		buf = pgio.AppendUint64(buf, math.Float64bits(p.X))
		path.go#L167: 		buf = pgio.AppendUint64(buf, math.Float64bits(p.Y))
		point.go#L162: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P.X))
		point.go#L163: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P.Y))
		polygon.go#L197: 		buf = pgio.AppendUint64(buf, math.Float64bits(p.X))
		polygon.go#L198: 		buf = pgio.AppendUint64(buf, math.Float64bits(p.Y))