Home
last modified time | relevance | path

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

/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/python/cpython3/Lib/
Dprofile.py527 total_calls = 0.0
532 total_calls += cc
537 print("total # calls =", total_calls)
538 if total_calls != m + 1:
539 raise ValueError("internal error: total calls = %d" % total_calls)
545 mean = (reported_time - elapsed_noprofile) / 2.0 / total_calls
Dpstats.py122 self.total_calls = 0
160 self.total_calls += nc
175 self.total_calls += item.total_calls
422 print(indent, self.total_calls, "function calls", end=' ', file=self.stream)
423 if self.total_calls != self.prim_calls:
/external/libevent/test/
Dregress_bufferevent.c942 int total_calls; member
961 ++res->total_calls; in bev_timeout_event_cb()
1049 tt_want(res1.total_calls == 2); in test_bufferevent_timeouts()
1052 tt_want(res2.total_calls == !(use_pair && !use_filter)); in test_bufferevent_timeouts()