| 531 | } |
| 532 | |
| 533 | void Decimal64::makeKey(ULONG* key) const |
| 534 | { |
| 535 | unsigned char coeff[DECDOUBLE_Pmax]; |
| 536 | int sign = decDoubleGetCoefficient(&dec, coeff); |
| 537 | int exp = decDoubleGetExponent(&dec); |
| 538 | decClass dc = decDoubleClass(&dec); |
| 539 | |
| 540 | make(key, DECDOUBLE_Pmax, DECDOUBLE_Bias, sizeof(dec), coeff, sign, exp, dc); |
| 541 | } |
| 542 | |
| 543 | void Decimal64::grabKey(ULONG* key) |
| 544 | { |
no test coverage detected