| 580 | void Parse_SplitHard_PCRE(benchmark::State& state) { Parse1SplitHard(state, Parse1PCRE); } |
| 581 | void Parse_SplitHard_RE2(benchmark::State& state) { Parse1SplitHard(state, Parse1RE2); } |
| 582 | void Parse_SplitHard_BitState(benchmark::State& state) { Parse1SplitHard(state, Parse1BitState); } |
| 583 | |
| 584 | #ifdef USEPCRE |
| 585 | BENCHMARK(Parse_SplitHard_PCRE)->ThreadRange(1, NumCPUs()); |
nothing calls this directly
no test coverage detected