Home
last modified time | relevance | path

Searched refs:NPENDINGCALLS (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Include/internal/
Dpycore_pystate.h34 #define NPENDINGCALLS 32 macro
38 } calls[NPENDINGCALLS];
/external/python/cpython2/Python/
Dceval.c398 #define NPENDINGCALLS 32 macro
402 } pendingcalls[NPENDINGCALLS];
435 j = (i + 1) % NPENDINGCALLS; in Py_AddPendingCall()
472 for (i=0; i<NPENDINGCALLS; i++) { in Py_MakePendingCalls()
485 pendingfirst = (j + 1) % NPENDINGCALLS; in Py_MakePendingCalls()
525 #define NPENDINGCALLS 32 macro
529 } pendingcalls[NPENDINGCALLS];
544 j = (i + 1) % NPENDINGCALLS; in Py_AddPendingCall()
577 pendingfirst = (i + 1) % NPENDINGCALLS; in Py_MakePendingCalls()
/external/python/cpython3/Python/
Dceval.c444 int j = (i + 1) % NPENDINGCALLS; in _push_pending_call()
466 pending->first = (i + 1) % NPENDINGCALLS; in _pop_pending_call()
560 for (int i=0; i<NPENDINGCALLS; i++) { in make_pending_calls()