Home
last modified time | relevance | path

Searched refs:_PyInt_Format (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Include/
Dintobject.h73 PyAPI_FUNC(PyObject*) _PyInt_Format(PyIntObject* v, int base, int newstyle);
/external/python/cpython2/Objects/
Dintobject.c1048 return _PyInt_Format(v, 8, 0); in int_oct()
1054 return _PyInt_Format(v, 16, 0); in int_hex()
1188 _PyInt_Format(PyIntObject *v, int base, int newstyle) in _PyInt_Format() function
Dabstract.c1826 res = _PyInt_Format((PyIntObject*)index, base, 1);
/external/python/cpython2/Objects/stringlib/
Dformatter.h1441 return _PyInt_Format((PyIntObject*)value, base, 1); in int_format()