HomeSort by relevance Sort by last modified time
    Searched full:benchmark (Results 51 - 75 of 2250) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/google-benchmark/test/
cxx03_test.cc 5 #include "benchmark/benchmark.h"
15 void BM_empty(benchmark::State& state) {
21 BENCHMARK(BM_empty);
25 void BM_old_arg_range_interface(benchmark::State& state) {
31 BENCHMARK(BM_old_arg_range_interface)->ArgPair(1, 2)->RangePair(5, 5, 6, 6);
34 void BM_template2(benchmark::State& state) {
40 void BM_template1(benchmark::State& state) {
47 struct BM_Fixture : public ::benchmark::Fixture {
50 BENCHMARK_TEMPLATE_F(BM_Fixture, BM_template1, long)(benchmark::State& state)
    [all...]
diagnostics_test.cc 14 #include "benchmark/benchmark.h"
28 void try_invalid_pause_resume(benchmark::State& state) {
45 void BM_diagnostic_test(benchmark::State& state) {
51 benchmark::DoNotOptimize(state.iterations());
58 BENCHMARK(BM_diagnostic_test);
61 void BM_diagnostic_test_keep_running(benchmark::State& state) {
67 benchmark::DoNotOptimize(state.iterations());
74 BENCHMARK(BM_diagnostic_test_keep_running);
77 benchmark::internal::GetAbortHandler() = &TestHandler
    [all...]
  /external/libcxx/benchmarks/
util_smartptr.bench.cpp 12 #include "benchmark/benchmark.h"
14 static void BM_SharedPtrCreateDestroy(benchmark::State& st) {
17 benchmark::DoNotOptimize(sp.get());
20 BENCHMARK(BM_SharedPtrCreateDestroy);
22 static void BM_SharedPtrIncDecRef(benchmark::State& st) {
24 benchmark::DoNotOptimize(sp.get());
27 benchmark::ClobberMemory();
30 BENCHMARK(BM_SharedPtrIncDecRef);
32 static void BM_WeakPtrIncDecRef(benchmark::State& st)
    [all...]
  /external/libcxx/utils/google-benchmark/test/
cxx03_test.cc 5 #include "benchmark/benchmark.h"
15 void BM_empty(benchmark::State& state) {
21 BENCHMARK(BM_empty);
25 void BM_old_arg_range_interface(benchmark::State& state) {
31 BENCHMARK(BM_old_arg_range_interface)->ArgPair(1, 2)->RangePair(5, 5, 6, 6);
34 void BM_template2(benchmark::State& state) {
40 void BM_template1(benchmark::State& state) {
47 struct BM_Fixture : public ::benchmark::Fixture {
50 BENCHMARK_TEMPLATE_F(BM_Fixture, BM_template1, long)(benchmark::State& state)
    [all...]
diagnostics_test.cc 14 #include "benchmark/benchmark.h"
28 void try_invalid_pause_resume(benchmark::State& state) {
45 void BM_diagnostic_test(benchmark::State& state) {
51 benchmark::DoNotOptimize(state.iterations());
58 BENCHMARK(BM_diagnostic_test);
61 void BM_diagnostic_test_keep_running(benchmark::State& state) {
67 benchmark::DoNotOptimize(state.iterations());
74 BENCHMARK(BM_diagnostic_test_keep_running);
77 benchmark::internal::GetAbortHandler() = &TestHandler
    [all...]
  /external/conscrypt/
settings.gradle 6 include ":conscrypt-benchmark-android"
7 include ":conscrypt-benchmark-base"
8 include ":conscrypt-benchmark-graphs"
9 include ":conscrypt-benchmark-jmh"
21 project(':conscrypt-benchmark-android').projectDir = "$rootDir/benchmark-android" as File
22 project(':conscrypt-benchmark-base').projectDir = "$rootDir/benchmark-base" as File
23 project(':conscrypt-benchmark-graphs').projectDir = "$rootDir/benchmark-graphs" as Fil
    [all...]
  /external/eigen/bench/
benchmark_suite 4 $CXX -O3 -I .. -DNDEBUG benchmark.cpp -o benchmark && time ./benchmark >/dev/null
6 $CXX -O3 -I .. benchmark.cpp -o benchmark && time ./benchmark >/dev/null
8 $CXX -O3 -I .. -DEIGEN_DEFAULT_TO_ROW_MAJOR -DNDEBUG benchmark.cpp -o benchmark && time ./benchmark >/dev/null
10 $CXX -O3 -I .. -DEIGEN_DEFAULT_TO_ROW_MAJOR benchmark.cpp -o benchmark && time ./benchmark >/dev/nul
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/benchmarks/
util_smartptr.bench.cpp 12 #include "benchmark/benchmark_api.h"
14 static void BM_SharedPtrCreateDestroy(benchmark::State& st) {
17 benchmark::DoNotOptimize(sp.get());
20 BENCHMARK(BM_SharedPtrCreateDestroy);
22 static void BM_SharedPtrIncDecRef(benchmark::State& st) {
24 benchmark::DoNotOptimize(sp.get());
27 benchmark::ClobberMemory();
30 BENCHMARK(BM_SharedPtrIncDecRef);
32 static void BM_WeakPtrIncDecRef(benchmark::State& st) {
34 benchmark::DoNotOptimize(sp.get())
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/include/benchmark/
benchmark_api.h 6 static void BM_StringCreation(benchmark::State& state) {
11 // Register the function as a benchmark
12 BENCHMARK(BM_StringCreation);
14 // Define another benchmark
15 static void BM_StringCopy(benchmark::State& state) {
20 BENCHMARK(BM_StringCopy);
29 benchmark::Initialize(&argc, argv);
30 benchmark::RunSpecifiedBenchmarks();
40 static void BM_memcpy(benchmark::State& state) {
49 BENCHMARK(BM_memcpy)->Arg(8)->Arg(64)->Arg(512)->Arg(1<<10)->Arg(8<<10)
172 namespace benchmark { namespace
    [all...]
  /art/benchmark/jobject-benchmark/
info.txt 0 Benchmark for jobject functions
  /external/google-benchmark/
README.version 1 URL: https://github.com/google/benchmark
  /prebuilts/go/darwin-x86/src/cmd/internal/test2json/testdata/
benchfail.test 2 x_test.go:8: My benchmark
  /prebuilts/go/linux-x86/src/cmd/internal/test2json/testdata/
benchfail.test 2 x_test.go:8: My benchmark
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
CMakeLists.txt 12 ${PROJECT_SOURCE_DIR}/include/benchmark/*.h
15 add_library(benchmark ${SOURCE_FILES})
16 set_target_properties(benchmark PROPERTIES
17 OUTPUT_NAME "benchmark"
23 target_link_libraries(benchmark ${BENCHMARK_CXX_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
26 target_link_libraries(benchmark ${LIBRT})
31 target_link_libraries(benchmark Shlwapi)
56 TARGETS benchmark
64 DIRECTORY "${PROJECT_SOURCE_DIR}/include/benchmark"
  /system/media/audio_utils/tests/
primitives_benchmark.cpp 21 #include <benchmark/benchmark.h>
25 static void BM_MemcpyToFloatFromFloatWithClamping(benchmark::State& state) {
44 benchmark::DoNotOptimize(src.data());
45 benchmark::DoNotOptimize(dst.data());
47 benchmark::ClobberMemory();
56 BENCHMARK(BM_MemcpyToFloatFromFloatWithClamping)->RangeMultiplier(2)->Ranges({{10, 8<<12}, {1, 2}});
58 static void BM_MemcpyFloat(benchmark::State& state) {
73 benchmark::DoNotOptimize(src.data());
74 benchmark::DoNotOptimize(dst.data())
    [all...]
  /external/google-benchmark/src/
CMakeLists.txt 12 ${PROJECT_SOURCE_DIR}/include/benchmark/*.h
15 add_library(benchmark ${SOURCE_FILES})
16 set_target_properties(benchmark PROPERTIES
17 OUTPUT_NAME "benchmark"
21 target_include_directories(benchmark PUBLIC
26 target_link_libraries(benchmark ${BENCHMARK_CXX_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
29 target_link_libraries(benchmark ${LIBRT})
34 target_link_libraries(benchmark Shlwapi)
58 configure_file("${PROJECT_SOURCE_DIR}/cmake/benchmark.pc.in" "${pkg_config}" @ONLY)
63 TARGETS benchmark
    [all...]
benchmark_register.cc 15 #include "benchmark/benchmark.h"
47 namespace benchmark { namespace
52 // The size of a benchmark family determines is the number of inputs to repeat
53 // the benchmark on. If this is "large" then warn the user during configuration.
64 // benchmark identifies a family of related benchmarks to run.
69 // Registers a benchmark family and returns the index assigned to it.
70 size_t AddBenchmark(std::unique_ptr<Benchmark> family);
72 // Clear all registered benchmark families.
75 // Extract the list of benchmark instances that match the specifie
    [all...]
sleep.h 4 namespace benchmark { namespace
13 } // end namespace benchmark
  /external/libcxx/utils/google-benchmark/src/
CMakeLists.txt 12 ${PROJECT_SOURCE_DIR}/include/benchmark/*.h
15 add_library(benchmark ${SOURCE_FILES})
16 set_target_properties(benchmark PROPERTIES
17 OUTPUT_NAME "benchmark"
21 target_include_directories(benchmark PUBLIC
26 target_link_libraries(benchmark ${BENCHMARK_CXX_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
29 target_link_libraries(benchmark ${LIBRT})
34 target_link_libraries(benchmark Shlwapi)
58 configure_file("${PROJECT_SOURCE_DIR}/cmake/benchmark.pc.in" "${pkg_config}" @ONLY)
63 TARGETS benchmark
    [all...]
benchmark_register.cc 15 #include "benchmark/benchmark.h"
47 namespace benchmark { namespace
52 // The size of a benchmark family determines is the number of inputs to repeat
53 // the benchmark on. If this is "large" then warn the user during configuration.
64 // benchmark identifies a family of related benchmarks to run.
69 // Registers a benchmark family and returns the index assigned to it.
70 size_t AddBenchmark(std::unique_ptr<Benchmark> family);
72 // Clear all registered benchmark families.
75 // Extract the list of benchmark instances that match the specifie
    [all...]
sleep.h 4 namespace benchmark { namespace
13 } // end namespace benchmark
  /bionic/benchmarks/
time_benchmark.cpp 22 #include <benchmark/benchmark.h>
25 static void BM_time_clock_gettime(benchmark::State& state) {
34 static void BM_time_clock_gettime_syscall(benchmark::State& state) {
43 static void BM_time_clock_gettime_MONOTONIC_COARSE(benchmark::State& state) {
52 static void BM_time_clock_gettime_MONOTONIC_RAW(benchmark::State& state) {
61 static void BM_time_clock_gettime_REALTIME(benchmark::State& state) {
70 static void BM_time_clock_gettime_REALTIME_COARSE(benchmark::State& state) {
79 static void BM_time_clock_gettime_BOOTTIME(benchmark::State& state) {
88 static void BM_time_clock_getres(benchmark::State& state)
    [all...]
  /external/autotest/client/tests/reaim/
control 5 TEST_CATEGORY = "Benchmark"
8 DOC = """Run the Open Source AIM 7 benchmark from
  /external/eigen/bench/tensors/
benchmark.h 21 class Benchmark {
23 Benchmark(const char* name, void (*fn)(int)) {
26 Benchmark(const char* name, void (*fn_range)(int, int)) {
29 Benchmark* Arg(int x);
30 Benchmark* Range(int lo, int hi);
47 #define BENCHMARK(f) \
48 static ::testing::Benchmark* _benchmark_##f __attribute__((unused)) = \
49 (new ::testing::Benchmark(#f, f))
  /external/valgrind/memcheck/tests/
vcpu_fbench.stdout.exp 2 and performance benchmark. 100 iterations will be made.
7 adjust iteration count so the benchmark runs about five minutes.

Completed in 379 milliseconds

1 23 4 5 6 7 8 91011>>