Lines Matching defs:intValue
1545 Value intValue = b.create<arith::BitcastOp>(intTy, absValue);
1546 Value divideBy4 = b.create<arith::ShRSIOp>(intValue, intTwo);
1547 Value divideBy16 = b.create<arith::ShRSIOp>(intValue, intFour);
1548 intValue = b.create<arith::AddIOp>(divideBy4, divideBy16);
1551 divideBy16 = b.create<arith::ShRSIOp>(intValue, intFour);
1552 intValue = b.create<arith::AddIOp>(intValue, divideBy16);
1555 Value divideBy256 = b.create<arith::ShRSIOp>(intValue, intEight);
1556 intValue = b.create<arith::AddIOp>(intValue, divideBy256);
1559 intValue = b.create<arith::AddIOp>(intValue, intMagic);
1563 Value floatValue = b.create<arith::BitcastOp>(floatTy, intValue);