Searched refs:PrimInt (Results 1 – 11 of 11) sorted by relevance
/external/rust/crates/gdbstub/src/arch/ |
D | traits.rs | 3 use num_traits::{PrimInt, Unsigned}; 52 type Usize: PrimInt + Unsigned + BeBytes + LeBytes;
|
/external/rust/crates/gdbstub/src/arch/riscv/reg/ |
D | riscv.rs | 1 use num_traits::PrimInt; 23 U: PrimInt + LeBytes + Default + core::fmt::Debug,
|
/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/rust/crates/gdbstub/src/arch/mips/reg/ |
D | mips.rs | 3 use num_traits::PrimInt; 93 U: PrimInt + LeBytes + Default + core::fmt::Debug, 184 U: PrimInt + LeBytes + Default + core::fmt::Debug,
|
/external/rust/crates/gdbstub/src/protocol/ |
D | response_writer.rs | 4 use num_traits::PrimInt; 115 pub fn write_num<D: BeBytes + PrimInt>(&mut self, digit: D) -> Result<(), Error<C::Error>> { in write_num()
|
/external/rust/crates/num-traits/src/ |
D | int.rs | 34 pub trait PrimInt: interface 311 impl PrimInt for $T { impl
|
D | lib.rs | 39 pub use int::PrimInt;
|
/external/rust/crates/num-integer/tests/ |
D | roots.rs | 6 use num_traits::{AsPrimitive, PrimInt, Signed}; 11 trait TestInteger: Roots + PrimInt + Debug + AsPrimitive<f64> + 'static {} 13 impl<T> TestInteger for T where T: Roots + PrimInt + Debug + AsPrimitive<f64> + 'static {}
|
/external/rust/crates/num-integer/src/ |
D | roots.rs | 4 use traits::PrimInt; 197 fn log2<T: PrimInt>(x: T) -> u32 { in log2()
|
/external/rust/crates/num-traits/ |
D | RELEASES.md | 91 - [Documented general features and intentions of `PrimInt`][108].
|