Home
last modified time | relevance | path

Searched defs:read_usize (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/proc_macro/src/bridge/
H A Dfxhash.rs53 let read_usize = |bytes: &[u8]| u32::from_ne_bytes(bytes[..4].try_into().unwrap()); in write() localVariable
55 let read_usize = |bytes: &[u8]| u64::from_ne_bytes(bytes[..8].try_into().unwrap()); in write() localVariable
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/proc_macro/src/bridge/
H A Dfxhash.rs53 let read_usize = |bytes: &[u8]| u32::from_ne_bytes(bytes[..4].try_into().unwrap()); in write() localVariable
55 let read_usize = |bytes: &[u8]| u64::from_ne_bytes(bytes[..8].try_into().unwrap()); in write() localVariable
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/proc_macro/src/bridge/
H A Dfxhash.rs53 let read_usize = |bytes: &[u8]| u32::from_ne_bytes(bytes[..4].try_into().unwrap()); in write() localVariable
55 let read_usize = |bytes: &[u8]| u64::from_ne_bytes(bytes[..8].try_into().unwrap()); in write() localVariable
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/proc_macro/src/bridge/
H A Dfxhash.rs53 let read_usize = |bytes: &[u8]| u32::from_ne_bytes(bytes[..4].try_into().unwrap()); in write() localVariable
55 let read_usize = |bytes: &[u8]| u64::from_ne_bytes(bytes[..8].try_into().unwrap()); in write() localVariable
/aosp_15_r20/external/rust/android-crates-io/crates/rustc-hash/src/
Dlib.rs87 let read_usize = |bytes: &[u8]| u32::from_ne_bytes(bytes[..4].try_into().unwrap()); in write() localVariable
89 let read_usize = |bytes: &[u8]| u64::from_ne_bytes(bytes[..8].try_into().unwrap()); in write() localVariable
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/proc_macro/src/bridge/
H A Dfxhash.rs53 let read_usize = |bytes: &[u8]| u32::from_ne_bytes(bytes[..4].try_into().unwrap()); in write() localVariable
55 let read_usize = |bytes: &[u8]| u64::from_ne_bytes(bytes[..8].try_into().unwrap()); in write() localVariable
/aosp_15_r20/external/flatbuffers/rust/flexbuffers/src/reader/
H A Dmod.rs650 fn read_usize(buffer: &[u8], address: usize, width: BitWidth) -> usize { in read_usize() function