math/big.Int.Neg (method)

12 uses

	math/big (current package)
		int.go#L109: func (z *Int) Neg(x *Int) *Int {
		int.go#L812: 		n = n2.Neg(n)

	crypto/elliptic
		elliptic.go#L432: 		y.Neg(y).Mod(y, p)
		p256_asm.go#L117: 		k = new(big.Int).Neg(k)

	encoding/asn1
		asn1.go#L147: 		ret.Neg(ret)
		marshal.go#L207: 		nMinus1 := new(big.Int).Neg(n)

	go/constant
		value.go#L965: 			return makeInt(newInt().Neg(big.NewInt(int64(y))))
		value.go#L967: 			return makeInt(newInt().Neg(y.val))

	golang.org/x/tools/internal/gcimporter
		iimport.go#L688: 		x.Neg(x)

	golang.org/x/tools/internal/pkgbits
		decoder.go#L464: 		v.Neg(v)

	vendor/golang.org/x/crypto/cryptobyte
		asn1.go#L78: 			nMinus1 := new(big.Int).Neg(n)
		asn1.go#L329: 		out.Neg(out)