Lines Matching defs:val0
1704 auto getClampedIdxs = [&](Value &val0, Value &val1, int size, Value in,
1706 val0 = in;
1707 val1 = b.create<arith::AddIOp>(val0, oneVal);
1708 val0 =
1709 clampIntHelper(loc, val0, zeroI32, max, b, /*isUnsigned=*/false);
1712 val0 = b.create<arith::IndexCastOp>(b.getIndexType(), val0);
1737 auto interpolate = [&](Value val0, Value val1, Value delta,
1741 return val0;
1743 Value mul0 = b.create<arith::MulFOp>(val0, oneMinusDelta);
1785 auto interpolate = [](Value val0, Value val1, Value weight1,
1789 return b.create<arith::MulIOp>(val0, scale);
1791 Value mul0 = b.create<arith::MulIOp>(val0, weight0);