Searched defs:read_usize (Results 1 – 7 of 7) sorted by relevance
53 let read_usize = |bytes: &[u8]| u32::from_ne_bytes(bytes[..4].try_into().unwrap()); in write() localVariable55 let read_usize = |bytes: &[u8]| u64::from_ne_bytes(bytes[..8].try_into().unwrap()); in write() localVariable
87 let read_usize = |bytes: &[u8]| u32::from_ne_bytes(bytes[..4].try_into().unwrap()); in write() localVariable89 let read_usize = |bytes: &[u8]| u64::from_ne_bytes(bytes[..8].try_into().unwrap()); in write() localVariable
650 fn read_usize(buffer: &[u8], address: usize, width: BitWidth) -> usize { in read_usize() function