Home | History | Annotate | Download | only in AMDGPU

Lines Matching refs:Num_S_Remainder

1466   // Num_S_Remainder = Quotient * Den
1467 SDValue Num_S_Remainder = DAG.getNode(ISD::MUL, DL, VT, Quotient, Den);
1469 // Remainder = Num - Num_S_Remainder
1470 SDValue Remainder = DAG.getNode(ISD::SUB, DL, VT, Num, Num_S_Remainder);
1477 // Remainder_GE_Zero = (Num >= Num_S_Remainder ? -1 : 0)
1479 Num_S_Remainder,