Lines Matching full:places
212 /// Places a cryptographically-secure pseudo-random nonnegative
260 /// Places `a << 1` in `self`. Equivalent to `self * 2`.
266 /// Places `a >> 1` in `self`. Equivalent to `self / 2`.
272 /// Places `a + b` in `self`. [`core::ops::Add`] is also implemented for `BigNumRef`.
280 /// Places `a - b` in `self`. [`core::ops::Sub`] is also implemented for `BigNumRef`.
288 /// Places `a << n` in `self`. Equivalent to `a * 2 ^ n`.
295 /// Places `a >> n` in `self`. Equivalent to `a / 2 ^ n`.
462 /// Places the result of `a * b` in `self`.
484 /// Places the result of `a / b` in `self`. The remainder is discarded.
507 /// Places the result of `a % b` in `self`.
527 /// Places the result of `a / b` in `self` and `a % b` in `rem`.
548 /// Places the result of `a²` in `self`.
554 /// Places the result of `a mod m` in `self`. As opposed to `div_rem`
574 /// Places the result of `(a + b) mod m` in `self`.
595 /// Places the result of `(a - b) mod m` in `self`.
616 /// Places the result of `(a * b) mod m` in `self`.
637 /// Places the result of `a² mod m` in `self`.
656 /// Places into `self` the modular square root of `a` such that `self^2 = a (mod p)`
676 /// Places the result of `a^p` in `self`.
695 /// Places the result of `a^p mod m` in `self`.
716 /// Places the inverse of `a` modulo `n` in `self`.
735 /// Places the greatest common denominator of `a` and `b` in `self`.