Searched refs:Den (Results 1 - 2 of 2) sorted by relevance

/freebsd-9.3-release/contrib/llvm/lib/Target/R600/
H A DAMDGPUISelLowering.cpp612 SDValue Den = Op.getOperand(1); local
616 // RCP = URECIP(Den) = 2^32 / Den + e
618 SDValue RCP = DAG.getNode(AMDGPUISD::URECIP, DL, VT, Den);
620 // RCP_LO = umulo(RCP, Den) */
621 SDValue RCP_LO = DAG.getNode(ISD::UMULO, DL, VT, RCP, Den);
623 // RCP_HI = mulhu (RCP, Den) */
624 SDValue RCP_HI = DAG.getNode(ISD::MULHU, DL, VT, RCP, Den);
651 // Num_S_Remainder = Quotient * Den
652 SDValue Num_S_Remainder = DAG.getNode(ISD::UMULO, DL, VT, Quotient, Den);
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DExprConstant.cpp7752 APFloat Den = RHS_r;
7753 Den.multiply(RHS_r, APFloat::rmNearestTiesToEven);
7756 Den.add(Tmp, APFloat::rmNearestTiesToEven);
7763 Res_r.divide(Den, APFloat::rmNearestTiesToEven);
7770 Res_i.divide(Den, APFloat::rmNearestTiesToEven);
7776 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() +
7780 LHS.getComplexIntImag() * RHS.getComplexIntImag()) / Den;
7783 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den;

Completed in 110 milliseconds