Searched refs:length_count (Results 1 – 7 of 7) sorted by relevance
/third_party/rust/crates/nom/tests/ |
D | overflow.rs | 121 use nom::multi::length_count; in overflow_incomplete_length_count() 125 length_count(be_u8, length_data(be_u64))(i) in overflow_incomplete_length_count()
|
/third_party/ffmpeg/libavcodec/ |
D | magicyuv.c | 383 uint16_t length_count[33] = { 0 }; in build_huffman() local 404 length_count[x] += l; in build_huffman() 410 if (huff_build(len, length_count, &s->vlc[i], max, avctx)) { in build_huffman() 418 memset(length_count, 0, sizeof(length_count)); in build_huffman()
|
/third_party/rust/crates/nom/doc/archive/ |
D | upgrading_to_nom_2.md | 111 - the `length_value!` macro was replaced by `length_count!` 130 + cert_types: length_count!(be_u8,be_u8) ~
|
/third_party/rust/crates/nom/src/multi/ |
D | tests.rs | 15 count, fold_many0, fold_many1, fold_many_m_n, length_count, many0, many1, many_m_n, many_till, 332 length_count(number, tag("abc"))(i) in length_count_test()
|
D | mod.rs | 1018 pub fn length_count<I, O, N, E, F, G>(mut f: F, mut g: G) -> impl FnMut(I) -> IResult<I, Vec<O>, E> in length_count() function
|
/third_party/rust/crates/nom/doc/ |
D | choosing_a_combinator.md | 54 | [length_count](https://docs.rs/nom/latest/nom/multi/fn.length_count.html) | `length_count(number,…
|
/third_party/rust/crates/nom/ |
D | CHANGELOG.md | 251 - relaxed input bounds on `length_count` 357 - `length_count` function combinator 962 - `length_value!` has been renamed to `length_count!`. The new `length_value!` selects a slice and …
|