Home | History | Annotate | Download | only in radeon

Lines Matching defs:False

371                      false, false, false, 0);
395 SDValue False = Op.getOperand(3);
405 // False. True and False are guaranteed to have the same type as this
428 // If True is a hardware TRUE value and False is a hardware FALSE value or
430 if ((isHWTrueValue(True) && isHWFalseValue(False))) {
431 return DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, True, False, CC);
434 // XXX If True is a hardware TRUE value and FalseFALSE value,
436 // and false and change the conditional.
437 if (isHWTrueValue(False) && isHWFalseValue(True)) {
446 bool SwapTF = false;
459 True = False;
460 False = Temp;
463 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
466 return DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, True, False, CC);
496 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);