Lines Matching refs:cmp_result
388 int step_is_negative, cmp_result;
445 cmp_result = PyObject_RichCompareBool(start, lower, Py_LT);
446 if (cmp_result < 0)
448 if (cmp_result) {
455 cmp_result = PyObject_RichCompareBool(start, upper, Py_GT);
456 if (cmp_result < 0)
458 if (cmp_result) {
484 cmp_result = PyObject_RichCompareBool(stop, lower, Py_LT);
485 if (cmp_result < 0)
487 if (cmp_result) {
494 cmp_result = PyObject_RichCompareBool(stop, upper, Py_GT);
495 if (cmp_result < 0)
497 if (cmp_result) {