Home | History | Annotate | Download | only in libm

Lines Matching defs:quo

68 	int		quo;	/* expected */
95 int quo;
96 int quo_exp = args[i].quo;
100 r = remquo(x, y, &quo);
107 if (quo_exp < 0 && quo >= 0)
109 if (quo_exp >= 0 && quo < 0)
113 * The specification requires that quo be congruent to
116 ok &= ((quo & 0x7) == (quo_exp & 0x7));
120 "r/quo expected %g/%d != %g/%d",
121 x, y, r_exp, quo_exp, r, quo);