Home | History | Annotate | Download | only in Objects

Lines Matching refs:wx

707     double vx, wx;

710 CONVERT_TO_DOUBLE(w, wx);
712 if (wx == 0.0) {
719 mod = fmod(vx, wx);
722 if ((wx < 0) != (mod < 0)) {
723 mod += wx;
730 "mod = wx * 0.0", but that may get optimized away */
732 if (wx < 0.0)
742 double vx, wx;
745 CONVERT_TO_DOUBLE(w, wx);
746 if (wx == 0.0) {
751 mod = fmod(vx, wx);
753 exact multiple of wx. But this is fp arithmetic, and fp
758 div = (vx - mod) / wx;
761 if ((wx < 0) != (mod < 0)) {
762 mod += wx;
770 "mod = wx * 0.0", but that may get optimized away */
772 if (wx < 0.0)
784 floordiv = div * vx / wx; /* zero w/ sign of vx/wx */