HomeSort by relevance Sort by last modified time
    Searched refs:total_time (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/curl/docs/examples/
fileupload.c 36 double speed_upload, total_time; local
76 curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME, &total_time);
79 speed_upload, total_time);
  /system/extras/tests/pagingtest/
thrashing_test.c 20 struct timeval begin_time, end_time, elapsed_time, total_time; local
25 timerclear(&total_time);
68 timeradd(&total_time, &elapsed_time, &total_time);
74 (1024 * 1024 * (total_time.tv_sec * USEC_PER_SEC + total_time.tv_usec)));
  /hardware/libhardware/modules/consumerir/
consumerir.c 43 int total_time = 0; local
47 total_time += pattern[i];
50 ALOGD("transmit for %d uS at %d Hz", total_time, carrier_freq);
51 usleep(total_time);
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_cpu.c 53 get_cpu_stats(unsigned cpu_index, uint64_t *busy_time, uint64_t *total_time)
73 *total_time = filetime_to_scalar(ftNow) - filetime_to_scalar(ftCreation);
79 *total_time *= sysInfo.dwNumberOfProcessors;
90 get_cpu_stats(unsigned cpu_index, uint64_t *busy_time, uint64_t *total_time)
123 *total_time = *busy_time;
127 *total_time += v[i];
  /external/webrtc/webrtc/base/
profiler_unittest.cc 47 EXPECT_NEAR(kWaitSec * 2, event->total_time(), kTolerance * 2);
48 EXPECT_DOUBLE_EQ(event->mean(), event->total_time() / event->event_count());
98 EXPECT_NEAR(kWaitSec * 2, event1->total_time(), kTolerance * 2);
100 event1->total_time() / event1->event_count());
  /cts/tools/dasm/src/java_cup/
Main.java 674 long total_time = final_time - start_time; local
679 + timestr(final_time-start_time, total_time));
681 + timestr(prelim_end-start_time, total_time));
683 + timestr(parse_end-prelim_end, total_time) );
686 + timestr(check_end-parse_end, total_time));
689 + timestr(build_end-check_end, total_time));
692 + timestr(nullability_end-check_end, total_time));
695 + timestr(first_end-nullability_end, total_time));
698 + timestr(machine_end-first_end, total_time));
701 + timestr(table_end-machine_end, total_time));
    [all...]
  /frameworks/base/core/proto/android/os/
kernelwake.proto 44 optional int64 total_time = 7;
  /external/autotest/client/profilers/powertop/src/
cpufreqstats.c 97 uint64_t total_time = 0; local
152 total_time += delta[ret].count;
159 if (!total_time)
169 sprintf(cpufreqstrings[ret+1], "%6s %5.1f%%\n", HzToHuman(delta[ret].frequency), delta[ret].count * 100.0 / total_time);
170 if (delta[ret].count > total_time/2)
  /external/libevent/test/
bench_httpclient.c 57 struct timeval total_time = {0,0}; variable in typeref:struct:timeval
93 evutil_timeradd(&diff, &total_time, &total_time);
207 usec = total_time.tv_sec * (long long)1000000 + total_time.tv_usec;
  /external/autotest/client/site_tests/power_HotCPUSuspend/
power_HotCPUSuspend.py 42 total_time = sum(diff_times[field] for field in PROC_STAT_CPU_FIELDS)
44 return float(total_time - idle_time) / total_time
  /system/extras/tests/sdcard/
testcase.cpp 150 char total_time[80]; local
152 snprintf(total_time, sizeof(total_time), "%s_total", mName);
153 mTestTimer = new StopWatch(total_time, 1);
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
time_log.h 120 const float total_time = local
124 total_time, average_running_total);
  /external/lisa/tools/analysis/
runtime.py 31 self.total_time = np.float64(0.0)
106 rp.total_time += runtime
107 if debug and dpid == prevpid: print 'adding to total time {}, new total {}'.format(runtime, rp.total_time)
151 result = sorted(runpids.items(), key=lambda x: x[1].total_time, reverse=True)
163 cpupc = (rd.total_time / testtime) * 100
168 "\t" + str(end).ljust(15)[:15] + "\t" + str(rd.total_time).ljust(15) + \
  /art/runtime/base/
timing_logger.cc 181 DCHECK_EQ(ret.data_[open_idx].total_time, 0U);
182 ret.data_[open_idx].total_time += time;
217 uint64_t total_time = timing_data.GetTotalTime(i); local
221 total_time -= total_time % mod_fraction;
228 if (exclusive_time != total_time) {
229 os << "/" << FormatDuration(total_time, tu, kFractionalDigits);
timing_logger.h 131 return data_[idx].total_time;
141 CalculatedDataPoint() : total_time(0), exclusive_time(0) {}
142 uint64_t total_time; member in struct:art::TimingLogger::TimingData::CalculatedDataPoint
  /toolchain/binutils/binutils-2.27/gprof/
hist.c 58 static double total_time; /* Total time for all routines. */
390 total_time += count_time;
437 total_time -= credit;
443 DBG (SAMPLEDEBUG, printf ("[assign_samples] total_time %f\n",
444 total_time));
473 if (total_time > 0.0)
476 100.0 / total_time, total_time / hz, hist_dimension);
484 if (total_time <= 0.0)
489 total_time = 1.0
57 static double total_time; \/* Total time for all routines. *\/ variable
    [all...]
  /external/autotest/client/site_tests/graphics_SanAngeles/src/
app-linux.c 226 double total_time = 0.0; local
253 total_time += (timeAfter.tv_sec - timeNow.tv_sec) +
261 fprintf(stdout, "frame_rate = %.1f\n", num_frames / total_time);
  /external/ltp/testcases/kernel/io/disktest/
timer.c 76 time_t total_time = 0; local
138 total_time = env->global_stats.rtime
146 ((double)(total_time) / (double)(tmp_io_count)));
  /external/autotest/server/hosts/
moblab_host.py 312 total_time = 0
314 total_time < DUT_VERIFY_TIMEOUT):
315 total_time = total_time + DUT_VERIFY_SLEEP_SECS
  /external/tensorflow/tensorflow/python/grappler/
cost_analyzer.h 57 int64* total_time);
  /external/v8/src/
counters.cc 208 entry.SetTotal(total_time, total_call_count);
212 Entry("Total", total_time, total_call_count).Print(os);
222 total_time += counter->time();
253 V8_NOINLINE void SetTotal(base::TimeDelta total_time,
255 if (total_time.InMicroseconds() == 0) {
258 time_percent_ = 100.0 * time_ / total_time.InMicroseconds();
272 base::TimeDelta total_time; member in class:v8::internal::RuntimeCallStatEntries
  /external/eigen/bench/spbench/
spbenchsolver.h 217 double total_time; local
250 total_time = solve_time + compute_time;
251 statbuf << " <TOTAL> " << total_time << "</TOTAL>\n"; local
252 std::cout<< "TOTAL TIME : " << total_time <<std::endl;
270 if(!best_time_val || (best_time_val > total_time))
272 best_time_val = total_time;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
pybench.py 374 total_time = reduce(operator.add, self.times, 0.0)
375 avg_time = total_time / float(runs)
376 operation_avg = total_time / float(runs
383 return min_time, avg_time, total_time, operation_avg, min_overhead
581 total_time = reduce(operator.add, self.roundtimes, 0.0)
582 avg_time = total_time / float(runs)
615 total_time,
667 total_time,
    [all...]
  /external/python/cpython2/Tools/pybench/
pybench.py 374 total_time = reduce(operator.add, self.times, 0.0)
375 avg_time = total_time / float(runs)
376 operation_avg = total_time / float(runs
383 return min_time, avg_time, total_time, operation_avg, min_overhead
581 total_time = reduce(operator.add, self.roundtimes, 0.0)
582 avg_time = total_time / float(runs)
615 total_time,
667 total_time,
  /external/python/cpython3/Tools/pybench/
pybench.py 383 total_time = sum(self.times)
384 avg_time = total_time / float(runs)
385 operation_avg = total_time / float(runs
392 return min_time, avg_time, total_time, operation_avg, min_overhead
587 total_time = sum(self.roundtimes)
588 avg_time = total_time / float(runs)
620 total_time,
671 total_time,

Completed in 871 milliseconds

1 2 3