Home
last modified time | relevance | path

Searched refs:_PyLong_FromByteArray (Results 1 – 10 of 10) 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/cpython2/Include/
Dlongobject.h92 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()
992 return _PyLong_FromByteArray((const unsigned char *)p, in lu_longlong()
1013 return _PyLong_FromByteArray((const unsigned char *)p, in lu_ulonglong()
D_randommodule.c493 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.c3580 along = _PyLong_FromByteArray(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.c569 return _PyLong_FromByteArray(buf, 8, is_little_endian, 1); in r_long64()
/external/python/cpython2/Modules/_io/
Dtextio.c1958 return _PyLong_FromByteArray(buffer, sizeof(buffer), IS_LITTLE_ENDIAN, 0); in textiowrapper_build_cookie()