Static multiplication method. @param a the first operand @param b the second operand @param result the result (can be the same as a or b for in-place operation) @throws NumericException if overflow occurs
(Decimal256 a, Decimal256 b, Decimal256 result)
| 707 | * @throws NumericException if overflow occurs |
| 708 | */ |
| 709 | public static void multiply(Decimal256 a, Decimal256 b, Decimal256 result) { |
| 710 | result.copyFrom(a); |
| 711 | result.multiply(b); |
| 712 | } |
| 713 | |
| 714 | public static void put(Decimal256 d, long addr) { |
| 715 | put(d.getHh(), d.getHl(), d.getLh(), d.getLl(), addr); |