Home
last modified time | relevance | path

Searched refs:assert_assign_op (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/num-bigint/tests/
Dbiguint.rs175 assert_assign_op!(a &= b == c); in test_bitand()
176 assert_assign_op!(b &= a == c); in test_bitand()
190 assert_assign_op!(a |= b == c); in test_bitor()
191 assert_assign_op!(b |= a == c); in test_bitor()
209 assert_assign_op!(a ^= b == c); in test_bitxor()
210 assert_assign_op!(b ^= a == c); in test_bitxor()
211 assert_assign_op!(a ^= c == b); in test_bitxor()
212 assert_assign_op!(c ^= a == b); in test_bitxor()
213 assert_assign_op!(b ^= c == a); in test_bitxor()
214 assert_assign_op!(c ^= b == a); in test_bitxor()
[all …]
Dbigint.rs681 assert_assign_op!(a += b == c); in test_add()
682 assert_assign_op!(b += a == c); in test_add()
683 assert_assign_op!(c += na == b); in test_add()
684 assert_assign_op!(c += nb == a); in test_add()
685 assert_assign_op!(a += nc == nb); in test_add()
686 assert_assign_op!(b += nc == na); in test_add()
687 assert_assign_op!(na += nb == nc); in test_add()
688 assert_assign_op!(a += na == BigInt::zero()); in test_add()
710 assert_assign_op!(c -= a == b); in test_sub()
711 assert_assign_op!(c -= b == a); in test_sub()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/num-bigint/tests/macros/
Dmod.rs14 macro_rules! assert_assign_op { macro