Go to the source code of this file.
◆ DSPtoIEEE32()
void DSPtoIEEE32 |
( |
short |
DSPmantissa, |
|
|
short |
DSPexp, |
|
|
float * |
f |
|
) |
| |
◆ exaDigit()
◆ IEEE32toDSP()
void IEEE32toDSP |
( |
float |
f, |
|
|
short * |
DSPmantissa, |
|
|
short * |
DSPexp |
|
) |
| |
Definition at line 408 of file Lut.cc.
References f, mps_fire::i, and Validation_hcalonly_cfi::sign.
428 if ((pl & 0x80000000) != 0)
430 lm = (0x800000 | (pl & 0x7FFFFF));
433 *DSPexp = ((pl >> 23) & 0xFF) - 126;
434 *DSPmantissa = (short)lm;
436 *DSPmantissa = -*DSPmantissa;
◆ lutFmt()
std::string lutFmt |
( |
int |
i | ) |
|