math/big.Int.SetString (method)

12 uses

	math/big (current package)
		int.go#L424: func (z *Int) SetString(s string, base int) (*Int, bool) {
		ratconv.go#L66: 		if _, ok := z.a.SetString(s[:sep], 0); !ok {

	crypto/elliptic
		p256_asm.go#L42: 	p256.P, _ = new(big.Int).SetString("115792089210356248762697446949407573530086143415290314195533631308867097853951", 10)
		p256_asm.go#L43: 	p256.N, _ = new(big.Int).SetString("115792089210356248762697446949407573529996955224135760342422259061068512044369", 10)
		p256_asm.go#L44: 	p256.B, _ = new(big.Int).SetString("5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b", 16)
		p256_asm.go#L45: 	p256.Gx, _ = new(big.Int).SetString("6b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c296", 16)
		p256_asm.go#L46: 	p256.Gy, _ = new(big.Int).SetString("4fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5", 16)
		p521.go#L152: 	b, ok := new(big.Int).SetString(s, 10)
		p521.go#L160: 	b, ok := new(big.Int).SetString(s, 16)

	github.com/aws/smithy-go/document
		document.go#L148: 	f, ok := (&big.Int{}).SetString(string(n), 10)

	go/constant
		value.go#L425: 		if x, ok := newInt().SetString(lit, 0); ok {

	golang.org/x/tools/internal/gcimporter
		iexport.go#L926: 			i.SetString(v.ExactString(), 10)