func math.Abs

22 uses

	math (current package)
		abs.go#L12: func Abs(x float64) float64 {
		bits.go#L58: 	if Abs(x) < SmallestNormal {
		gamma.go#L144: 	q := Abs(x)
		gamma.go#L168: 		absz := Abs(z)
		hypot.go#L34: 	p, q = Abs(p), Abs(q)
		j0.go#L102: 	x = Abs(x)
		jn.go#L198: 			tmp = tmp * Log(Abs(v*tmp))
		lgamma.go#L224: 		nadj = Log(Pi / Abs(t*x))
		log1p.go#L130: 	absx := Abs(x)
		mod.go#L32: 	y = Abs(y)
		pow.go#L70: 		case (Abs(x) < 1) == IsInf(y, 1):
		pow.go#L91: 	yi, yf := Modf(Abs(y))
		pow.go#L101: 		case (Abs(x) < 1) == (y > 0):
		sin.go#L138: 	x = Abs(x)
		sinh.go#L85: 	x = Abs(x)
		tanh.go#L83: 	z := Abs(x)

	encoding/json
		encode.go#L587: 	abs := math.Abs(f)

	github.com/aws/smithy-go/encoding
		encoding.go#L19: 	abs := math.Abs(v)

	go/constant
		value.go#L224: 	switch am := math.Abs(m); {

	google.golang.org/protobuf/internal/encoding/json
		encode.go#L159: 	if abs := math.Abs(n); abs != 0 {

	testing
		benchmark.go#L467: 	switch y := math.Abs(x); {