math/big.Int.Rsh (method)

8 uses

	math/big (current package)
		int.go#L979: 		c.Rsh(&a, s) // a = 2^s*c
		int.go#L1000: 	e.Rsh(e, 2)                  // e = (p + 1) / 4
		int.go#L1016: 	e := new(Int).Rsh(p, 3)  // e = (p - 5) / 8
		int.go#L1038: 	s.Rsh(&s, e)
		int.go#L1053: 	y.Rsh(&y, 1)
		int.go#L1118: func (z *Int) Rsh(x *Int, n uint) *Int {

	crypto/ecdsa
		ecdsa_legacy.go#L46: 		ret.Rsh(ret, uint(excess))

	github.com/gotd/td/internal/crypto
		pq.go#L90: 				b.Rsh(b, 1)