Searched refs:prev_multiple_of (Results 1 – 7 of 7) sorted by relevance
/external/rust/android-crates-io/crates/num-integer/ |
D | RELEASES.md | 16 - [`Integer::next_multiple_of` and `prev_multiple_of` no longer overflow -1][45]. 67 - [Added `Integer::div_ceil`, `next_multiple_of`, and `prev_multiple_of`][16].
|
/external/rust/android-crates-io/crates/num-bigint/tests/ |
D | bigint.rs | 1147 BigInt::from(16).prev_multiple_of(&BigInt::from(8)), in test_prev_multiple_of() 1151 BigInt::from(23).prev_multiple_of(&BigInt::from(8)), in test_prev_multiple_of() 1155 BigInt::from(16).prev_multiple_of(&BigInt::from(-8)), in test_prev_multiple_of() 1159 BigInt::from(23).prev_multiple_of(&BigInt::from(-8)), in test_prev_multiple_of() 1163 BigInt::from(-16).prev_multiple_of(&BigInt::from(8)), in test_prev_multiple_of() 1167 BigInt::from(-23).prev_multiple_of(&BigInt::from(8)), in test_prev_multiple_of() 1171 BigInt::from(-16).prev_multiple_of(&BigInt::from(-8)), in test_prev_multiple_of() 1175 BigInt::from(-23).prev_multiple_of(&BigInt::from(-8)), in test_prev_multiple_of()
|
D | biguint.rs | 1160 BigUint::from(16u32).prev_multiple_of(&BigUint::from(8u32)), in test_prev_multiple_of() 1164 BigUint::from(23u32).prev_multiple_of(&BigUint::from(8u32)), in test_prev_multiple_of()
|
/external/rust/android-crates-io/crates/num-integer/src/ |
D | lib.rs | 336 fn prev_multiple_of(&self, other: &Self) -> Self in prev_multiple_of() method 607 fn prev_multiple_of(&self, other: &Self) -> Self { 833 assert_eq!(Integer::prev_multiple_of(x, one), *x);
|
/external/rust/android-crates-io/crates/num-bigint/src/ |
D | bigint.rs | 496 fn prev_multiple_of(&self, other: &Self) -> Self { in prev_multiple_of() method
|
D | biguint.rs | 321 fn prev_multiple_of(&self, other: &Self) -> Self { in prev_multiple_of() method
|
/external/mesa3d/src/nouveau/compiler/nak/ |
D | ir.rs | 7266 fn prev_multiple_of(x: u32, y: u32) -> u32 { in prev_multiple_of() function 7278 let out = prev_multiple_of(out, 8);
|