Home
last modified time | relevance | path

Searched refs:_PyLong_FromByteArray (Results 1 – 19 of 19) sorted by relevance

/external/python/cpython2/Modules/_sqlite/
Dutil.c119 return _PyLong_FromByteArray(&value, sizeof(value), in _pysqlite_long_from_int64()
130 return _PyLong_FromByteArray(&value, sizeof(value), in _pysqlite_long_from_int64()
/external/python/cpython3/Modules/_sqlite/
Dutil.c111 return _PyLong_FromByteArray(&value, sizeof(value), in _pysqlite_long_from_int64()
/external/python/cpython2/Include/
Dlongobject.h92 PyAPI_FUNC(PyObject *) _PyLong_FromByteArray(
/external/python/cpython3/Include/
Dlongobject.h140 PyAPI_FUNC(PyObject *) _PyLong_FromByteArray(
/external/python/cpython2/Modules/
D_struct.c764 return _PyLong_FromByteArray((const unsigned char *)p, in bu_longlong()
785 return _PyLong_FromByteArray((const unsigned char *)p, in bu_ulonglong()
994 return _PyLong_FromByteArray((const unsigned char *)p, in lu_longlong()
1015 return _PyLong_FromByteArray((const unsigned char *)p, in lu_ulonglong()
D_randommodule.c502 result = _PyLong_FromByteArray(bytearray, bytes, 1, 0); in random_getrandbits()
D_tkinter.c1243 return _PyLong_FromByteArray((unsigned char *)(void *)&wideValue, in fromWideIntObj()
1279 res = _PyLong_FromByteArray(bytes, numBytes, in fromBignumObj()
DcPickle.c3596 along = _PyLong_FromByteArray(pdata, (size_t)size, in load_counted_long()
/external/python/cpython3/Modules/
D_randommodule.c428 result = _PyLong_FromByteArray((unsigned char *)wordarray, words * 4, in random_getrandbits()
D_tkinter.c1133 return _PyLong_FromByteArray((unsigned char *)(void *)&wideValue, in fromWideIntObj()
1164 res = _PyLong_FromByteArray(bytes, numBytes, in fromBignumObj()
Darraymodule.c2140 pylong = _PyLong_FromByteArray( in array__array_reconstructor_impl()
D_pickle.c4976 value = _PyLong_FromByteArray((unsigned char *)pdata, (size_t)size, in load_counted_long()
/external/python/cpython2/PC/os2emx/
Dpython27.def398 "_PyLong_FromByteArray"
/external/python/cpython2/Objects/
Dlongobject.c524 _PyLong_FromByteArray(const unsigned char* bytes, size_t n, in _PyLong_FromByteArray() function
920 return _PyLong_FromByteArray((unsigned char *)&bytes, in PyLong_FromSsize_t()
931 return _PyLong_FromByteArray((unsigned char *)&bytes, in PyLong_FromSize_t()
/external/python/cpython2/Python/
Dmarshal.c575 return _PyLong_FromByteArray(buf, 8, is_little_endian, 1); in r_long64()
/external/python/cpython3/Python/
Dmarshal.c804 return _PyLong_FromByteArray(buffer, 8, in r_long64()
/external/python/cpython3/Objects/
Dlongobject.c774 _PyLong_FromByteArray(const unsigned char* bytes, size_t n, in _PyLong_FromByteArray() function
5268 long_obj = _PyLong_FromByteArray( in int_from_bytes_impl()
/external/python/cpython2/Modules/_io/
Dtextio.c1963 return _PyLong_FromByteArray(buffer, sizeof(buffer), IS_LITTLE_ENDIAN, 0); in textiowrapper_build_cookie()
/external/python/cpython3/Modules/_io/
Dtextio.c2267 return _PyLong_FromByteArray(buffer, sizeof(buffer), in textiowrapper_build_cookie()