HomeSort by relevance Sort by last modified time
    Searched refs:IsNaN (Results 1 - 25 of 28) sorted by null

1 2

  /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/v8/testing/
gmock-support.h 85 MATCHER(IsNaN, std::string(negation ? "isn't" : "is") + " not a number") {
86 return std::isnan(arg);
  /external/ceres-solver/internal/ceres/
jet_test.cc 330 EXPECT_TRUE(IsNaN(a));
341 EXPECT_TRUE(IsNaN(a));
352 EXPECT_FALSE(IsNaN(a));
363 EXPECT_FALSE(IsNaN(a));
rotation_test.cc 677 EXPECT_FALSE(IsNaN(x));
678 EXPECT_FALSE(IsNaN(y));
    [all...]
  /external/skia/src/animator/
SkAnimatorScript.h 58 static bool IsNaN(const char* function, size_t len, SkTDArray<SkScriptValue>& params,
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/v8/test/cctest/compiler/
test-js-context-specialization.cc 314 CHECK(T.Call(T.Val(0.0), T.Val(0.0)).ToHandleChecked()->IsNaN());
315 CHECK(T.Call(T.Val(2.0), T.Val(0.0)).ToHandleChecked()->IsNaN());
316 CHECK(T.Call(T.Val(-2.1), T.Val(0.0)).ToHandleChecked()->IsNaN());
  /art/compiler/optimizing/
constant_folding.cc 208 ((input_cst->IsFloatConstant() && input_cst->AsFloatConstant()->IsNaN()) ||
209 (input_cst->IsDoubleConstant() && input_cst->AsDoubleConstant()->IsNaN()))) {
nodes.h     [all...]
  /external/v8/src/
objects-debug.cc 463 CHECK(year()->IsUndefined() || year()->IsSmi() || year()->IsNaN());
464 CHECK(month()->IsUndefined() || month()->IsSmi() || month()->IsNaN());
465 CHECK(day()->IsUndefined() || day()->IsSmi() || day()->IsNaN());
466 CHECK(weekday()->IsUndefined() || weekday()->IsSmi() || weekday()->IsNaN());
467 CHECK(hour()->IsUndefined() || hour()->IsSmi() || hour()->IsNaN());
468 CHECK(min()->IsUndefined() || min()->IsSmi() || min()->IsNaN());
469 CHECK(sec()->IsUndefined() || sec()->IsSmi() || sec()->IsNaN());
472 cache_stamp()->IsNaN());
    [all...]
  /external/v8/src/js/
typedarray.js 39 var IsNaN;
89 IsNaN = from.IsNaN;
567 if (IsNaN(x) && IsNaN(y)) {
568 return IsNaN(y) ? 0 : 1;
570 if (IsNaN(x)) {
prologue.js 176 "IsNaN",
i18n.js 24 var IsNaN;
52 IsNaN = from.IsNaN;
    [all...]
v8natives.js 43 // ES6 18.2.3 isNaN(number)
116 "isNaN", GlobalIsNaN,
1085 // Harmony isNaN.
    [all...]
  /external/v8/src/compiler/
machine-operator-reducer.cc 314 if (m.right().IsNaN()) { // x + NaN => NaN
327 if (m.right().IsNaN()) { // x - NaN => NaN
330 if (m.left().IsNaN()) { // NaN - x => NaN
347 if (m.right().IsNaN()) { // x * NaN => NaN
358 if (m.right().IsNaN()) { // x / NaN => NaN
361 if (m.left().IsNaN()) { // NaN / x => NaN
374 if (m.right().IsNaN()) { // x % NaN => NaN
377 if (m.left().IsNaN()) { // NaN % x => NaN
    [all...]
node-matchers.h 160 bool IsNaN() const { return this->HasValue() && std::isnan(this->Value()); }
  /external/ceres-solver/google3/
jet_traits.h 47 static bool IsNaN (const Type x) { return isnan(x); }
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 58 inline bool IsNaN(double value) {
    [all...]
  /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/v8/test/unittests/compiler/
js-typed-lowering-unittest.cc 21 using testing::IsNaN;
174 EXPECT_THAT(r.replacement(), IsNumberConstant(IsNaN()));
180 EXPECT_THAT(r.replacement(), IsNumberConstant(IsNaN()));
185 EXPECT_THAT(r.replacement(), IsNumberConstant(IsNaN()));
    [all...]
  /art/compiler/dex/quick/
dex_file_method_inliner.cc 275 "isNaN", // kNameCacheIsNaN
489 INTRINSIC(JavaLangFloat, IsNaN, F_Z, kIntrinsicFloatIsNaN, 0),
490 INTRINSIC(JavaLangDouble, IsNaN, D_Z, kIntrinsicDoubleIsNaN, 0),
    [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...]
  /external/v8/src/runtime/
runtime-strings.cc     [all...]

Completed in 451 milliseconds

1 2