Lines Matching defs:cnt
8833 PyObject* cnt;
8839 cnt = get_const_value(inst->i_opcode, oparg, consts);
8840 if (cnt == NULL) {
8843 is_true = PyObject_IsTrue(cnt);
8844 Py_DECREF(cnt);
8860 cnt = get_const_value(inst->i_opcode, oparg, consts);
8861 if (cnt == NULL) {
8864 is_true = PyObject_IsTrue(cnt);
8865 Py_DECREF(cnt);
8880 cnt = get_const_value(inst->i_opcode, oparg, consts);
8881 if (cnt == NULL) {
8885 if (Py_IsNone(cnt) && (jump_op == POP_JUMP_IF_FALSE || jump_op == POP_JUMP_IF_TRUE)) {
8892 Py_DECREF(cnt);