math/big.Int.Neg (method)

8 uses

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

	crypto/elliptic
		elliptic.go#L204: 		y.Neg(y).Mod(y, p)
		nistec_p256.go#L17: 		k = new(big.Int).Neg(k)

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

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