Home
last modified time | relevance | path

Searched refs:callcount (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Modules/
D_lsprof.c81 long callcount; member
92 long callcount; /* how many times this was called */ member
246 self->callcount = 0; in newProfilerEntry()
279 self->callcount = 0; in newSubEntry()
352 entry->callcount++; in Stop()
363 ++subentry->callcount; in Stop()
556 sentry->callcount, in statsForSubEntry()
573 if (entry->callcount == 0) in statsForEntry()
594 entry->callcount, in statsForEntry()
/external/python/cpython3/Modules/
D_lsprof.c71 long callcount; member
82 long callcount; /* how many times this was called */ member
245 self->callcount = 0; in newProfilerEntry()
278 self->callcount = 0; in newSubEntry()
351 entry->callcount++; in Stop()
362 ++subentry->callcount; in Stop()
553 sentry->callcount, in statsForSubEntry()
570 if (entry->callcount == 0) in statsForEntry()
591 entry->callcount, in statsForEntry()
/external/python/cpython3/Lib/
DcProfile.py61 nc = entry.callcount # ncalls column of pstats (before '/')
77 nc = subentry.callcount
/external/python/cpython2/Lib/
DcProfile.py101 nc = entry.callcount # ncalls column of pstats (before '/')
117 nc = subentry.callcount
/external/curl/tests/server/
Dsws.c123 int callcount; /* times ProcessRequest() gets called */ member
482 req->callcount++; in ProcessRequest()
485 req->callcount > 1?" [CONTINUED]":""); in ProcessRequest()
975 req->callcount = 0; in init_httprequest()
/external/deqp/modules/gles3/performance/
Des3pDepthTests.cpp733 …Sample renderSample (const RenderData& occluder, const RenderData& occluded, int callcount) const;
796 …untCase::renderSample (const RenderData& occluder, const RenderData& occluded, int callcount) const in renderSample()
817 render(occluded, callcount); in renderSample()
826 sample.workload = callcount; in renderSample()
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_base_events.py861 callcount = 0
870 nonlocal callcount
871 callcount += 1
885 self.assertEqual(callcount, 1)
/external/libevent/test/
Dregress.c105 unsigned int callcount; member
139 switch (arg->callcount++) { in basic_read_cb()
1935 args.callcount = 0; in test_event_base_new()
/external/python/cpython2/Objects/
Dunicodeobject.c703 Py_ssize_t callcount = 0; in PyUnicode_FromFormatV() local
743 ++callcount; in PyUnicode_FromFormatV()
748 if (callcount) { in PyUnicode_FromFormatV()
749 callresults = PyObject_Malloc(sizeof(PyObject *)*callcount); in PyUnicode_FromFormatV()