math/big.Int.Int64 (method)

13 uses

	math/big (current package)
		int.go#L373: func (x *Int) Int64() int64 {

	github.com/jackc/pgtype
		numeric.go#L244: 			*v = int(normalizedInt.Int64())
		numeric.go#L256: 			*v = int8(normalizedInt.Int64())
		numeric.go#L268: 			*v = int16(normalizedInt.Int64())
		numeric.go#L280: 			*v = int32(normalizedInt.Int64())
		numeric.go#L292: 			*v = normalizedInt.Int64()
		numeric.go#L640: 		wholeDigits = append(wholeDigits, int16(remainder.Int64()))
		numeric.go#L646: 			fracDigits = append(fracDigits, int16(remainder.Int64()))

	golang.org/x/crypto/ssh
		keys.go#L356: 	e := w.E.Int64()
		keys.go#L1353: 				E: int(key.E.Int64()),

	golang.org/x/crypto/ssh/agent
		server.go#L250: 			E: int(k.E.Int64()),
		server.go#L399: 			E: int(rsaPub.E.Int64()),

	google.golang.org/api/idtoken
		validate.go#L177: 		E: int(new(big.Int).SetBytes(de).Int64()),