Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dintobject.c67 #ifndef NSMALLPOSINTS
68 #define NSMALLPOSINTS 257 macro
73 #if NSMALLNEGINTS + NSMALLPOSINTS > 0
79 static PyIntObject *small_ints[NSMALLNEGINTS + NSMALLPOSINTS];
90 #if NSMALLNEGINTS + NSMALLPOSINTS > 0 in PyInt_FromLong()
91 if (-NSMALLNEGINTS <= ival && ival < NSMALLPOSINTS) { in PyInt_FromLong()
1457 #if NSMALLNEGINTS + NSMALLPOSINTS > 0 in _PyInt_Init()
1458 for (ival = -NSMALLNEGINTS; ival < NSMALLPOSINTS; ival++) { in _PyInt_Init()
1505 #if NSMALLNEGINTS + NSMALLPOSINTS > 0 in PyInt_ClearFreeList()
1507 p->ob_ival < NSMALLPOSINTS && in PyInt_ClearFreeList()
[all …]
/external/python/cpython3/Objects/
Dlongobject.c18 #ifndef NSMALLPOSINTS
19 #define NSMALLPOSINTS 257 macro
37 #if NSMALLNEGINTS + NSMALLPOSINTS > 0
43 static PyLongObject small_ints[NSMALLNEGINTS + NSMALLPOSINTS];
52 assert(-NSMALLNEGINTS <= ival && ival < NSMALLPOSINTS); in get_small_int()
64 do if (-NSMALLNEGINTS <= ival && ival < NSMALLPOSINTS) { \
73 if (-NSMALLNEGINTS <= ival && ival < NSMALLPOSINTS) { in maybe_small_long()
5465 #if NSMALLNEGINTS + NSMALLPOSINTS > 0 in _PyLong_Init()
5469 for (ival = -NSMALLNEGINTS; ival < NSMALLPOSINTS; ival++, v++) { in _PyLong_Init()
5518 #if NSMALLNEGINTS + NSMALLPOSINTS > 0 in PyLong_Fini()
[all …]
/external/python/cpython3/Misc/NEWS.d/
D3.6.0b1.rst20 NSMALLPOSINTS = 0.
D3.5.3rc1.rst240 NSMALLPOSINTS = 0.