Lines Matching defs:iTy
474 Type iTy = rewriter.getIntegerType(operandETy.getIntOrFloatBitWidth());
476 iTy = shapedTy.clone(iTy);
490 Value c0 = createIntConst(loc, iTy, 0, b);
491 Value c1 = createIntConst(loc, iTy, 1, b);
492 Value cNeg1 = createIntConst(loc, iTy, -1, b);
493 Value c23 = createIntConst(loc, iTy, mantissaWidth, b);
494 Value c31 = createIntConst(loc, iTy, bitWidth - 1, b);
495 Value c127 = createIntConst(loc, iTy, (1ull << (exponentWidth - 1)) - 1, b);
496 Value c2To22 = createIntConst(loc, iTy, 1ull << (mantissaWidth - 1), b);
497 Value c23Mask = createIntConst(loc, iTy, (1ull << mantissaWidth) - 1, b);
498 Value expMask = createIntConst(loc, iTy, (1ull << exponentWidth) - 1, b);
500 Value operandBitcast = b.create<arith::BitcastOp>(iTy, operand);
502 Value roundBitcast = b.create<arith::BitcastOp>(iTy, round);