func math/big.NewInt

14 uses

	math/big (current package)
		int.go#L68: func NewInt(x int64) *Int {
		rat.go#L445: 		if f := NewInt(0).lehmerGCD(nil, nil, &z.a, &z.b); f.Cmp(intOne) != 0 {

	crypto/dsa
		dsa.go#L189: 	two := big.NewInt(2)

	crypto/ecdsa
		ecdsa.go#L188: 	two := big.NewInt(2)

	crypto/rsa
		rsa.go#L38: var bigZero = big.NewInt(0)
		rsa.go#L39: var bigOne = big.NewInt(1)
		rsa.go#L334: 		e := big.NewInt(int64(priv.E))
		rsa.go#L388: 	e := big.NewInt(int64(pub.E))
		rsa.go#L523: 		bigE := big.NewInt(int64(priv.E))

	encoding/asn1
		asn1.go#L130: var bigOne = big.NewInt(1)

	src.elv.sh/pkg/eval
		builtin_fn_num.go#L291: 		acc := big.NewInt(0)
		builtin_fn_num.go#L430: 		acc := big.NewInt(1)

	src.elv.sh/pkg/eval/vals
		num.go#L100: 				unified[i] = big.NewInt(int64(num))

	vendor/golang.org/x/crypto/cryptobyte
		asn1.go#L301: var bigOne = big.NewInt(1)