Home | History | Annotate | Download | only in Include

Lines Matching refs:NARROW

448 /* Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW)

449 * Cast VALUE to type NARROW from type WIDE. In Py_DEBUG mode, this
455 #define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) \
456 (assert((WIDE)(NARROW)(VALUE) == (VALUE)), (NARROW)(VALUE))
458 #define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) (NARROW)(VALUE)