Searched refs:WrappingMul (Results 1 – 8 of 8) sorted by relevance
/external/rust/crates/num-traits/src/ops/ |
D | wrapping.rs | 70 pub trait WrappingMul: Sized + Mul<Self, Output = Self> { interface 76 wrapping_impl!(WrappingMul, wrapping_mul, u8); 77 wrapping_impl!(WrappingMul, wrapping_mul, u16); 78 wrapping_impl!(WrappingMul, wrapping_mul, u32); 79 wrapping_impl!(WrappingMul, wrapping_mul, u64); 80 wrapping_impl!(WrappingMul, wrapping_mul, usize); 82 wrapping_impl!(WrappingMul, wrapping_mul, u128); 84 wrapping_impl!(WrappingMul, wrapping_mul, i8); 85 wrapping_impl!(WrappingMul, wrapping_mul, i16); 86 wrapping_impl!(WrappingMul, wrapping_mul, i32); [all …]
|
/external/rust/crates/num-integer/benches/ |
D | roots.rs | 11 use num_traits::{AsPrimitive, PrimInt, WrappingAdd, WrappingMul}; 14 trait BenchInteger: Integer + PrimInt + WrappingAdd + WrappingMul + 'static {} 16 impl<T> BenchInteger for T where T: Integer + PrimInt + WrappingAdd + WrappingMul + 'static {}
|
D | average.rs | 10 use num_traits::{AsPrimitive, PrimInt, WrappingAdd, WrappingMul}; 17 trait BenchInteger: Integer + PrimInt + WrappingAdd + WrappingMul + 'static {} 19 impl<T> BenchInteger for T where T: Integer + PrimInt + WrappingAdd + WrappingMul + 'static {}
|
/external/angle/src/compiler/preprocessor/ |
D | preprocessor.y | 308 $$ = gl::WrappingMul($1, $3);
|
D | preprocessor_tab_autogen.cpp | 1507 yyval = gl::WrappingMul(yyvsp[-2], yyvsp[0]); in yyparse()
|
/external/rust/crates/num-traits/src/ |
D | lib.rs | 47 WrappingAdd, WrappingMul, WrappingNeg, WrappingShl, WrappingShr, WrappingSub,
|
/external/angle/src/compiler/translator/ |
D | ConstantUnion.cpp | 489 returnValue.setIConst(gl::WrappingMul(lhs.iConst, rhs.iConst)); in mul()
|
/external/angle/src/common/ |
D | mathutil.h | 1337 inline int32_t WrappingMul(int32_t lhs, int32_t rhs)
|