Lines Matching defs:quotient
114 /// let quotient = absolute / b in
115 /// negative ? -quotient - 1 : quotient
141 Value quotient = builder.create<arith::DivSIOp>(loc, dividend, rhs);
143 builder.create<arith::SubIOp>(loc, noneCst, quotient);
145 correctedQuotient, quotient);
157 /// let quotient = absolute / b in
158 /// negative ? -quotient : quotient + 1
181 Value quotient = builder.create<arith::DivSIOp>(loc, dividend, rhs);
183 builder.create<arith::SubIOp>(loc, zeroCst, quotient);
185 builder.create<arith::AddIOp>(loc, quotient, oneCst);
1937 result.quotient =
1978 results.push_back(divMod.quotient);
2009 results.push_back(divMod.quotient);