| 43 | } |
| 44 | |
| 45 | static BasicDecimal128 CheckAndReduceScale(const BasicDecimal128& in, int32_t delta) { |
| 46 | return (delta <= 0) ? in : in.ReduceScaleBy(delta); |
| 47 | } |
| 48 | |
| 49 | /// Adjust x and y to the same scale, and add them. |
| 50 | static BasicDecimal128 AddFastPath(const BasicDecimalScalar128& x, |
no test coverage detected