Home
last modified time | relevance | path

Searched refs:SetLabel (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/third-party/benchmark/test/
H A Dregister_benchmark_test.cc84 st.SetLabel(label); in BM_extra_args()
123 st.SetLabel(x); in TestRegistrationAtRuntime()
H A Dbenchmark_test.cc60 state.SetLabel(ss.str()); in BM_Factorial()
70 state.SetLabel(ss.str()); in BM_CalculatePiRange()
H A Dreporter_output_test.cc158 state.SetLabel("some label"); in BM_label()
/llvm-project-15.0.7/libc/benchmarks/
H A DLibcMemoryGoogleBenchmarkMain.cpp56 State.SetLabel((Twine(Configuration.Name) + "," + Distribution.Name).str()); in ~Runner()
/llvm-project-15.0.7/third-party/benchmark/bindings/python/google_benchmark/
H A Dbenchmark.cc168 .def("set_label", (void(State::*)(const char*)) & State::SetLabel) in PYBIND11_MODULE()
/llvm-project-15.0.7/third-party/benchmark/include/benchmark/
H A Dbenchmark.h723 void SetLabel(const char* label);
725 void BENCHMARK_ALWAYS_INLINE SetLabel(const std::string& str) { in SetLabel() function
726 this->SetLabel(str.c_str()); in SetLabel()
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCStreamer.cpp1136 MCSymbol *SetLabel = Context.createTempSymbol("set"); in emitAbsoluteSymbolDiff() local
1137 emitAssignment(SetLabel, Diff); in emitAbsoluteSymbolDiff()
1138 emitSymbolValue(SetLabel, Size); in emitAbsoluteSymbolDiff()
/llvm-project-15.0.7/third-party/benchmark/src/
H A Dbenchmark.cc223 void State::SetLabel(const char* label) { in SetLabel() function in benchmark::State