Searched refs:bytes_to_u64 (Results 1 – 8 of 8) sorted by relevance
20 use crate::params::utils::{bytes_to_u32, bytes_to_u64, bytes_to_u8};36 uwb_time0: bytes_to_u64(config_map.remove(&AppConfigTlvType::CccUwbTime0)?)?, in from_config_map()
49 pub fn bytes_to_u64(value: Vec<u8>) -> Option<u64> { in bytes_to_u64() function100 assert_eq!(bytes_to_u64(arr), Some(value)); in test_convert_u64_bytes()
109 pub fn bytes_to_u64(s: &[u8]) -> Result<u64, &'static str> { in bytes_to_u64() function139 map_res(take(3usize), bytes_to_u64)(i) in parse_uint24()
15 pub fn bytes_to_u64(s: &[u8]) -> Result<u64, &'static str> { in bytes_to_u64() function
76 pub(crate) fn bytes_to_u64(s: &[u8]) -> Result<u64, BerError> { in bytes_to_u64() function205 match bytes_to_u64(llen) { in ber_read_element_header()
652 match bytes_to_u64(llen) { in der_read_element_header()
77 - Fix potential integer underflow in `bytes_to_u64`
33 use crate::params::utils::bytes_to_u64;524 let dest_mac_address = bytes_to_u64(dest_mac_address_bytes).ok_or(Error::BadParameters)?; in send_data_packet()