Searched refs:rep0 (Results 1 – 4 of 4) sorted by relevance
/third_party/boost/libs/spirit/classic/test/ |
D | loops_tests.cpp | 92 rule<> rep0 = repeat_p(0)[alpha_p] >> '/'; in loops_tests() local 93 BOOST_TEST(parse("/", rep0).full); in loops_tests() 94 BOOST_TEST(!parse("a/", rep0).hit); in loops_tests()
|
/third_party/boost/libs/spirit/test/x3/ |
D | repeat.cpp | 117 #define rep0 repeat(0)[alpha] >> '/' in main() macro 118 BOOST_TEST(test("/", rep0)); in main() 119 BOOST_TEST(!test("a/", rep0, false)); in main()
|
/third_party/toybox/toys/pending/ |
D | xzcat.c | 1290 uint32_t rep0; member 1738 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1; in lzma_literal() 1798 s->lzma.rep1 = s->lzma.rep0; in lzma_match() 1806 s->lzma.rep0 = dist_slot; in lzma_match() 1809 s->lzma.rep0 = 2 + (dist_slot & 1); in lzma_match() 1812 s->lzma.rep0 <<= limit; in lzma_match() 1813 probs = s->lzma.dist_special + s->lzma.rep0 in lzma_match() 1816 &s->lzma.rep0, limit); in lzma_match() 1818 rc_direct(&s->rc, &s->lzma.rep0, limit - ALIGN_BITS); in lzma_match() 1819 s->lzma.rep0 <<= ALIGN_BITS; in lzma_match() [all …]
|
/third_party/boost/libs/spirit/test/qi/ |
D | repeat.cpp | 141 #define rep0 repeat(0)[alpha] >> '/' in main() macro 142 BOOST_TEST(test("/", rep0)); in main() 143 BOOST_TEST(!test("a/", rep0, false)); in main()
|