Searched refs:NSMALLPOSINTS (Results 1 – 5 of 5) sorted by relevance
24 #define NSMALLPOSINTS _PY_NSMALLPOSINTS macro35 #define IS_SMALL_INT(ival) (-NSMALLNEGINTS <= (ival) && (ival) < NSMALLPOSINTS)36 #define IS_SMALL_UINT(ival) ((ival) < NSMALLPOSINTS)5709 for (Py_ssize_t i=0; i < NSMALLNEGINTS + NSMALLPOSINTS; i++) { in _PyLong_Init()5742 for (Py_ssize_t i = 0; i < NSMALLNEGINTS + NSMALLPOSINTS; i++) { in _PyLong_Fini()
145 ``NSMALLPOSINTS`` macros: macros should now be modified manually in
20 NSMALLPOSINTS = 0.
240 NSMALLPOSINTS = 0.
157 …ints static PyLongObject small_ints[NSMALLNEGINTS + NSMALLPOSINTS]