Searched refs:be_i64 (Results 1 – 4 of 4) sorted by relevance
/external/rust/crates/nom/src/number/ |
D | streaming.rs | 273 pub fn be_i64<'a, E: ParseError<&'a[u8]>>(i: &'a[u8]) -> IResult<&'a[u8], i64, E> { in be_i64() function 977 be_i64(&[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]), in i64_tests() 981 be_i64(&[0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff]), in i64_tests() 985 be_i64(&[0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff]), in i64_tests() 989 be_i64(&[0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]), in i64_tests()
|
D | complete.rs | 281 pub fn be_i64<'a, E: ParseError<&'a[u8]>>(i: &'a[u8]) -> IResult<&'a[u8], i64, E> { in be_i64() function 968 be_i64(&[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]), in i64_tests() 972 be_i64(&[0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff]), in i64_tests() 976 be_i64(&[0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff]), in i64_tests() 980 be_i64(&[0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]), in i64_tests()
|
D | macros.rs | 163 …( {if $crate::number::Endianness::Big == $e { $crate::number::streaming::be_i64($i) } else { $crat…
|
/external/rust/crates/nom/ |
D | CHANGELOG.md | 984 - `be_i8`, `be_i16`, `be_i32`, `be_i64`: big endian signed integer parsers
|