| 140 | |
| 141 | #if !defined(ABSL_HAVE_INTRINSIC_INT128) |
| 142 | uint128 operator/(uint128 lhs, uint128 rhs) { |
| 143 | uint128 quotient = 0; |
| 144 | uint128 remainder = 0; |
| 145 | DivModImpl(lhs, rhs, "ient, &remainder); |
| 146 | return quotient; |
| 147 | } |
| 148 | |
| 149 | uint128 operator%(uint128 lhs, uint128 rhs) { |
| 150 | uint128 quotient = 0; |
nothing calls this directly
no test coverage detected