Lines Matching defs:result
89 // dividend is finite and divisor is an infinity => result equals dividend
90 // dividend is a zero and divisor is nonzero finite => result equals dividend
93 double result = fmod(x, y);
96 if (x < 0 && result == 0) result = -0.0;
97 x = result;
103 double result = std::fmod(x, y);
105 return (exception ? x : result);
170 // Multiply two numbers, returning a result that is twice as wide, no overflow.
185 // Add two numbers, returning a result that is twice as wide, no overflow.