Searched refs:_PyLong_Format (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Include/ |
D | longobject.h | 124 PyAPI_FUNC(PyObject *) _PyLong_Format(PyObject *aa, int base, int addL, int newstyle);
|
/external/python/cpython3/Include/ |
D | longobject.h | 176 PyAPI_FUNC(PyObject *) _PyLong_Format(PyObject *obj, int base);
|
/external/python/cpython2/Objects/stringlib/ |
D | formatter.h | 1410 #define long_format _PyLong_Format 1419 return _PyLong_Format(value, base, 0, 1); in long_format()
|
/external/python/cpython2/Objects/ |
D | longobject.c | 1455 _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()
|
D | abstract.c | 1824 res = _PyLong_Format(index, base, 0, 1);
|
/external/python/cpython3/Python/ |
D | formatter_unicode.c | 956 tmp = _PyLong_Format(value, base); in format_long_internal()
|
D | hamt.c | 1215 tmp2 = _PyLong_Format(tmp1, 2); in hamt_node_bitmap_dump()
|
/external/python/cpython3/Objects/ |
D | abstract.c | 1489 res = _PyLong_Format(index, base); in PyNumber_ToBase()
|
D | longobject.c | 1939 _PyLong_Format(PyObject *obj, int base) in _PyLong_Format() function
|
/external/python/cpython3/Modules/ |
D | _tkinter.c | 948 hexstr = _PyLong_Format(value, 16); in asBignumObj()
|
/external/python/cpython2/Modules/ |
D | _tkinter.c | 1059 hexstr = _PyLong_Format(value, 16, 0, 1); in asBignumObj()
|