Lines Matching refs:quotient
87 uint128 quotient = 0; in DivModImpl() local
96 quotient <<= 1; in DivModImpl()
99 quotient |= 1; in DivModImpl()
104 *quotient_ret = quotient; in DivModImpl()
160 uint128 quotient = 0; in operator /()
162 DivModImpl(lhs, rhs, "ient, &remainder); in operator /()
163 return quotient; in operator /()
171 uint128 quotient = 0; in operator %()
173 DivModImpl(lhs, rhs, "ient, &remainder); in operator %()
286 uint128 quotient = 0; in operator /() local
289 "ient, &remainder); in operator /()
290 if ((Int128High64(lhs) < 0) != (Int128High64(rhs) < 0)) quotient = -quotient; in operator /()
291 return MakeInt128(int128_internal::BitCastToSigned(Uint128High64(quotient)), in operator /()
292 Uint128Low64(quotient)); in operator /()
298 uint128 quotient = 0; in operator %() local
301 "ient, &remainder); in operator %()