Searched defs:IsInfinite (Results 1 - 3 of 3) 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/v8/src/
H A Ddouble.h110 bool IsInfinite() const { function in class:v8::internal::Double

Completed in 1949 milliseconds