Home | History | Annotate | Download | only in Objects

Lines Matching refs:wx

706     double vx, wx;

709 CONVERT_TO_DOUBLE(w, wx);
711 if (wx == 0.0) {
718 mod = fmod(vx, wx);
721 if ((wx < 0) != (mod < 0)) {
722 mod += wx;
729 "mod = wx * 0.0", but that may get optimized away */
731 if (wx < 0.0)
741 double vx, wx;
744 CONVERT_TO_DOUBLE(w, wx);
745 if (wx == 0.0) {
750 mod = fmod(vx, wx);
752 exact multiple of wx. But this is fp arithmetic, and fp
757 div = (vx - mod) / wx;
760 if ((wx < 0) != (mod < 0)) {
761 mod += wx;
769 "mod = wx * 0.0", but that may get optimized away */
771 if (wx < 0.0)
783 floordiv = div * vx / wx; /* zero w/ sign of vx/wx */