Home | History | Annotate | Download | only in src

Lines Matching refs:this_value

946     double this_value = Number();
948 bool equal = this_value == other_value;
950 if (!equal) return std::isnan(this_value) && std::isnan(other_value);
952 return (this_value != 0) || ((1 / this_value) == (1 / other_value));
967 double this_value = Number();
970 return this_value == other_value
971 || (std::isnan(this_value) && std::isnan(other_value));