Home
last modified time | relevance | path

Searched refs:NUM_PARTIALS (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
Dmathmodule.c901 #define NUM_PARTIALS 32 /* initial partials array size, on stack */ macro
965 Py_ssize_t i, j, n = 0, m = NUM_PARTIALS; in math_fsum()
966 double x, y, t, ps[NUM_PARTIALS], *p = ps; in math_fsum()
978 assert((m == NUM_PARTIALS && p == ps) || in math_fsum()
979 (m > NUM_PARTIALS && p != NULL)); in math_fsum()
1079 #undef NUM_PARTIALS
/external/python/cpython3/Modules/
Dmathmodule.c1228 #define NUM_PARTIALS 32 /* initial partials array size, on stack */ macro
1304 Py_ssize_t i, j, n = 0, m = NUM_PARTIALS; in math_fsum()
1305 double x, y, t, ps[NUM_PARTIALS], *p = ps; in math_fsum()
1317 assert((m == NUM_PARTIALS && p == ps) || in math_fsum()
1318 (m > NUM_PARTIALS && p != NULL)); in math_fsum()
1418 #undef NUM_PARTIALS