Lines Matching refs:quo
34 * 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) {
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) {
226 *quo = 0;
235 x = fmodquof(x, y + y, quo);
236 *quo = ((*quo) & 0x3fffffff) << 1;
240 *quo += 1;
247 *quo += 1;
253 *quo += 1;
260 *quo += 1;
265 *quo = -(*quo);