Home
last modified time | relevance | path

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

/external/rust/crates/nom/src/number/
Dstreaming.rs568 pub fn le_i64<'a, E: ParseError<&'a [u8]>>(i: &'a[u8]) -> IResult<&'a[u8], i64, E> { in le_i64() function
1062 le_i64(&[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]), in le_i64_tests()
1066 le_i64(&[0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f]), in le_i64_tests()
1070 le_i64(&[0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff]), in le_i64_tests()
1074 le_i64(&[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80]), in le_i64_tests()
Dcomplete.rs573 pub fn le_i64<'a, E: ParseError<&'a [u8]>>(i: &'a[u8]) -> IResult<&'a[u8], i64, E> { in le_i64() function
1053 le_i64(&[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]), in le_i64_tests()
1057 le_i64(&[0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f]), in le_i64_tests()
1061 le_i64(&[0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff]), in le_i64_tests()
1065 le_i64(&[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80]), in le_i64_tests()
Dmacros.rs163 … $e { $crate::number::streaming::be_i64($i) } else { $crate::number::streaming::le_i64($i) } } ););
/external/rust/crates/nom/
DCHANGELOG.md960 - `le_i8`, `le_i16`, `le_i32`, `le_i64`: little endian signed integer parsers