OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BENCHMARK
(Results
1 - 7
of
7
) sorted by null
/bionic/tests/
benchmark.h
23
class
Benchmark
{
25
Benchmark
(const char* name, void (*fn)(int)) {
29
Benchmark
(const char* name, void (*fn_range)(int, int)) {
33
Benchmark
* Arg(int x);
59
#define
BENCHMARK
(f) \
60
static ::testing::
Benchmark
* _benchmark_##f __attribute__((unused)) = \
61
(new ::testing::
Benchmark
(#f, f))
/external/chromium_org/third_party/re2/util/
benchmark.h
9
struct
Benchmark
{
19
Benchmark
(const char* name, void (*f)(int)) { Clear(name); fn = f; Register(); }
20
Benchmark
(const char* name, void (*f)(int, int), int l, int h) { Clear(name); fnr = f; lo = l; hi = h; Register(); }
22
Benchmark
* ThreadRange(int lo, int hi) { threadlo = lo; threadhi = hi; return this; }
34
#define
BENCHMARK
(f) \
35
::testing::
Benchmark
* _benchmark_##f = (new ::testing::
Benchmark
(#f, f))
38
::testing::
Benchmark
* _benchmark_##f = \
39
(new ::testing::
Benchmark
(#f, f, lo, hi))
/external/regex-re2/util/
benchmark.h
9
struct
Benchmark
{
19
Benchmark
(const char* name, void (*f)(int)) { Clear(name); fn = f; Register(); }
20
Benchmark
(const char* name, void (*f)(int, int), int l, int h) { Clear(name); fnr = f; lo = l; hi = h; Register(); }
22
Benchmark
* ThreadRange(int lo, int hi) { threadlo = lo; threadhi = hi; return this; }
34
#define
BENCHMARK
(f) \
35
::testing::
Benchmark
* _benchmark_##f = (new ::testing::
Benchmark
(#f, f))
38
::testing::
Benchmark
* _benchmark_##f = \
39
(new ::testing::
Benchmark
(#f, f, lo, hi))
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
ImageProcessingTest.java
29
* ImageProcessing
benchmark
test.
39
private final String
BENCHMARK
= "
Benchmark
";
72
Log.v(TAG, "
Benchmark
for test \"" + mTestName.toString() + "\" is: " + mResult);
82
// Set the
benchmark
thread to run on ui thread
83
// Synchronized the thread such that the test will wait for the
benchmark
thread to finish
110
results.putFloat(
BENCHMARK
, avgResult);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi_3.6.1.R36x_v20100806.jar
org.eclipse.osgi_3.6.2.R36x_v20101103.jar
/prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar
Completed in 426 milliseconds