| 2091 | } |
| 2092 | |
| 2093 | Decimal256 Decimal256FromInt128(int128_t value) { |
| 2094 | return Decimal256(Decimal128(static_cast<int64_t>(value >> 64), |
| 2095 | static_cast<uint64_t>(value & 0xFFFFFFFFFFFFFFFFULL))); |
| 2096 | } |
| 2097 | |
| 2098 | TEST(Decimal256Test, Multiply) { |
| 2099 | using boost::multiprecision::int256_t; |
no test coverage detected