Home
last modified time | relevance | path

Searched refs:_PyLong_Format (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Include/
Dlongobject.h124 PyAPI_FUNC(PyObject *) _PyLong_Format(PyObject *aa, int base, int addL, int newstyle);
/external/python/cpython3/Include/
Dlongobject.h176 PyAPI_FUNC(PyObject *) _PyLong_Format(PyObject *obj, int base);
/external/python/cpython2/Objects/stringlib/
Dformatter.h1410 #define long_format _PyLong_Format
1419 return _PyLong_Format(value, base, 0, 1); in long_format()
/external/python/cpython2/Objects/
Dlongobject.c1455 _PyLong_Format(PyObject *aa, int base, int addL, int newstyle) in _PyLong_Format() function
2359 return _PyLong_Format(v, 10, 1, 0); in long_repr()
2365 return _PyLong_Format(v, 10, 0, 0); in long_str()
3996 return _PyLong_Format(v, 8, 1, 0); in long_oct()
4002 return _PyLong_Format(v, 16, 1, 0); in long_hex()
Dabstract.c1827 res = _PyLong_Format(index, base, 0, 1);
/external/python/cpython3/Python/
Dformatter_unicode.c959 tmp = _PyLong_Format(value, base); in format_long_internal()
/external/python/cpython3/Modules/
D_tkinter.c1000 hexstr = _PyLong_Format(value, 16); in asBignumObj()
/external/python/cpython3/Objects/
Dabstract.c1447 res = _PyLong_Format(index, base); in PyNumber_ToBase()
Dlongobject.c1931 _PyLong_Format(PyObject *obj, int base) in _PyLong_Format() function
/external/python/cpython2/Modules/
D_tkinter.c1059 hexstr = _PyLong_Format(value, 16, 0, 1); in asBignumObj()