| 986 | } |
| 987 | |
| 988 | Decimal128 Decimal128::log10(DecimalStatus decSt) const |
| 989 | { |
| 990 | decNumber dn; |
| 991 | decQuadToNumber(&dec, &dn); |
| 992 | |
| 993 | DecimalContext context(this, decSt); |
| 994 | decNumberLog10(&dn, &dn, &context); |
| 995 | |
| 996 | Decimal128 rc; |
| 997 | decQuadFromNumber(&rc.dec, &dn, &context); |
| 998 | return rc; |
| 999 | } |
| 1000 | |
| 1001 | void Decimal128::makeKey(ULONG* key) const |
| 1002 | { |
no test coverage detected