Searched refs:IsInfinite (Results 1 - 19 of 19) sorted by relevance

/external/ceres-solver/include/ceres/
H A Dfpclassify.h51 inline bool IsInfinite(double x) { return _finite(x) == 0 && _isnan(x) == 0; } function in namespace:ceres
67 inline bool IsInfinite(double x) {
72 return !isnan(x) && !IsInfinite(x);
79 inline bool IsInfinite(double x) { return std::isinf(x); }
H A Djet.h489 // to be finite (or normal). For IsNaN and IsInfinite, the answer is less
490 // clear. This takes a "any" approach for IsNaN and IsInfinite such that if any
492 // to strange situations like a jet can be both IsInfinite and IsNaN, but in
512 bool IsInfinite(const Jet<T, N>& f) { function in namespace:ceres
513 if (IsInfinite(f.a)) {
517 if (IsInfinite(f.v[i])) {
/external/chromium_org/v8/test/cctest/
H A Dtest-double.cc128 TEST(IsInfinite) {
129 CHECK(Double(V8_INFINITY).IsInfinite());
130 CHECK(Double(-V8_INFINITY).IsInfinite());
131 CHECK(!Double(v8::base::OS::nan_value()).IsInfinite());
132 CHECK(!Double(0.0).IsInfinite());
133 CHECK(!Double(-0.0).IsInfinite());
134 CHECK(!Double(1.0).IsInfinite());
135 CHECK(!Double(-1.0).IsInfinite());
137 CHECK(!Double(min_double64).IsInfinite());
/external/ceres-solver/internal/ceres/
H A Dconjugate_gradients_solver.cc56 return ((x == 0.0) || (IsInfinite(x)));
152 if ((pq <= 0) || IsInfinite(pq)) {
159 if (IsInfinite(alpha)) {
H A Djet_test.cc329 EXPECT_TRUE(IsInfinite(a));
340 EXPECT_FALSE(IsInfinite(a));
351 EXPECT_TRUE(IsInfinite(a));
362 EXPECT_FALSE(IsInfinite(a));
/external/chromium_org/net/quic/
H A Dquic_time_test.cc14 EXPECT_FALSE(QuicTime::Delta::Zero().IsInfinite());
19 EXPECT_TRUE(QuicTime::Delta::Infinite().IsInfinite());
20 EXPECT_FALSE(QuicTime::Delta::Zero().IsInfinite());
21 EXPECT_FALSE(QuicTime::Delta::FromMilliseconds(1).IsInfinite());
H A Dquic_time.h69 bool IsInfinite() const;
H A Dquic_time.cc83 bool QuicTime::Delta::IsInfinite() const { function in class:net::QuicTime::Delta
H A Dquic_connection.cc1315 if (delay.IsInfinite()) {
1936 if (!overall_connection_timeout_.IsInfinite()) {
H A Dquic_framer.cc2064 if (!frame.delta_time_largest_observed.IsInfinite()) {
/external/chromium_org/net/quic/congestion_control/
H A Dsend_algorithm_simulator.cc78 const QuicTime end_time = max_time.IsInfinite() ?
89 if (ack_event.time_delta.IsInfinite() &&
90 send_event.time_delta.IsInfinite()) {
H A Dpacing_sender.cc130 DCHECK(time_until_send.IsInfinite());
H A Drtt_stats.cc66 if (rtt_sample.IsInfinite() || rtt_sample.IsZero()) {
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Ddouble.h139 bool IsInfinite() const { function in class:WTF::double_conversion::Double
H A Ddouble-conversion.cc62 if (double_inspect.IsInfinite()) {
/external/chromium_org/v8/src/
H A Ddouble.h110 bool IsInfinite() const { function in class:v8::internal::Double
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusRegion.h328 Region::IsInfinite(IN const Graphics *g) const function in class:Region
H A DGdiPlusHeaders.h90 BOOL IsInfinite(IN const Graphics *g) const;
/external/chromium_org/net/tools/quic/
H A Dend_to_end_test.cc1018 client_sent_packet_manager.GetRttStats()->SmoothedRtt().IsInfinite());
1049 client_sent_packet_manager.GetRttStats()->SmoothedRtt().IsInfinite());

Completed in 334 milliseconds