Lines Matching full:other_value
1536 double other_value = other->Number();
1538 if (this_value != other_value) {
1539 return std::isnan(this_value) && std::isnan(other_value);
1542 return (std::signbit(this_value) == std::signbit(other_value));
1578 double other_value = other->Number();
1580 return this_value == other_value ||
1581 (std::isnan(this_value) && std::isnan(other_value));