Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/der/src/asn1/
Dreal.rs23 } else if is_nth_bit_one::<7>(bytes) { in decode_value()
25 let sign: u64 = u64::from(is_nth_bit_one::<6>(bytes)); in decode_value()
66 } else if is_nth_bit_one::<6>(bytes) { in decode_value()
201 pub(crate) fn is_nth_bit_one<const N: usize>(bytes: &[u8]) -> bool { in is_nth_bit_one() function
214 let bit_m = is_nth_bit_one::<M>(bytes); in mnth_bits_to_u8()
215 let bit_n = is_nth_bit_one::<N>(bytes); in mnth_bits_to_u8()