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

1 2

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
reporter.cc 57 double new_time = real_accumulated_time * GetTimeUnitMultiplier(time_unit);
63 double new_time = cpu_accumulated_time * GetTimeUnitMultiplier(time_unit);
benchmark_api_internal.h 21 TimeUnit time_unit; member in struct:benchmark::internal::Benchmark::Instance
complexity.cc 220 mean_data.time_unit = reports[0].time_unit;
244 stddev_data.time_unit = reports[0].time_unit;
303 double multiplier = GetTimeUnitMultiplier(reports[0].time_unit);
317 rms.time_unit = reports[0].time_unit;
json_reporter.cc 133 << indent << FormatKV("time_unit", GetTimeUnitString(run.time_unit));
142 out << indent << FormatKV("time_unit", GetTimeUnitString(run.time_unit));
csv_reporter.cc 36 "time_unit", "bytes_per_second", "items_per_second", "label",
116 Out << GetTimeUnitString(run.time_unit);
  /device/google/marlin/time-services/
time_genoff.h 60 typedef enum time_unit { enum
82 * if time_unit = TIME_MSEC, TIME_SECS then ts_val = (uint64_t *)
83 * if time_unit = TIME_JULIAN then ts_val = (struct tm *)
  /hardware/qcom/msm8998/time-services/
time_genoff.h 62 typedef enum time_unit { enum
84 * if time_unit = TIME_MSEC, TIME_SECS then ts_val = (uint64_t *)
85 * if time_unit = TIME_JULIAN then ts_val = (struct tm *)
  /art/libartbase/base/
time_utils.h 42 std::string FormatDuration(uint64_t nano_duration, TimeUnit time_unit,
49 uint64_t GetNsToTimeUnitDivisor(TimeUnit time_unit);
time_utils.cc 59 uint64_t GetNsToTimeUnitDivisor(TimeUnit time_unit) {
64 switch (time_unit) {
77 std::string FormatDuration(uint64_t nano_duration, TimeUnit time_unit,
80 uint64_t divisor = GetNsToTimeUnitDivisor(time_unit);
81 switch (time_unit) {
  /external/google-benchmark/src/
reporter.cc 70 double new_time = real_accumulated_time * GetTimeUnitMultiplier(time_unit);
76 double new_time = cpu_accumulated_time * GetTimeUnitMultiplier(time_unit);
benchmark_api_internal.h 21 TimeUnit time_unit; member in struct:benchmark::internal::Benchmark::Instance
complexity.cc 199 double multiplier = GetTimeUnitMultiplier(reports[0].time_unit);
213 rms.time_unit = reports[0].time_unit;
csv_reporter.cc 36 "time_unit", "bytes_per_second", "items_per_second", "label",
116 Out << GetTimeUnitString(run.time_unit);
json_reporter.cc 166 << indent << FormatKV("time_unit", GetTimeUnitString(run.time_unit));
175 out << indent << FormatKV("time_unit", GetTimeUnitString(run.time_unit));
  /external/libcxx/utils/google-benchmark/src/
reporter.cc 70 double new_time = real_accumulated_time * GetTimeUnitMultiplier(time_unit);
76 double new_time = cpu_accumulated_time * GetTimeUnitMultiplier(time_unit);
benchmark_api_internal.h 21 TimeUnit time_unit; member in struct:benchmark::internal::Benchmark::Instance
complexity.cc 199 double multiplier = GetTimeUnitMultiplier(reports[0].time_unit);
213 rms.time_unit = reports[0].time_unit;
csv_reporter.cc 36 "time_unit", "bytes_per_second", "items_per_second", "label",
116 Out << GetTimeUnitString(run.time_unit);
  /external/python/cpython3/Lib/
timeit.py 275 time_unit = None
285 time_unit = a
338 if time_unit is not None:
339 scale = units[time_unit]
343 for scale, time_unit in scales:
347 usec/scale, time_unit))
357 (precision, usec/scale, time_unit),
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/include/benchmark/
reporter.h 48 time_unit(kNanosecond),
67 TimeUnit time_unit; member in struct:benchmark::BenchmarkReporter::Run
72 // specified by 'time_unit'.
78 // specified by 'time_unit'.
  /external/valgrind/massif/
ms_print.in 41 my $time_unit;
388 # Read "time_unit:" line.
390 ($line =~ /^time_unit:\s*(.*)$/) or
391 die("Line $.: missing 'time_unit' line\n");
392 $time_unit = $1;
400 my $time_column = sprintf("%14s", "time($time_unit)");
606 if ($time_unit eq "i") { ($x_label, $x_unit) = i_max_label($end_time) }
607 elsif ($time_unit eq "ms") { ($x_label, $x_unit) = t_max_label($end_time) }
608 elsif ($time_unit eq "B") { ($x_label, $x_unit) = B_max_label($end_time) }
609 else { die "bad time_unit: $time_unit\n";
    [all...]
  /test/vts/utils/python/performance/
benchmark_parser.py 38 "time_unit": "ns"
  /external/tensorflow/tensorflow/python/debug/cli/
cli_shared.py 105 time_unit = force_time_unit
106 return "{:.10g}{}".format(value_us / math.pow(10.0, 3*order), time_unit)
109 time_unit = TIME_UNITS[order]
110 return "{:.3g}{}".format(value_us / math.pow(10.0, 3*order), time_unit)
profile_analyzer_cli.py 51 def __init__(self, profile_datum_list, time_unit=cli_shared.TIME_UNIT_US):
56 time_unit: must be in cli_shared.TIME_UNITS.
63 force_time_unit=time_unit)
68 force_time_unit=time_unit)
74 "Op Time (%s)" % time_unit,
75 "Exec Time (%s)" % time_unit,
324 "--time_unit",
325 dest="time_unit",
347 "--time_unit",
348 dest="time_unit",
    [all...]
  /external/valgrind/include/
pub_tool_xtree.h 197 massif format. time_unit is a string describing the unit used
204 const HChar* time_unit);

Completed in 524 milliseconds

1 2