/external/libcxxabi/test/ |
test_guard.pass.cpp | 20 static int run_count = 0; member in namespace:test1 22 ++run_count; 31 assert(run_count == 1); 33 assert(run_count == 2); 35 assert(run_count == 3); 37 assert(run_count == 3); 45 static int run_count = 0; member in namespace:test2 47 ++run_count; 59 assert(run_count == 1); 61 assert(run_count == 2) 88 static int run_count = 0; member in namespace:test4 109 static int run_count = 0; member in namespace:test5 [all...] |
/external/libchrome/base/ |
callback_helpers_unittest.cc | 18 int run_count = 0; local 20 base::Closure cb = base::Bind(&Increment, &run_count); 21 EXPECT_EQ(0, run_count); 23 EXPECT_EQ(1, run_count); 26 run_count = 0; 28 base::OnceClosure cb2 = base::BindOnce(&Increment, &run_count); 29 EXPECT_EQ(0, run_count); 31 EXPECT_EQ(1, run_count); 36 int run_count = 0; local 38 base::ScopedClosureRunner runner(base::Bind(&Increment, &run_count)); 45 int run_count = 0; local 83 int run_count = 0; local [all...] |
/external/autotest/client/site_tests/platform_DMVerityCorruption/ |
platform_DMVerityCorruption.py | 13 def mod_zerofill_block(self, run_count, backing_path, block_size, 16 run_count, backing_path, block_size, block_count)) 18 run_count = run_count % block_count 19 verity_utils.system(dd_cmd % (backing_path, block_size, run_count)) 21 def mod_Afill_hash_block(self, run_count, backing_path, block_size, 24 run_count, backing_path, block_size, block_count)) 27 dev.seek(run_count * block_size, os.SEEK_CUR)
|
/external/autotest/client/site_tests/platform_DMVerityBitCorruption/ |
platform_DMVerityBitCorruption.py | 17 def mod_tweak_block(self, run_count, backing_path, block_size, 20 run_count, backing_path, block_size, block_count)) 21 run_count = run_count % block_count 23 dev.seek(run_count * block_size + self._adjustment) 25 dev.seek(run_count * block_size + self._adjustment) 29 def mod_tweak_hash_block(self, run_count, backing_path, block_size, 32 run_count, backing_path, block_size, block_count)) 36 dev.seek(run_count * block_size + self._adjustment, os.SEEK_CUR) 40 dev.seek(run_count * block_size + self._adjustment, os.SEEK_CUR [all...] |
/external/swiftshader/third_party/subzero/pydir/ |
wasm-run-torture-tests.py | 123 run_count = 0 variable 131 global run_count 172 run_count += 1 228 .format(run_count, compile_count - run_count, 229 run_count + len(compile_failures) + len(run_failures)))
|
/external/u-boot/test/dm/ |
test-main.c | 133 int run_count; local 151 run_count = 0; 183 run_count += runs; 186 if (test_name && !run_count)
|
/external/libusb/tests/ |
testlib.c | 167 int run_count = 0; local 266 ++run_count; 269 libusb_testlib_logf(&ctx, "Ran %d tests", run_count); 276 return pass_count != run_count;
|
/external/tensorflow/tensorflow/core/platform/ |
test_benchmark.h | 103 void Run(int arg1, int arg2, int* run_count, double* run_seconds);
|
/external/toolchain-utils/crosperf/ |
experiment_runner_unittest.py | 101 run_count = 0 variable in class:ExperimentRunnerTest 144 self.run_count = 0 148 self.run_count = 0 152 self.run_count += 1 177 self.assertEqual(self.run_count, 1) 205 self.assertEqual(self.run_count, 1) 234 self.assertEqual(self.run_count, 1)
|
/external/tensorflow/tensorflow/core/util/ |
stats_calculator.cc | 140 int64_t run_count = run_total_us_.count(); local 147 static_cast<int64_t>(detail.rel_end_us.sum() / run_count); 157 (*node_type_map_times_called)[node_type] += detail.times_called / run_count;
|
/external/tensorflow/tensorflow/core/graph/ |
algorithm_test.cc | 122 int64 run_count = 100; local 125 for (int64 i = 0; i < run_count; ++i) {
|
/external/tensorflow/tensorflow/core/platform/default/ |
test_benchmark.cc | 207 void Benchmark::Run(int arg1, int arg2, int* run_count, double* run_seconds) { 229 *run_count = iters;
|
/external/tensorflow/tensorflow/core/profiler/internal/ |
tfprof_node.h | 95 int64 run_count() const { return exec_.run_count(); } function in class:tensorflow::tfprof::ExecStep 488 int64 run_count(int64 step) const { function in class:tensorflow::tfprof::TFGraphNode 497 return exec->second.run_count(); 501 total_run_count += exec.second.run_count(); 684 return node_.float_ops() * run_count(step); 803 run_count_ += node->run_count(step); 839 int64 run_count() const { return run_count_; } function in class:tensorflow::tfprof::TFMultiGraphNode
|
tfprof_node_show.cc | 34 mutable_proto()->set_run_count(node->run_count(step)); 91 proto().run_count());
|
tfprof_show.cc | 86 node->proto().run_count() < opts.min_occurrence || 214 run = FormatNumber(node->proto().run_count()) + "/" + run;
|
tfprof_node.cc | 76 exec_.set_run_count(exec_.run_count() + 1);
|
tfprof_show_multi.cc | 194 std::get<0>(t->second) + 1, std::get<1>(t->second) + gnode.run_count(),
|
tfprof_op.cc | 309 total_runs += gnode.run_count();
|
/external/v8/tools/ |
run_perf.py | 20 "run_count": <how often will this suite run (optional)>, 63 "run_count": 5, 82 "run_count": 5, 88 "run_count": 3, 363 self.run_count = 10 407 self.run_count = suite.get("run_count", parent.run_count) 408 self.run_count = suite.get("run_count_%s" % arch, self.run_count) [all...] |
/external/autotest/client/cros/ |
verity_utils.py | 263 def mod_nothing(self, run_count, backing_path, block_size, block_count):
|
/external/tensorflow/tensorflow/python/profiler/internal/ |
run_metadata_test.py | 192 self.assertEqual(mm_node.run_count, 4)
|
/external/u-boot/drivers/video/ |
ipu_disp.c | 203 int run_count, int run_src, 213 if ((run_count >= 0x1000) || (offset_count >= 0x1000) || 220 reg = (run_count << 19) | (++run_src << 16) | [all...] |
/external/libchrome/base/task/sequence_manager/ |
sequence_manager_impl_unittest.cc | 1070 int run_count = 0; local [all...] |
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/ |
estimator_test.py | 854 self.run_count = 0 857 self.run_count += 1 864 self.assertEqual(3, hook.run_count) [all...] |