Home
last modified time | relevance | path

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

/third_party/rust/crates/nom/src/number/
Dcomplete.rs670 pub fn le_i64<I, E: ParseError<I>>(input: I) -> IResult<I, i64, E> in le_i64() function
1099 crate::number::Endianness::Little => le_i64, in i64()
1103 crate::number::Endianness::Native => le_i64, in i64()
1838 le_i64(&[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00][..]), in le_i64_tests()
1842 le_i64(&[0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f][..]), in le_i64_tests()
1846 le_i64(&[0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff][..]), in le_i64_tests()
1850 le_i64(&[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80][..]), in le_i64_tests()
Dstreaming.rs644 pub fn le_i64<I, E: ParseError<I>>(input: I) -> IResult<I, i64, E> in le_i64() function
1073 crate::number::Endianness::Little => le_i64, in i64()
1077 crate::number::Endianness::Native => le_i64, in i64()
1917 le_i64(&[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00][..]), in le_i64_tests()
1921 le_i64(&[0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f][..]), in le_i64_tests()
1925 le_i64(&[0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff][..]), in le_i64_tests()
1929 le_i64(&[0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80][..]), in le_i64_tests()
/third_party/rust/crates/nom/doc/
Dchoosing_a_combinator.md68 …test/nom/number/complete/fn.le_i32.html), [`le_i64`](https://docs.rs/nom/latest/nom/number/complet…
/third_party/rust/crates/nom/
DCHANGELOG.md1329 - `le_i8`, `le_i16`, `le_i32`, `le_i64`: little endian signed integer parsers