Searched refs:ARRAY_OF_U8S (Results 1 – 1 of 1) sorted by relevance
| /linux/rust/zerocopy/src/ |
| H A D | macros.rs | 1301 const ARRAY_OF_U8S: [u8; 8] = [0u8, 1, 2, 3, 4, 5, 6, 7]; in test_transmute() constant 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() 1340 const ARRAY_OF_U8S: [u8; 8] = [0u8, 1, 2, 3, 4, 5, 6, 7]; in test_transmute_ref() constant 1343 const X: &'static [[u8; 2]; 4] = transmute_ref!(&ARRAY_OF_U8S); in test_transmute_ref() 1417 assert_eq!(*x, ARRAY_OF_U8S); in test_transmute_ref()
|