Lines Matching refs:quo
34 * 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) {
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) {
226 *quo = 0;
234 x = fmodquo(x, y + y, quo);
235 *quo = ((*quo) & 0x3fffffff) << 1;
239 *quo += 1;
246 *quo += 1;
252 *quo += 1;
259 *quo += 1;
264 *quo = -(*quo);