Home
last modified time | relevance | path

Searched refs:PyFPE_counter (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Include/
Dpyfpe.h133 extern int PyFPE_counter;
137 if (!PyFPE_counter++ && setjmp(PyFPE_jbuf)) { \
139 PyFPE_counter = 0; \
164 #define PyFPE_END_PROTECT(v) PyFPE_counter -= (int)PyFPE_dummy(&(v));
/external/python/cpython3/Python/
Dpyfpe.c9 int PyFPE_counter; variable
/external/python/cpython2/Python/
Dpyfpe.c13 int PyFPE_counter = 0; variable
/external/python/cpython2/Modules/
Dfpectlmodule.c85 static int PyFPE_counter = 0; variable
282 if(PyFPE_counter) { in sigfpe_handler()