Searched refs:callcount (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Modules/ |
D | _lsprof.c | 81 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.c | 14 long callcount; member 25 long callcount; /* how many times this was called */ member 193 self->callcount = 0; in newProfilerEntry() 226 self->callcount = 0; in newSubEntry() 299 entry->callcount++; in Stop() 310 ++subentry->callcount; in Stop() 508 sentry->callcount, in statsForSubEntry() 525 if (entry->callcount == 0) in statsForEntry() 546 entry->callcount, in statsForEntry()
|
/external/python/cpython2/Lib/ |
D | cProfile.py | 101 nc = entry.callcount # ncalls column of pstats (before '/') 117 nc = subentry.callcount
|
/external/python/cpython3/Lib/ |
D | cProfile.py | 61 nc = entry.callcount # ncalls column of pstats (before '/') 77 nc = subentry.callcount
|
/external/curl/tests/server/ |
D | sws.c | 120 int callcount; /* times ProcessRequest() gets called */ member 367 req->callcount++; in ProcessRequest() 370 req->callcount > 1?" [CONTINUED]":""); in ProcessRequest() 859 req->callcount = 0; in init_httprequest()
|
/external/deqp/modules/gles3/performance/ |
D | es3pDepthTests.cpp | 733 …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/ |
D | test_base_events.py | 878 callcount = 0 887 nonlocal callcount 888 callcount += 1 902 self.assertEqual(callcount, 1)
|
/external/libevent/test/ |
D | regress.c | 103 unsigned int callcount; member 137 switch (arg->callcount++) { in basic_read_cb() 2018 args.callcount = 0; in test_event_base_new()
|
/external/python/cpython2/Objects/ |
D | unicodeobject.c | 703 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()
|