Home
last modified time | relevance | path

Searched refs:NSMALLPOSINTS (Results 1 – 1 of 1) 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()
1454 #if NSMALLNEGINTS + NSMALLPOSINTS > 0 in _PyInt_Init()
1455 for (ival = -NSMALLNEGINTS; ival < NSMALLPOSINTS; ival++) { in _PyInt_Init()
1502 #if NSMALLNEGINTS + NSMALLPOSINTS > 0 in PyInt_ClearFreeList()
1504 p->ob_ival < NSMALLPOSINTS && in PyInt_ClearFreeList()
[all …]