Lines Matching defs:floatValue
1563 Value floatValue = b.create<arith::BitcastOp>(floatTy, intValue);
1564 Value squared = b.create<arith::MulFOp>(floatValue, floatValue);
1565 Value mulTwo = b.create<arith::MulFOp>(floatValue, fpTwo);
1567 floatValue = b.create<arith::AddFOp>(mulTwo, divSquared);
1568 floatValue = b.create<arith::MulFOp>(floatValue, fpThird);
1571 squared = b.create<arith::MulFOp>(floatValue, floatValue);
1572 mulTwo = b.create<arith::MulFOp>(floatValue, fpTwo);
1574 floatValue = b.create<arith::AddFOp>(mulTwo, divSquared);
1575 floatValue = b.create<arith::MulFOp>(floatValue, fpThird);
1580 floatValue = b.create<arith::SelectOp>(isZero, fpZero, floatValue);
1581 floatValue = b.create<math::CopySignOp>(floatValue, operand);
1583 rewriter.replaceOp(op, floatValue);