Home
last modified time | relevance | path

Searched refs:remaining_bytes_index (Results 1 – 4 of 4) sorted by relevance

/external/rust/android-crates-io/crates/nom/src/bits/
Dmod.rs52 let remaining_bytes_index = offset / 8 + if offset % 8 == 0 { 0 } else { 1 }; in bits() localVariable
53 Ok((rest.slice(remaining_bytes_index..), result)) in bits()
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/nom-7.1.3/src/bits/
Dmod.rs52 let remaining_bytes_index = offset / 8 + if offset % 8 == 0 { 0 } else { 1 }; in bits() localVariable
53 Ok((rest.slice(remaining_bytes_index..), result)) in bits()
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/nom-7.1.3/src/bits/
Dmod.rs52 let remaining_bytes_index = offset / 8 + if offset % 8 == 0 { 0 } else { 1 }; in bits() localVariable
53 Ok((rest.slice(remaining_bytes_index..), result)) in bits()
/external/rust/android-crates-io/crates/winnow/src/binary/bits/
Dmod.rs67 let remaining_bytes_index = offset / BYTE + if offset % BYTE == 0 { 0 } else { 1 }; in bits() localVariable
68 let _ = rest.next_slice(remaining_bytes_index); in bits()