Home
last modified time | relevance | path

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

/external/python/cpython3/Include/internal/
Dceval.h19 #define NPENDINGCALLS 32 macro
23 } 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.c347 j = (i + 1) % NPENDINGCALLS; in Py_AddPendingCall()
399 for (i=0; i<NPENDINGCALLS; i++) { in Py_MakePendingCalls()
412 _PyRuntime.ceval.pending.first = (j + 1) % NPENDINGCALLS; in Py_MakePendingCalls()