Lines Matching refs:isize
17 use core::{i16, i32, i64, i8, isize};
59 test_wrapping_to_primitive!(usize u8 u16 u32 u64 isize i8 i16 i32 i64); in wrapping_to_primitive()
106 assert_eq!(None, cast::<f64, isize>(big_f)); in cast_to_int_checks_overflow()
112 assert_eq!(Some(normal_f as isize), cast::<f64, isize>(normal_f)); in cast_to_int_checks_overflow()
118 assert_eq!(None, cast::<f64, isize>(small_f)); in cast_to_int_checks_overflow()
239 float_test_edge!(f32 -> isize i8 i16 i32 i64); in cast_float_to_int_edge_cases()
241 float_test_edge!(f64 -> isize i8 i16 i32 i64); in cast_float_to_int_edge_cases()
295 int_test_edge!($from -> { isize i8 i16 i32 i64 } with i64 u64); in cast_int_to_int_edge_cases()
300 test_edge!(isize i8 i16 i32 i64); in cast_int_to_int_edge_cases()
319 test_edge!(isize i8 i16 i32 i64 i128); in cast_int_to_128_edge_cases()
357 check!(i8 i16 i32 i64 isize); in newtype_from_primitive()
395 check!(i8 i16 i32 i64 isize); in newtype_to_primitive()