Lines Matching defs:angle
2415 // Indices for angle computation
2421 // Calculating angle without integer parts of components as sin/cos are
2422 // periodic: angle = 2 * pi() * ( ( (iy * oy) % H) / H + ( (ix * ox) % W )
2436 auto angle = builder.create<arith::MulFOp>(loc, twoPi, sumXY);
2438 // realComponent = valReal * cos(angle)
2439 // imagComponent = valReal * sin(angle)
2440 auto cosAngle = builder.create<math::CosOp>(loc, angle);
2441 auto sinAngle = builder.create<math::SinOp>(loc, angle);
2538 // Indices for angle computation
2544 // float_t angle = sign_val * 2 * pi() * ( ( (iy * oy) % H) / H + ( (ix *
2561 auto angle = builder.create<arith::MulFOp>(loc, twoPi, sumXY);
2564 angle = builder.create<arith::MulFOp>(
2565 loc, angle,
2572 auto cosAngle = builder.create<math::CosOp>(loc, angle);
2573 auto sinAngle = builder.create<math::SinOp>(loc, angle);