Searched refs:NSMALLNEGINTS (Results 1 – 3 of 3) sorted by relevance
23 #define NSMALLNEGINTS _PY_NSMALLNEGINTS macro35 #define IS_SMALL_INT(ival) (-NSMALLNEGINTS <= (ival) && (ival) < NSMALLPOSINTS)5709 for (Py_ssize_t i=0; i < NSMALLNEGINTS + NSMALLPOSINTS; i++) { in _PyLong_Init()5710 sdigit ival = (sdigit)i - NSMALLNEGINTS; in _PyLong_Init()5742 for (Py_ssize_t i = 0; i < NSMALLNEGINTS + NSMALLPOSINTS; i++) { in _PyLong_Fini()
144 small integers at build time by overriding ``NSMALLNEGINTS`` and
157 …_ints static PyLongObject small_ints[NSMALLNEGINTS + NSMALLPOSINT…