Searched refs:be_u8 (Results 1 - 4 of 4) sorted by relevance
/third_party/rust/crates/nom/tests/ |
H A D | overflow.rs | 122 use nom::number::streaming::be_u8; in overflow_incomplete_length_count() 125 length_count(be_u8, length_data(be_u64))(i) in overflow_incomplete_length_count()
|
/third_party/rust/crates/nom/src/multi/ |
H A D | tests.rs | 8 number::streaming::{be_u16, be_u8}, 372 length_value(be_u8, be_u16)(i) in length_value_test() 375 length_value(be_u8, tuple((be_u8, be_u8)))(i) in length_value_test()
|
/third_party/rust/crates/nom/src/number/ |
H A D | complete.rs | 22 /// use nom::number::complete::be_u8; 25 /// be_u8(s) 32 pub fn be_u8<I, E: ParseError<I>>(input: I) -> IResult<I, u8, E> in be_u8() functions 231 be_u8.map(|x| x as i8).parse(input) in be_i8() 573 be_u8.map(|x| x as i8).parse(input) in le_i8()
|
H A D | streaming.rs | 20 /// use nom::number::streaming::be_u8; 23 /// be_u8::<_, (_, ErrorKind)>(s) 30 pub fn be_u8<I, E: ParseError<I>>(input: I) -> IResult<I, u8, E> in be_u8() functions 225 be_u8.map(|x| x as i8).parse(input) in be_i8()
|
Completed in 6 milliseconds