Home
last modified time | relevance | path

Searched refs:Py_SAFE_DOWNCAST (Results 1 – 25 of 52) sorted by relevance

123

/external/python/cpython3/Modules/_io/
Dbufferedio.c930 have = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t); in _io__Buffered_read1_impl()
967 n = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t); in _buffered_readinto_generic()
1081 n = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t); in _buffered_readline()
1502 start = Py_SAFE_DOWNCAST(self->read_end, Py_off_t, Py_ssize_t); in _bufferedreader_fill_buffer()
1521 current_size = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t); in _bufferedreader_read_all()
1611 current_size = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t); in _bufferedreader_read_fast()
1632 current_size = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t); in _bufferedreader_read_generic()
1727 have = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t); in _bufferedreader_peek_unlocked()
1869 Py_SAFE_DOWNCAST(self->write_end - self->write_pos, in _bufferedwriter_flush_unlocked()
1881 written += Py_SAFE_DOWNCAST(n, Py_off_t, Py_ssize_t); in _bufferedwriter_flush_unlocked()
[all …]
/external/python/cpython2/Modules/
Dmd5module.c69 Py_SAFE_DOWNCAST(nbytes, Py_ssize_t, unsigned int)); in md5_update()
298 Py_SAFE_DOWNCAST(nbytes, Py_ssize_t, unsigned int)); in MD5_new()
D_struct.c434 return PyInt_FromLong(Py_SAFE_DOWNCAST(x, PY_LONG_LONG, long)); in nu_longlong()
444 return PyInt_FromLong(Py_SAFE_DOWNCAST(x, unsigned PY_LONG_LONG, long)); in nu_ulonglong()
761 return PyInt_FromLong(Py_SAFE_DOWNCAST(x, PY_LONG_LONG, long)); in bu_longlong()
782 return PyInt_FromLong(Py_SAFE_DOWNCAST(x, unsigned PY_LONG_LONG, long)); in bu_ulonglong()
991 return PyInt_FromLong(Py_SAFE_DOWNCAST(x, PY_LONG_LONG, long)); in lu_longlong()
1012 return PyInt_FromLong(Py_SAFE_DOWNCAST(x, unsigned PY_LONG_LONG, long)); in lu_ulonglong()
1596 *res = Py_SAFE_DOWNCAST(n, Py_ssize_t, unsigned char); in s_pack_internal()
Dshamodule.c447 Py_SAFE_DOWNCAST(nbytes, Py_ssize_t, unsigned int)); in SHA_update()
582 Py_SAFE_DOWNCAST(nbytes, Py_ssize_t, unsigned int)); in SHA_new()
D_hashopenssl.c162 process = Py_SAFE_DOWNCAST(len, Py_ssize_t, unsigned int); in EVP_hash()
/external/python/cpython2/Python/
Dthread_nt.h145 Py_SAFE_DOWNCAST(_pythread_stacksize, Py_ssize_t, SIZE_T), in PyThread_start_new_thread()
149 Py_SAFE_DOWNCAST(_pythread_stacksize, in PyThread_start_new_thread()
Dpystrtod.c542 digit_count = Py_SAFE_DOWNCAST(p - digits_start, Py_ssize_t, int); in ensure_decimal_point()
609 written < Py_SAFE_DOWNCAST(buf_avail, size_t, int))) in ensure_decimal_point()
Dtraceback.c143 int npath = Py_SAFE_DOWNCAST(_npath, Py_ssize_t, int); in _Py_DisplaySourceLine()
/external/python/cpython2/Modules/_io/
Dbufferedio.c883 have = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t); in buffered_read1()
942 n = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t); in _buffered_readline()
1328 start = Py_SAFE_DOWNCAST(self->read_end, Py_off_t, Py_ssize_t); in _bufferedreader_fill_buffer()
1351 current_size = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t); in _bufferedreader_read_all()
1418 current_size = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t); in _bufferedreader_read_fast()
1439 current_size = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t); in _bufferedreader_read_generic()
1536 have = Py_SAFE_DOWNCAST(READAHEAD(self), Py_off_t, Py_ssize_t); in _bufferedreader_peek_unlocked()
1774 Py_SAFE_DOWNCAST(self->write_end - self->write_pos, in _bufferedwriter_flush_unlocked()
1786 written += Py_SAFE_DOWNCAST(n, Py_off_t, Py_ssize_t); in _bufferedwriter_flush_unlocked()
1832 avail = Py_SAFE_DOWNCAST(self->buffer_size - self->pos, Py_off_t, Py_ssize_t); in bufferedwriter_write()
[all …]
/external/python/cpython3/Include/
Dpyport.h312 #define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) \ macro
315 #define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) (NARROW)(VALUE)
/external/python/cpython2/Modules/_sqlite/
Dutil.c135 return PyInt_FromLong(Py_SAFE_DOWNCAST(value, sqlite_int64, long)); in _pysqlite_long_from_int64()
/external/python/cpython2/Include/
Dpyport.h455 #define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) \ macro
458 #define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) (NARROW)(VALUE)
/external/python/cpython3/Parser/
Dparsetok.c290 col_offset = Py_SAFE_DOWNCAST(a - line_start, in parsetok()
298 end_col_offset = Py_SAFE_DOWNCAST(b - tok->line_start, in parsetok()
/external/python/cpython3/PC/
Dwinreg.c613 *retDataSize = Py_SAFE_DOWNCAST( in Py2Reg()
652 size += Py_SAFE_DOWNCAST((len + 1) * sizeof(wchar_t), in Py2Reg()
709 *retDataSize = Py_SAFE_DOWNCAST(view.len, Py_ssize_t, DWORD); in Py2Reg()
778 len -= Py_SAFE_DOWNCAST(slen + 1, size_t, int); in Reg2Py()
/external/python/cpython3/Python/
Dpystrtod.c616 digit_count = Py_SAFE_DOWNCAST(p - digits_start, Py_ssize_t, int); in ensure_decimal_point()
683 written < Py_SAFE_DOWNCAST(buf_avail, size_t, int))) in ensure_decimal_point()
Dthread_nt.h201 Py_SAFE_DOWNCAST(stacksize, Py_ssize_t, unsigned int), in PyThread_start_new_thread()
/external/python/cpython3/Modules/_ctypes/
Dcallproc.c752 Py_SAFE_DOWNCAST(index, Py_ssize_t, int)); in ConvParam()
1278 Py_SAFE_DOWNCAST(argcount, Py_ssize_t, int), in _ctypes_callproc()
1279 Py_SAFE_DOWNCAST(argtype_count, Py_ssize_t, int))) in _ctypes_callproc()
Dcallbacks.c404 Py_SAFE_DOWNCAST(nArgs, Py_ssize_t, int), in _ctypes_alloc_callback()
Dstgdict.c647 stgdict->ffi_type_pointer.alignment = Py_SAFE_DOWNCAST(total_align, in PyCStructUnionType_update_stgdict()
D_ctypes.c2692 cp += sprintf(cp, "%x", Py_SAFE_DOWNCAST(index, Py_ssize_t, int)); in unique_key()
2701 cp += sprintf(cp, ":%x", Py_SAFE_DOWNCAST(target->b_index, Py_ssize_t, int)); in unique_key()
3445 Py_SAFE_DOWNCAST(index, Py_ssize_t, int), in _check_outarg_type()
4172 int required = Py_SAFE_DOWNCAST(PyTuple_GET_SIZE(converters), in PyCFuncPtr_call()
4174 int actual = Py_SAFE_DOWNCAST(PyTuple_GET_SIZE(callargs), in PyCFuncPtr_call()
/external/python/cpython3/Modules/
Dsignalmodule.c279 fd = Py_SAFE_DOWNCAST(wakeup.fd, SOCKET_T, int); in trip_signal()
802 old_fd = Py_SAFE_DOWNCAST(wakeup.fd, SOCKET_T, int); in PySignal_SetWakeupFd()
/external/python/cpython2/Modules/_ctypes/
Dcallbacks.c468 Py_SAFE_DOWNCAST(nArgs, Py_ssize_t, int), in _ctypes_alloc_callback()
Dstgdict.c591 stgdict->ffi_type_pointer.alignment = Py_SAFE_DOWNCAST(total_align, in PyCStructUnionType_update_stgdict()
Dcallproc.c731 Py_SAFE_DOWNCAST(index, Py_ssize_t, int)); in ConvParam()
1186 Py_SAFE_DOWNCAST(argcount, in _ctypes_callproc()
/external/python/cpython3/Objects/
Dlongobject.c325 v->ob_digit[0] = Py_SAFE_DOWNCAST( in PyLong_FromLong()
337 v->ob_digit[0] = Py_SAFE_DOWNCAST( in PyLong_FromLong()
339 v->ob_digit[1] = Py_SAFE_DOWNCAST( in PyLong_FromLong()
358 *p++ = Py_SAFE_DOWNCAST( in PyLong_FromLong()
1480 *(unsigned short *)ptr = Py_SAFE_DOWNCAST(uval, unsigned long, unsigned short); in _PyLong_UnsignedShort_Converter()
1502 *(unsigned int *)ptr = Py_SAFE_DOWNCAST(uval, unsigned long, unsigned int); in _PyLong_UnsignedInt_Converter()

123