Home
last modified time | relevance | path

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

/third_party/python/Include/
Dlongobject.h106 PyAPI_FUNC(PyObject *) _PyLong_FromBytes(const char *, Py_ssize_t, int);
/third_party/python/Objects/
Dabstract.c1613 return _PyLong_FromBytes(PyBytes_AS_STRING(o), in PyNumber_Long()
1617 return _PyLong_FromBytes(PyByteArray_AS_STRING(o), in PyNumber_Long()
1629 result = _PyLong_FromBytes(PyBytes_AS_STRING(bytes), in PyNumber_Long()
Dlongobject.c2503 _PyLong_FromBytes(const char *s, Py_ssize_t len, int base) in _PyLong_FromBytes() function
4994 return _PyLong_FromBytes(string, Py_SIZE(x), (int)base); in long_new_impl()