HomeSort by relevance Sort by last modified time
    Searched full:warmup (Results 26 - 50 of 144) sorted by null

12 3 4 5 6

  /art/test/545-tracing-and-jit/src/
Main.java 68 public void ensureCaller(boolean warmup, int invocationCount) throws Exception {
69 doLoadsOfStuff(warmup, invocationCount);
76 public void doLoadsOfStuff(boolean warmup, int invocationCount) throws Exception {
77 // Warmup is to make sure the JIT gets a chance to compile 'doLoadsOfStuff'.
78 if (warmup) {
80 doLoadsOfStuff(warmup, ++invocationCount);
95 doLoadsOfStuff(warmup, ++invocationCount);
  /frameworks/support/customtabs/src/android/support/customtabs/
CustomTabsClient.java 116 * Connects to the Custom Tabs warmup service, and initializes the browser.
120 * code of warmup.
122 * <code>warmup()</code> and create a session. In this case, calling this method is not
136 client.warmup(0);
160 * @return Whether the warmup was successful.
162 public boolean warmup(long flags) { method in class:CustomTabsClient
164 return mService.warmup(flags);
ICustomTabsService.aidl 30 boolean warmup(long flags) = 1;
CustomTabsService.java 58 public boolean warmup(long flags) {
59 return CustomTabsService.this.warmup(flags);
133 * @return Whether warmup was/had been completed successfully. Multiple successful
136 protected abstract boolean warmup(long flags); method in class:CustomTabsService
153 * The method {@link CustomTabsService#warmup(long)} has to be called beforehand.
  /external/caliper/caliper/src/main/resources/com/google/caliper/config/
global-config.properties 41 instrument.runtime.options.warmup=10s
42 # Interrupt warmup when it has been running for this much wall-clock time,
43 # even if the measured warmup time (above) hasn't been reached. This prevents fast benchmarks
  /system/extras/tests/pftest/
pftest.c 26 #define WARMUP (1<<10)
91 /* Warmup (ie pre-thrash the memory system */
92 for (i = 0; i < WARMUP; i++) {
  /external/autotest/server/cros/bluetooth/
bluetooth_test.py 14 BluetoothTest provides a common warmup() and cleanup() function for the
33 def warmup(self, device_host, tester_host, interactive=False): member in class:BluetoothTest
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
Worker.java 60 * @param inWarmup whether we are in warmup, or taking real measurements. Used by
61 * some implementations to skip forcing GC to make warmup faster.
WorkerEventLog.java 54 writer.write("Measurement phase starting (includes warmup and actual measurement).");
67 * warmup or measurement phase.
  /packages/experimental/RpcPerformance/
rpcperftest.cpp 28 static const int WARMUP = 100;
72 for (int i = 0; i < WARMUP; i++) {
  /external/autotest/client/site_tests/hardware_MemoryThroughput/
control.copy_1thread_full_range 21 job.run_test('hardware_MemoryThroughput', test='bcopy', warmup=100,
control.copy_2thread_full_range 21 job.run_test('hardware_MemoryThroughput', test='bcopy', warmup=100,
control.memory_qual 21 tag='memory_qual', test='bcopy', warmup=100,
control.read_1thread_full_range 21 job.run_test('hardware_MemoryThroughput', test='rd', warmup=100,
control.read_2thread_full_range 21 job.run_test('hardware_MemoryThroughput', test='rd', warmup=100,
  /external/autotest/client/tests/kernbench/
kernbench.old 43 testkernel.build_timed(threads) # warmup run
  /external/autotest/server/site_tests/sequences/
control.memory_qual 25 'tag': 'memory_qual', 'test': 'bcopy', 'warmup': 100,
control.memory_qual_quick 23 'tag': 'quick', 'test': 'bcopy', 'warmup': 10, 'num_iterations': 5,
  /external/libunwind/tests/
perf-startup 5 warmup=$(./forker 2000 /bin/true | cut -f1 -d' ')
  /external/skia/tools/VisualBench/
VisualBenchmarkStream.cpp 34 DEFINE_bool(warmup, true, "Include a warmup bench? (Excluding the warmup may compromise results)");
36 // We draw a big nonAA path to warmup the gpu / cpu
  /external/libjpeg-turbo/
tjbenchtest.java.in 89 runme $JAVA TJBench $OUTDIR/$image 95 -rgb -quiet -benchtime 0.01 -warmup 0 -${dct}dct $YUVARG
102 runme $JAVA TJBench $OUTDIR/$image 95 -rgb -tile -quiet -benchtime 0.01 -warmup 0 ${dctarg} $YUVARG
110 runme $JAVA TJBench $OUTDIR/$image 95 -rgb -tile -quiet -benchtime 0.01 -warmup 0 -fastupsample ${dctarg} $YUVARG
121 runme $JAVA TJBench $OUTDIR/${basename}_${samp}_Q95.jpg -tile -quiet -benchtime 0.01 -warmup 0 ${dctarg} $YUVARG
129 runme $JAVA TJBench $OUTDIR/${basename}_${samp}_Q95.jpg -tile -quiet -benchtime 0.01 -warmup 0 -fastupsample ${dctarg} $YUVARG
143 runme $JAVA TJBench $OUTDIR/${basename}_${samp}_Q95.jpg -scale ${scalearg} -quiet -benchtime 0.01 -warmup 0 $YUVARG
162 runme $JAVA TJBench $OUTDIR/${basename}_${samp}_Q95.jpg -$xform -tile -quiet -benchtime 0.01 -warmup 0 $YUVARG
171 runme $JAVA TJBench $OUTDIR/${basename}_${samp}_Q95.jpg -$xform -tile -quiet -benchtime 0.01 -warmup 0 -fastupsample $YUVARG
183 runme $JAVA TJBench $OUTDIR/${basename}_${samp}_Q95.jpg -$xform -tile -quiet -benchtime 0.01 -warmup 0 -grayscale $YUVARG
198 runme $JAVA TJBench $OUTDIR/${basename}_${samp}_Q95.jpg -$xform -scale ${scalearg} -quiet -benchtime 0.01 -warmup 0 $YUVAR
    [all...]
  /frameworks/av/services/audioflinger/
FastThread.cpp 33 // to wait for warmup
34 #define MAX_WARMUP_CYCLES 10 // maximum number of loop cycles to wait for warmup
232 // do not start pulling data from tracks and mixing until warmup is complete.
233 // Warmup is considered complete after the earlier of:
247 ALOGV("warmup cycle %d in range: %.03f ms", mWarmupCycles, nsec * 1e-9);
250 ALOGV("warmup cycle %d out of range: %.03f ms", mWarmupCycles, nsec * 1e-9);
FastThreadDumpState.h 38 struct timespec mMeasuredWarmupTs; // measured warmup time
39 uint32_t mWarmupCycles; // number of loop cycles required to warmup
  /external/autotest/server/cros/network/
netperf_session.py 57 @param warmup_client: bool True iff we should warmup the client rate
89 logging.warning('Did not completely warmup the WiFi part.')
  /external/autotest/client/tests/tracing_microbenchmark/
tracers.py 19 def warmup(self, buffer_size_kb): member in class:ftrace

Completed in 899 milliseconds

12 3 4 5 6