Searched refs:mul_with_overflow (Results 1 – 11 of 11) sorted by relevance
| /third_party/rust/rust/tests/mir-opt/ |
| D | lower_intrinsics.with_overflow.LowerIntrinsics.panic-abort.diff | 59 - _9 = mul_with_overflow::<i32>(move _10, move _11) -> [return: bb3, unwind unreachable];
|
| D | lower_intrinsics.with_overflow.LowerIntrinsics.panic-unwind.diff | 59 - _9 = mul_with_overflow::<i32>(move _10, move _11) -> [return: bb3, unwind unreachable];
|
| D | lower_intrinsics.rs | 125 let _z = core::intrinsics::mul_with_overflow(a, b); in with_overflow()
|
| /third_party/rust/rust/compiler/rustc_mir_transform/src/ |
| D | lower_intrinsics.rs | 125 sym::add_with_overflow | sym::sub_with_overflow | sym::mul_with_overflow => { in run_pass() 137 sym::mul_with_overflow => BinOp::Mul, in run_pass()
|
| /third_party/rust/rust/library/core/src/ptr/ |
| D | mod.rs | 1644 assume, cttz_nonzero, exact_div, mul_with_overflow, unchecked_rem, unchecked_shl, in align_offset() 1690 let (new_gate, overflow) = mul_with_overflow(mod_gate, mod_gate); in align_offset()
|
| /third_party/rust/rust/compiler/rustc_hir_analysis/src/check/ |
| D | intrinsic.rs | 90 | sym::mul_with_overflow in intrinsic_operation_unsafety() 345 sym::add_with_overflow | sym::sub_with_overflow | sym::mul_with_overflow => { in check_intrinsic_type()
|
| /third_party/rust/rust/compiler/rustc_span/src/ |
| D | symbol.rs | 977 mul_with_overflow,
|
| /third_party/rust/rust/library/core/src/ |
| D | intrinsics.rs | 2091 pub fn mul_with_overflow<T: Copy>(x: T, y: T) -> (T, bool); in mul_with_overflow() function
|
| /third_party/rust/rust/library/core/src/num/ |
| D | uint_macros.rs | 1703 let (a, b) = intrinsics::mul_with_overflow(self as $ActualT, rhs as $ActualT);
|
| D | int_macros.rs | 1748 let (a, b) = intrinsics::mul_with_overflow(self as $ActualT, rhs as $ActualT);
|
| /third_party/rust/rust/src/tools/rust-analyzer/bench_data/ |
| D | numerous_macro_rules | 429 … rhs : Self )-> ( Self , bool ){ let ( a , b )= intrinsics :: mul_with_overflow ( self as $… 433 … rhs : Self )-> ( Self , bool ){ let ( a , b )= intrinsics :: mul_with_overflow ( self as $…
|