Home
last modified time | relevance | path

Searched refs:NSMALLPOSINTS (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Objects/
Dlongobject.c24 #define NSMALLPOSINTS _PY_NSMALLPOSINTS macro
35 #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()
/third_party/python/Misc/NEWS.d/
D3.9.0a2.rst145 ``NSMALLPOSINTS`` macros: macros should now be modified manually in
D3.6.0b1.rst20 NSMALLPOSINTS = 0.
D3.5.3rc1.rst240 NSMALLPOSINTS = 0.
/third_party/python/Tools/c-analyzer/
DTODO157 …ints static PyLongObject small_ints[NSMALLNEGINTS + NSMALLPOSINTS]