Lines Matching refs:WIDE
452 /* Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW)453 * Cast VALUE to type NARROW from type WIDE. In Py_DEBUG mode, this459 #define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) \460 (assert((WIDE)(NARROW)(VALUE) == (VALUE)), (NARROW)(VALUE))462 #define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) (NARROW)(VALUE)