Home
last modified time | relevance | path

Searched refs:NSMALLNEGINTS (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dintobject.c70 #ifndef NSMALLNEGINTS
71 #define NSMALLNEGINTS 5 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()
92 v = small_ints[ival + NSMALLNEGINTS]; in PyInt_FromLong()
1462 #if NSMALLNEGINTS + NSMALLPOSINTS > 0 in _PyInt_Init()
1463 for (ival = -NSMALLNEGINTS; ival < NSMALLPOSINTS; ival++) { in _PyInt_Init()
1471 small_ints[ival + NSMALLNEGINTS] = v; in _PyInt_Init()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dintobject.c70 #ifndef NSMALLNEGINTS
71 #define NSMALLNEGINTS 5 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()
92 v = small_ints[ival + NSMALLNEGINTS]; in PyInt_FromLong()
1431 #if NSMALLNEGINTS + NSMALLPOSINTS > 0 in _PyInt_Init()
1432 for (ival = -NSMALLNEGINTS; ival < NSMALLPOSINTS; ival++) { in _PyInt_Init()
1440 small_ints[ival + NSMALLNEGINTS] = v; in _PyInt_Init()
[all …]