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

/freebsd-9.3-release/lib/msun/src/
H A De_remainderl.c35 int quo; local
37 return (remquol(x, y, &quo));
H A Ds_remquof.c22 * Return the IEEE remainder and set *quo to the last n bits of the
30 remquof(float x, float y, int *quo) argument
49 *quo = (sxy ? -1 : 1);
92 *quo = (sxy ? -q : q);
120 *quo = (sxy ? -q : q);
H A Ds_remquo.c24 * Return the IEEE remainder and set *quo to the last n bits of the
32 remquo(double x, double y, int *quo) argument
54 *quo = (sxy ? -1 : 1);
118 *quo = (sxy ? -q : q);
153 *quo = (sxy ? -q : q);
H A Ds_remquol.c55 * Return the IEEE remainder and set *quo to the last n bits of the
68 remquol(long double x, long double y, int *quo) argument
99 *quo = (sxy ? -1 : 1);
142 *quo = (sxy ? -q : q);
176 *quo = (sxy ? -q : q);
/freebsd-9.3-release/sys/dev/sound/pcm/
H A Dfeeder_rate.c328 uint32_t hi, lo, quo, rem; local
337 quo = lo / d;
340 : "=a" (quo), "=d" (rem)
343 return (quo);
/freebsd-9.3-release/contrib/gcc/
H A Dfold-const.c605 HOST_WIDE_INT den[4], quo[4];
653 memset (quo, 0, sizeof quo);
668 quo[i] = work / lden;
767 quo[i] = quo_est;
771 decode (quo, lquo, hquo);
778 /* Compute trial remainder: rem = num - (quo * den) */
794 /* quo = quo - 1; */
838 /* quo
598 HOST_WIDE_INT den[4], quo[4]; local
[all...]

Completed in 79 milliseconds