• Home
  • Raw
  • Download

Lines Matching refs:state

228     void SetUp(benchmark::State &state)  in SetUp()  argument
239 void TearDown(benchmark::State &state) in TearDown() argument
265 BENCHMARK_F(CodecBenchmarkOmxTest, GetComponentVersion)(benchmark::State &state) in BENCHMARK_F()
270 for (auto _ : state) { in BENCHMARK_F()
279 BENCHMARK_F(CodecBenchmarkOmxTest, GetParameter)(benchmark::State &state) in BENCHMARK_F()
292 for (auto _ : state) { in BENCHMARK_F()
301 BENCHMARK_F(CodecBenchmarkOmxTest, SetParameter)(benchmark::State &state) in BENCHMARK_F()
310 for (auto _ : state) { in BENCHMARK_F()
319 BENCHMARK_F(CodecBenchmarkOmxTest, GetConfig)(benchmark::State &state) in BENCHMARK_F()
329 for (auto _ : state) { in BENCHMARK_F()
338 BENCHMARK_F(CodecBenchmarkOmxTest, SetConfig)(benchmark::State &state) in BENCHMARK_F()
349 for (auto _ : state) { in BENCHMARK_F()
359 BENCHMARK_F(CodecBenchmarkOmxTest, GetExtensionIndex)(benchmark::State &state) in BENCHMARK_F()
364 for (auto _ : state) { in BENCHMARK_F()
374 BENCHMARK_F(CodecBenchmarkOmxTest, GetState)(benchmark::State &state) in BENCHMARK_F()
379 for (auto _ : state) { in BENCHMARK_F()
390 BENCHMARK_F(CodecBenchmarkOmxTest, ComponentTunnelRequest)(benchmark::State &state) in BENCHMARK_F()
398 for (auto _ : state) { in BENCHMARK_F()
408 BENCHMARK_F(CodecBenchmarkOmxTest, SendCommand)(benchmark::State &state) in BENCHMARK_F()
412 for (auto _ : state) { in BENCHMARK_F()
426 BENCHMARK_F(CodecBenchmarkOmxTest, AllocateBuffer)(benchmark::State &state) in BENCHMARK_F()
437 for (auto _ : state) { in BENCHMARK_F()
448 BENCHMARK_F(CodecBenchmarkOmxTest, UseBuffer)(benchmark::State &state) in BENCHMARK_F()
471 for (auto _ : state) { in BENCHMARK_F()
484 BENCHMARK_F(CodecBenchmarkOmxTest, UseEglImage)(benchmark::State &state) in BENCHMARK_F()
495 for (auto _ : state) { in BENCHMARK_F()
505 BENCHMARK_F(CodecBenchmarkOmxTest, FillThisBuffer)(benchmark::State &state) in BENCHMARK_F()
512 for (auto _ : state) { in BENCHMARK_F()
521 BENCHMARK_F(CodecBenchmarkOmxTest, EmptyThisBuffer)(benchmark::State &state) in BENCHMARK_F()
528 for (auto _ : state) { in BENCHMARK_F()
537 BENCHMARK_F(CodecBenchmarkOmxTest, SetCallbacks)(benchmark::State &state) in BENCHMARK_F()
543 for (auto _ : state) { in BENCHMARK_F()
553 BENCHMARK_F(CodecBenchmarkOmxTest, ComponentRoleEnum)(benchmark::State &state) in BENCHMARK_F()
558 for (auto _ : state) { in BENCHMARK_F()
567 BENCHMARK_F(CodecBenchmarkOmxTest, FreeBuffer)(benchmark::State &state) in BENCHMARK_F()
578 for (auto _ : state) { in BENCHMARK_F()
589 BENCHMARK_F(CodecBenchmarkOmxTest, ComponentDeInit)(benchmark::State &state) in BENCHMARK_F()
593 for (auto _ : state) { in BENCHMARK_F()
599 CodecStateType state = CODEC_STATE_INVALID; in BENCHMARK_F() local
602 ret = component_->GetState(state); in BENCHMARK_F()
603 } while (state != CODEC_STATE_LOADED); in BENCHMARK_F()