MCPcopy Create free account
hub / github.com/BlitterStudio/amiberry / from_double

Function from_double

src/fpp_softfloat.cpp:207–212  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

205 fpd->fpx = float64_to_floatx80_allowunnormal(f, &fs);
206}
207static void from_double(fpdata *fpd, uae_u32 *wrd1, uae_u32 *wrd2)
208{
209 float64 f = floatx80_to_float64(fpd->fpx, &fs);
210 *wrd1 = f >> 32;
211 *wrd2 = (uae_u32)f;
212}
213
214static void to_exten(fpdata *fpd, uae_u32 wrd1, uae_u32 wrd2, uae_u32 wrd3)
215{

Callers

nothing calls this directly

Calls 1

floatx80_to_float64Function · 0.85

Tested by

no test coverage detected