Home | History | Annotate | Download | only in Include

Lines Matching refs:WIDE

464 /* Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW)

465 * Cast VALUE to type NARROW from type WIDE. In Py_DEBUG mode, this
471 #define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) \
472 (assert((WIDE)(NARROW)(VALUE) == (VALUE)), (NARROW)(VALUE))
474 #define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) (NARROW)(VALUE)