HomeSort by relevance Sort by last modified time
    Searched refs:num_total (Results 1 - 14 of 14) sorted by null

  /cts/apps/CameraITS/tests/scene1/
test_format_combos.py 104 num_total = len(reqs)*len(fmt_combos)*len(burst_lens)
105 num_not_run = num_total - num_success - num_fail
107 print "\nFailures (%d / %d):" % (num_fail, num_total)
110 print "\nSuccesses (%d / %d):" % (num_success, num_total)
114 print "\nNumber of tests not run: %d / %d" % (num_not_run, num_total)
119 assert num_success == num_total
  /external/toolchain-utils/crosperf/
experiment_status.py 18 self.num_total = len(self.experiment.benchmark_runs)
23 def _GetProgressBar(self, num_complete, num_total):
24 ret = 'Done: %s%%' % int(100.0 * num_complete / num_total)
28 num_complete_chars = bar_length * num_complete / num_total
52 # num_jobs_not_yet_started = (num_total - num_complete - 1)
67 eta_seconds = (float(self.num_total - self.experiment.num_complete - 1) *
84 self.num_total))
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe.h 38 LossAccount() : num_total(0), num_lost(0) {}
39 LossAccount(size_t num_total, size_t num_lost)
40 : num_total(num_total), num_lost(num_lost) {}
44 size_t num_total; member in struct:webrtc::testing::bwe::LossAccount
bwe.cc 264 num_total += rhs.num_total;
268 num_total -= rhs.num_total;
273 if (num_total == 0)
275 return static_cast<float>(num_lost) / num_total;
bwe_unittest.cc 120 EXPECT_EQ(loss_account_.num_total, kTotal);
126 EXPECT_EQ(loss_account_.num_total, 0UL);
  /external/toolchain-utils/crb/
crb_driver.py 130 def GetProgressBar(num_done, num_total):
131 ret = 'Done: %s%%' % int(100.0 * num_done / num_total)
135 num_done_chars = bar_length * num_done / num_total
142 def GetProgressString(start_time, num_remain, num_total):
146 eta_seconds = float(num_remain) * elapsed_time / (num_total - num_remain)
155 strings.append(GetProgressBar(num_total - num_remain, num_total))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
inspect.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
inspect.py     [all...]
  /external/python/cpython2/Lib/
inspect.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
inspect.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
inspect.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
inspect.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
inspect.py     [all...]
  /external/libtextclassifier/smartselect/
feature-processor.cc 459 int num_total = 0; local
470 ++num_total;
474 return static_cast<float>(num_supported) / static_cast<float>(num_total);

Completed in 592 milliseconds