| 692 | } |
| 693 | |
| 694 | BasicDecimal128 Ceil(const BasicDecimalScalar128& x, bool* overflow) { |
| 695 | return RoundWithPositiveScale(x, x.precision(), 0, RoundType::kRoundTypeCeil, overflow); |
| 696 | } |
| 697 | |
| 698 | BasicDecimal128 Floor(const BasicDecimalScalar128& x, bool* overflow) { |
| 699 | return RoundWithPositiveScale(x, x.precision(), 0, RoundType::kRoundTypeFloor, |