HomeSort by relevance Sort by last modified time
    Searched defs:IsNaN (Results 1 - 8 of 8) 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
49 inline bool IsNaN (double x) { return _isnan(x); }
60 inline bool IsNaN (double x) { return isnan(x); }
71 return !isnan(x) && !IsInfinite(x);
82 inline bool IsNaN (double x) { return std::isnan(x); }
jet.h 491 // 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
528 bool IsNaN(const Jet<T, N>& f) {
529 if (IsNaN(f.a)) {
533 if (IsNaN(f.v[i])) {
  /external/protobuf/src/google/protobuf/
text_format_unittest.cc 59 inline bool IsNaN(double value) {
651 EXPECT_TRUE(IsNaN(message.repeated_double(11)));
652 EXPECT_TRUE(IsNaN(message.repeated_double(12)));
    [all...]
  /external/skia/legacy/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/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/
objects-inl.h 813 bool Object::IsNaN() {
814 return this->IsHeapNumber() && isnan(HeapNumber::cast(this)->value());
    [all...]
  /external/v8/test/cctest/
test-api.cc 45 static bool IsNaN(double x) {
49 return isnan(x);
    [all...]

Completed in 1389 milliseconds