| 363 | a->fpx = floatx80_sglmul(a->fpx, b->fpx, &fs); |
| 364 | } |
| 365 | static 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, "ient, s, &fs); |
| 369 | *q = quotient; |
| 370 | } |
| 371 | static void fp_scale(fpdata *a, fpdata *b) |
| 372 | { |
| 373 | a->fpx = floatx80_scale(a->fpx, b->fpx, &fs); |
nothing calls this directly
no test coverage detected