Home
last modified time | relevance | path

Searched refs:PyNumber_ToBase (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Modules/
Dfuture_builtins.c35 return PyNumber_ToBase(v, 16); in builtin_hex()
47 return PyNumber_ToBase(v, 8); in builtin_oct()
/external/python/cpython2/Include/
Dabstract.h1034 PyAPI_FUNC(PyObject *) PyNumber_ToBase(PyObject *n, int base);
/external/python/cpython3/Include/
Dabstract.h829 PyAPI_FUNC(PyObject *) PyNumber_ToBase(PyObject *n, int base);
/external/python/cpython3/Python/
Dbltinmodule.c486 return PyNumber_ToBase(number, 2); in builtin_bin()
1539 return PyNumber_ToBase(number, 16); in builtin_hex()
1768 return PyNumber_ToBase(number, 8); in builtin_oct()
/external/python/cpython3/PC/
Dpython3.def415 PyNumber_ToBase=python37.PyNumber_ToBase
/external/python/cpython3/Doc/c-api/
Dnumber.rst257 .. c:function:: PyObject* PyNumber_ToBase(PyObject *n, int base)
/external/python/cpython2/Doc/c-api/
Dnumber.rst293 .. c:function:: PyObject* PyNumber_ToBase(PyObject *n, int base)
/external/python/cpython3/Doc/data/
Drefcounts.dat1514 PyNumber_ToBase:PyObject*::+1:
1515 PyNumber_ToBase:PyObject*:n:0:
1516 PyNumber_ToBase:int:base::
/external/python/cpython3/Objects/
Dabstract.c1481 PyNumber_ToBase(PyObject *n, int base) in PyNumber_ToBase() function
Dunicodeobject.c14174 result = PyNumber_ToBase(val, 10); in _PyUnicode_FormatLong()
14178 result = PyNumber_ToBase(val, 8); in _PyUnicode_FormatLong()
14183 result = PyNumber_ToBase(val, 16); in _PyUnicode_FormatLong()
/external/python/cpython2/Python/
Dbltinmodule.c220 return PyNumber_ToBase(v, 2); in builtin_bin()
/external/python/cpython2/Objects/
Dabstract.c1816 PyNumber_ToBase(PyObject *n, int base) function