Home
last modified time | relevance | path

Searched refs:prev_multiple_of (Results 1 – 7 of 7) sorted by relevance

/external/rust/android-crates-io/crates/num-integer/
DRELEASES.md16 - [`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/
Dbigint.rs1147 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()
Dbiguint.rs1160 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/
Dlib.rs336 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/
Dbigint.rs496 fn prev_multiple_of(&self, other: &Self) -> Self { in prev_multiple_of() method
Dbiguint.rs321 fn prev_multiple_of(&self, other: &Self) -> Self { in prev_multiple_of() method
/external/mesa3d/src/nouveau/compiler/nak/
Dir.rs7266 fn prev_multiple_of(x: u32, y: u32) -> u32 { in prev_multiple_of() function
7278 let out = prev_multiple_of(out, 8);