Lines Matching refs:bytes
4 use crate::bytes::streaming::tag;
44 /// Recognizes a big endian unsigned 2 bytes integer.
110 /// Recognizes a big endian unsigned 4 bytes integer.
143 /// Recognizes a big endian unsigned 8 bytes integer.
176 /// Recognizes a big endian unsigned 16 bytes integer.
228 /// Recognizes a big endian signed 2 bytes integer.
248 /// Recognizes a big endian signed 3 bytes integer.
277 /// Recognizes a big endian signed 4 bytes integer.
297 /// Recognizes a big endian signed 8 bytes integer.
318 /// Recognizes a big endian signed 16 bytes integer.
365 /// Recognizes a little endian unsigned 2 bytes integer.
398 /// Recognizes a little endian unsigned 3 bytes integer.
431 /// Recognizes a little endian unsigned 4 bytes integer.
464 /// Recognizes a little endian unsigned 8 bytes integer.
497 /// Recognizes a little endian unsigned 16 bytes integer.
550 /// Recognizes a little endian signed 2 bytes integer.
573 /// Recognizes a little endian signed 3 bytes integer.
605 /// Recognizes a little endian signed 4 bytes integer.
628 /// Recognizes a little endian signed 8 bytes integer.
651 /// Recognizes a little endian signed 16 bytes integer.
705 /// Recognizes an unsigned 2 bytes integer
1120 /// Recognizes a big endian 4 bytes floating point number.
1145 /// Recognizes a big endian 8 bytes floating point number.
1170 /// Recognizes a little endian 4 bytes floating point number.
1195 /// Recognizes a little endian 8 bytes floating point number.
1315 let (i, o) = crate::bytes::streaming::is_a(&b"0123456789abcdefABCDEF"[..])(input)?;
1400 crate::bytes::streaming::tag_no_case::<_, _, E>("nan")(i.clone())
1404 crate::bytes::streaming::tag_no_case::<_, _, E>("inf")(i.clone())
1408 crate::bytes::streaming::tag_no_case::<_, _, E>("infinity")(i.clone())