Searched refs:quo (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dremquof.c34 * float remquof(float x, float y, int *quo) return remainderf(x,y) and an
35 * integer pointer quo such that *quo = N mod (2**31), where N is the
56 fmodquof(float x, float y, int *quo) { argument
67 *quo = 0;
75 *quo = 1 + (sq >> 30);
165 *quo = sq >= 0 ? m : -m;
187 *quo = sq >= 0 ? m : -m;
214 remquof(float x, float y, int *quo) { argument
226 *quo
[all...]
H A Dremquo.c34 * double remquo(double x, double y, int *quo) return remainder(x,y) and an
35 * integer pointer quo such that *quo = N mod {2**31}, where N is the
60 fmodquo(double x, double y, int *quo) { argument
74 *quo = 0;
82 *quo = 1 + (sq >> 30);
157 *quo = sq >= 0 ? m : -m;
175 *quo = sq >= 0 ? m : -m;
212 remquo(double x, double y, int *quo) { argument
226 *quo
[all...]
H A Dremquol.c55 * On entrance: *quo is initialized to 0, x finite and y non-zero & ordered
58 fmodquol(long double x, long double y, int *quo) { argument
85 *quo = 1 + (sq >> 30);
189 *quo = sq >= 0 ? m : -m;
233 *quo = sq >= 0 ? m : -m;
294 remquol(long double x, long double y, int *quo) { argument
306 *quo = 0;
314 x = fmodquol(x, y + y, quo);
315 *quo = ((*quo)
[all...]

Completed in 64 milliseconds