Home | History | Annotate | Download | only in python2.7

Lines Matching refs:NARROW

452 /* Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW)
453 * Cast VALUE to type NARROW from type WIDE. In Py_DEBUG mode, this
459 #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)