Home
last modified time | relevance | path

Searched refs:bytes_to_u64 (Results 1 – 8 of 8) sorted by relevance

/external/uwb/src/rust/uwb_core/src/params/
Dccc_started_app_config_params.rs20 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()
Dutils.rs49 pub fn bytes_to_u64(value: Vec<u8>) -> Option<u64> { in bytes_to_u64() function
100 assert_eq!(bytes_to_u64(arr), Some(value)); in test_convert_u64_bytes()
/external/rust/crates/rusticata-macros/src/
Dmacros.rs109 pub fn bytes_to_u64(s: &[u8]) -> Result<u64, &'static str> { in bytes_to_u64() function
139 map_res(take(3usize), bytes_to_u64)(i) in parse_uint24()
Dcombinator.rs15 pub fn bytes_to_u64(s: &[u8]) -> Result<u64, &'static str> { in bytes_to_u64() function
/external/rust/crates/der-parser/src/ber/
Dparser.rs76 pub(crate) fn bytes_to_u64(s: &[u8]) -> Result<u64, BerError> { in bytes_to_u64() function
205 match bytes_to_u64(llen) { in ber_read_element_header()
/external/rust/crates/der-parser/src/der/
Dparser.rs652 match bytes_to_u64(llen) { in der_read_element_header()
/external/rust/crates/der-parser/
DCHANGELOG.md77 - Fix potential integer underflow in `bytes_to_u64`
/external/uwb/src/rust/uwb_core/src/uci/
Duci_manager.rs33 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()