Searched defs:IsInfinite (Results 1 - 3 of 3) sorted by relevance

/external/ceres-solver/include/ceres/
H A Dfpclassify.h48 inline bool IsInfinite(double x) { return !_finite(x) && !_isnan(x); } function in namespace:ceres
66 inline bool IsInfinite(double x) {
71 return !isnan(x) && !IsInfinite(x);
75 inline bool IsInfinite(double x) { return isinf(x); }
81 inline bool IsInfinite(double x) { return std::isinf(x); }
H A Djet.h491 // to be finite (or normal). For IsNaN and IsInfinite, the answer is less
492 // clear. This takes a "any" approach for IsNaN and IsInfinite such that if any
494 // to strange situations like a jet can be both IsInfinite and IsNaN, but in
514 bool IsInfinite(const Jet<T, N>& f) { function in namespace:ceres
515 if (IsInfinite(f.a)) {
519 if (IsInfinite(f.v[i])) {
/external/v8/src/
H A Ddouble.h139 bool IsInfinite() const { function in class:v8::internal::Double

Completed in 304 milliseconds