Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dlongobject.h99 PyAPI_FUNC(PyObject *) _PyLong_FromBytes(const char *, Py_ssize_t, int);
/external/python/cpython3/Objects/
Dabstract.c1364 return _PyLong_FromBytes(PyBytes_AS_STRING(o), in PyNumber_Long()
1368 return _PyLong_FromBytes(PyByteArray_AS_STRING(o), in PyNumber_Long()
1380 result = _PyLong_FromBytes(PyBytes_AS_STRING(bytes), in PyNumber_Long()
Dlongobject.c2463 _PyLong_FromBytes(const char *s, Py_ssize_t len, int base) in _PyLong_FromBytes() function
4835 return _PyLong_FromBytes(string, Py_SIZE(x), (int)base); in long_new()