Searched refs:_PyLong_FromByteArray (Results 1 – 19 of 19) sorted by relevance
/external/python/cpython2/Modules/_sqlite/ |
D | util.c | 119 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/ |
D | util.c | 111 return _PyLong_FromByteArray(&value, sizeof(value), in _pysqlite_long_from_int64()
|
/external/python/cpython2/Include/ |
D | longobject.h | 92 PyAPI_FUNC(PyObject *) _PyLong_FromByteArray(
|
/external/python/cpython3/Include/ |
D | longobject.h | 140 PyAPI_FUNC(PyObject *) _PyLong_FromByteArray(
|
/external/python/cpython2/Modules/ |
D | _struct.c | 764 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.c | 502 result = _PyLong_FromByteArray(bytearray, bytes, 1, 0); in random_getrandbits()
|
D | _tkinter.c | 1243 return _PyLong_FromByteArray((unsigned char *)(void *)&wideValue, in fromWideIntObj() 1279 res = _PyLong_FromByteArray(bytes, numBytes, in fromBignumObj()
|
D | cPickle.c | 3596 along = _PyLong_FromByteArray(pdata, (size_t)size, in load_counted_long()
|
/external/python/cpython3/Modules/ |
D | _randommodule.c | 428 result = _PyLong_FromByteArray((unsigned char *)wordarray, words * 4, in random_getrandbits()
|
D | _tkinter.c | 1133 return _PyLong_FromByteArray((unsigned char *)(void *)&wideValue, in fromWideIntObj() 1164 res = _PyLong_FromByteArray(bytes, numBytes, in fromBignumObj()
|
D | arraymodule.c | 2140 pylong = _PyLong_FromByteArray( in array__array_reconstructor_impl()
|
D | _pickle.c | 4976 value = _PyLong_FromByteArray((unsigned char *)pdata, (size_t)size, in load_counted_long()
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 398 "_PyLong_FromByteArray"
|
/external/python/cpython2/Objects/ |
D | longobject.c | 524 _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/ |
D | marshal.c | 575 return _PyLong_FromByteArray(buf, 8, is_little_endian, 1); in r_long64()
|
/external/python/cpython3/Python/ |
D | marshal.c | 804 return _PyLong_FromByteArray(buffer, 8, in r_long64()
|
/external/python/cpython3/Objects/ |
D | longobject.c | 774 _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/ |
D | textio.c | 1963 return _PyLong_FromByteArray(buffer, sizeof(buffer), IS_LITTLE_ENDIAN, 0); in textiowrapper_build_cookie()
|
/external/python/cpython3/Modules/_io/ |
D | textio.c | 2267 return _PyLong_FromByteArray(buffer, sizeof(buffer), in textiowrapper_build_cookie()
|