Home | History | Annotate | Download | only in src

Lines Matching refs:this_value

871     double this_value = Number();
873 bool equal = this_value == other_value;
875 if (!equal) return std::isnan(this_value) && std::isnan(other_value);
877 return (this_value != 0) || ((1 / this_value) == (1 / other_value));
892 double this_value = Number();
895 return this_value == other_value
896 || (std::isnan(this_value) && std::isnan(other_value));