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

Function fp_rem

src/fpp_softfloat.cpp:365–370  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

363 a->fpx = floatx80_sglmul(a->fpx, b->fpx, &fs);
364}
365static void fp_rem(fpdata *a, fpdata *b, uae_u64 *q, uae_u8 *s)
366{
367 uint64_t quotient = *q;
368 a->fpx = floatx80_rem(a->fpx, b->fpx, &quotient, s, &fs);
369 *q = quotient;
370}
371static void fp_scale(fpdata *a, fpdata *b)
372{
373 a->fpx = floatx80_scale(a->fpx, b->fpx, &fs);

Callers

nothing calls this directly

Calls 1

floatx80_remFunction · 0.85

Tested by

no test coverage detected