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

Function fp_mod

src/fpp_softfloat.cpp:351–356  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

349 a->fpx = floatx80_getman(b->fpx, &fs);
350}
351static void fp_mod(fpdata *a, fpdata *b, uae_u64 *q, uae_u8 *s)
352{
353 uint64_t quotient = *q;
354 a->fpx = floatx80_mod(a->fpx, b->fpx, &quotient, s, &fs);
355 *q = quotient;
356}
357static void fp_sgldiv(fpdata *a, fpdata *b)
358{
359 a->fpx = floatx80_sgldiv(a->fpx, b->fpx, &fs);

Callers

nothing calls this directly

Calls 1

floatx80_modFunction · 0.85

Tested by

no test coverage detected