Home
last modified time | relevance | path

Searched refs:total_calls (Results 1 – 4 of 4) sorted by relevance

/external/libbrillo/brillo/message_loops/
Dmessage_loop_unittest.cc306 int total_calls = 0; in TYPED_TEST() local
313 [this, &timeout_called, &total_calls, &timeout_callback, &timeout_task] { in TYPED_TEST()
315 total_calls++; in TYPED_TEST()
317 if (total_calls > 100) in TYPED_TEST()
328 auto fd_callback = [this, &pipes, &reads, &total_calls](int i) { in TYPED_TEST()
330 total_calls++; in TYPED_TEST()
333 if (total_calls > 100) in TYPED_TEST()
350 EXPECT_GT(total_calls, 100); in TYPED_TEST()
/external/python/cpython2/Lib/
Dprofile.py549 total_calls = 0.0
554 total_calls += cc
559 print "total # calls =", total_calls
560 if total_calls != m + 1:
561 raise ValueError("internal error: total calls = %d" % total_calls)
567 mean = (reported_time - elapsed_noprofile) / 2.0 / total_calls
Dpstats.py89 self.total_calls = 0
129 self.total_calls += nc
144 self.total_calls += other.total_calls
351 print >> self.stream, indent, self.total_calls, "function calls",
352 if self.total_calls != self.prim_calls:
/external/fio/
Dgettime.c102 unsigned long total_calls = 0; in fio_dump_gtod() local
114 total_calls += log->calls; in fio_dump_gtod()
118 printf("Total %lu gettimeofday\n", total_calls); in fio_dump_gtod()