HomeSort by relevance Sort by last modified time
    Searched defs:IsNaN (Results 1 - 13 of 13) sorted by null

  /external/ceres-solver/include/ceres/
fpclassify.h 32 // do not collide with macros. For example, "isnan" in C99 is a macro and hence
52 inline bool IsNaN (double x) { return _isnan(x) != 0; }
61 // On Android, when using the STLPort, the C++ isnan and isnormal functions
63 inline bool IsNaN (double x) { return isnan(x); }
72 return !isnan(x) && !IsInfinite(x);
80 inline bool IsNaN (double x) { return std::isnan(x); }
jet.h 489 // 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
526 bool IsNaN(const Jet<T, N>& f) {
527 if (IsNaN(f.a)) {
531 if (IsNaN(f.v[i])) {
  /external/ceres-solver/google3/
jet_traits.h 47 static bool IsNaN (const Type x) { return isnan(x); }
  /external/ImageMagick/MagickCore/
magick-type.h 152 The IsNaN test is for special floating point numbers of value Nan (not a
163 # define IsNaN(a) isnan(a)
166 # define IsNaN(a) _isnan(a)
168 # define IsNaN(a) (a != a)
  /external/protobuf/src/google/protobuf/
text_format_unittest.cc 59 inline bool IsNaN(double value) {
900 EXPECT_TRUE(IsNaN(message.repeated_double(11)));
901 EXPECT_TRUE(IsNaN(message.repeated_double(12)));
    [all...]
  /external/skia/src/animator/
SkAnimatorScript.cpp 59 functionCallBack(IsNaN, (void*) this);
387 bool SkAnimatorScript::IsNaN(const char* function, size_t len, SkTDArray<SkScriptValue>& params,
389 if (SK_LITERAL_STR_EQUAL("isNaN", function, len) == false)
523 { "isNaN(Number.NaN)", SkType_Int, 1 DEFAULT_ANSWER DEFAULT_ANSWER },
524 { "isNaN(NaN)", SkType_Int, 1 DEFAULT_ANSWER DEFAULT_ANSWER },
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 58 inline bool IsNaN(double value) {
    [all...]
  /external/v8/src/compiler/
node-matchers.h 160 bool IsNaN() const { return this->HasValue() && std::isnan(this->Value()); }
  /external/v8/src/js/
typedarray.js 41 var IsNaN;
94 IsNaN = from.IsNaN;
553 } else if (IsNaN(x) && IsNaN(y)) {
554 return IsNaN(y) ? 0 : 1;
555 } else if (IsNaN(x)) {
  /external/v8/src/
objects-inl.h 960 bool Object::IsNaN() const {
961 return this->IsHeapNumber() && std::isnan(HeapNumber::cast(this)->value());
    [all...]
  /external/v8/src/debug/
debug.js 14 var IsNaN = global.isNaN;
    [all...]
mirrors.js 13 var IsNaN = global.isNaN;
141 if (mirror.isNumber() && IsNaN(mirror.value()) &&
142 typeof value == 'number' && IsNaN(value)) {
    [all...]
  /art/compiler/optimizing/
nodes.h     [all...]

Completed in 364 milliseconds