Lines Matching refs:State
68 static void buildSLR(benchmark::State &State) { in buildSLR() argument
69 for (auto _ : State) in buildSLR()
86 static void lex(benchmark::State &State) { in lex() argument
88 for (auto _ : State) in lex()
90 State.SetBytesProcessed(static_cast<uint64_t>(State.iterations()) * in lex()
95 static void pairBrackets(benchmark::State &State) { in pairBrackets() argument
98 for (auto _ : State) in pairBrackets()
100 State.SetBytesProcessed(static_cast<uint64_t>(State.iterations()) * in pairBrackets()
105 static void preprocess(benchmark::State &State) { in preprocess() argument
108 for (auto _ : State) { in preprocess()
114 State.SetBytesProcessed(static_cast<uint64_t>(State.iterations()) * in preprocess()
119 static void glrParse(benchmark::State &State) { in glrParse() argument
122 for (auto _ : State) { in glrParse()
127 State.SetBytesProcessed(static_cast<uint64_t>(State.iterations()) * in glrParse()
132 static void full(benchmark::State &State) { in full() argument
134 for (auto _ : State) { in full()
140 State.SetBytesProcessed(static_cast<uint64_t>(State.iterations()) * in full()