Lines Matching refs:transmute
72 macro_rules! transmute { macro
84 fn transmute<Src, Dst>(src: Src) -> Dst
94 transmute(e)
128 $crate::util::macro_util::core_reexport::mem::transmute(e)
168 fn transmute<Src, Dst>(src: Src) -> Dst
178 transmute(e)
188 $crate::util::macro_util::core_reexport::mem::transmute(e)
645 $crate::util::macro_util::core_reexport::mem::transmute(e)
984 $crate::transmute!(*::core::include_bytes!($file))
1276 let x: [[u8; 2]; 4] = transmute!(array_of_u8s); in test_transmute()
1278 let x: [u8; 8] = transmute!(array_of_arrays); in test_transmute()
1282 let x: [[u8; 2]; 3] = transmute!(#![allow(shrink)] array_of_u8s); in test_transmute()
1296 let _: () = transmute!(PanicOnDrop(())); in test_transmute()
1298 let _: () = transmute!(#![allow(shrink)] PanicOnDrop(())); in test_transmute()
1303 const X: [[u8; 2]; 4] = transmute!(ARRAY_OF_U8S); in test_transmute()
1305 const X_SHRINK: [[u8; 2]; 3] = transmute!(#![allow(shrink)] ARRAY_OF_U8S); in test_transmute()
1309 let x: usize = transmute!(UnsafeCell::new(1usize)); in test_transmute()
1311 let x: UnsafeCell<usize> = transmute!(1usize); in test_transmute()
1313 let x: UnsafeCell<isize> = transmute!(UnsafeCell::new(1usize)); in test_transmute()
1657 let _: usize = transmute!({ in test_macros_evaluate_args_once()