Home
last modified time | relevance | path

Searched refs:plong (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Objects/
Dobject.c1049 PyObject *plong; /* converted to Python long */ in _Py_HashDouble() local
1050 plong = PyLong_FromDouble(v); in _Py_HashDouble()
1051 if (plong == NULL) in _Py_HashDouble()
1053 x = PyObject_Hash(plong); in _Py_HashDouble()
1054 Py_DECREF(plong); in _Py_HashDouble()
/external/python/cpython2/Modules/
D_testcapimodule.c1848 PyObject *plong = PyLong_FromLong(testcases[i].input); in test_long_numbits() local
1849 size_t nbits = _PyLong_NumBits(plong); in test_long_numbits()
1850 int sign = _PyLong_Sign(plong); in test_long_numbits()
1852 Py_DECREF(plong); in test_long_numbits()
/external/python/cpython3/Modules/
D_testcapimodule.c2112 PyObject *plong; in test_long_numbits() local
2114 plong = PyLong_FromLong(testcases[i].input); in test_long_numbits()
2115 if (plong == NULL) in test_long_numbits()
2117 nbits = _PyLong_NumBits(plong); in test_long_numbits()
2118 sign = _PyLong_Sign(plong); in test_long_numbits()
2120 Py_DECREF(plong); in test_long_numbits()