HomeSort by relevance Sort by last modified time
    Searched full:infinity (Results 251 - 275 of 1848) sorted by null

<<11121314151617181920>>

  /art/test/021-string2/src/junit/framework/
Assert.java 92 * value is infinity then the delta value is ignored.
95 // handle infinity specially since subtracting to infinite values gives NaN and the
105 * value is infinity then the delta value is ignored.
113 * value is infinity then the delta value is ignored.
116 // handle infinity specially since subtracting to infinite values gives NaN and the
126 * value is infinity then the delta value is ignored.
  /art/test/082-inline-execute/src/junit/framework/
Assert.java 92 * value is infinity then the delta value is ignored.
95 // handle infinity specially since subtracting to infinite values gives NaN and the
105 * value is infinity then the delta value is ignored.
113 * value is infinity then the delta value is ignored.
116 // handle infinity specially since subtracting to infinite values gives NaN and the
126 * value is infinity then the delta value is ignored.
  /external/chromium_org/base/time/
time.cc 51 return std::numeric_limits<double>::infinity();
67 return std::numeric_limits<double>::infinity();
132 if (dt == std::numeric_limits<double>::infinity())
144 return std::numeric_limits<double>::infinity();
163 if (ms_since_epoch == std::numeric_limits<double>::infinity())
176 return std::numeric_limits<double>::infinity();
  /external/chromium_org/v8/test/webkit/fast/js/kde/
Number-expected.txt 39 PASS Number.NEGATIVE_INFINITY is -Infinity
40 PASS Number.POSITIVE_INFINITY is Infinity
47 PASS Number.POSITIVE_INFINITY.toString(16) is 'Infinity'
48 PASS Number.NEGATIVE_INFINITY.toString(16) is '-Infinity'
66 PASS Number(Infinity).toFixed(7) is "Infinity"
67 PASS Number(-Infinity).toFixed(7) is "-Infinity"
95 PASS Number(Infinity).toExponential() is "Infinity"
    [all...]
Number.js 37 shouldBe("Number.NEGATIVE_INFINITY", "-Infinity");
38 shouldBe("Number.POSITIVE_INFINITY", "Infinity");
46 shouldBe("Number.POSITIVE_INFINITY.toString(16)", "'Infinity'");
47 shouldBe("Number.NEGATIVE_INFINITY.toString(16)", "'-Infinity'");
78 shouldBe("Number(Infinity).toFixed(7)","\"Infinity\"");
79 shouldBe("Number(-Infinity).toFixed(7)","\"-Infinity\"");
111 shouldBe("Number(Infinity).toExponential()","\"Infinity\"");
    [all...]
  /external/chromium_org/v8/test/webkit/
string-trim-expected.txt 164 PASS trim.call(Infinity) is 'Infinity'
165 PASS trimLeft.call(Infinity) is 'Infinity'
166 PASS trimRight.call(Infinity) is 'Infinity'
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNumber.java 124 // * @return "NaN" if the number is NaN, Infinity or -Infinity if
138 // return "Infinity";
140 // return "-Infinity";
274 * @return "NaN" if the number is NaN, Infinity or -Infinity if
287 return "Infinity";
289 return "-Infinity";
  /external/chromium_org/content/common/android/
gin_java_bridge_value_unittest.cc 34 std::numeric_limits<float>::infinity()));
50 std::numeric_limits<double>::infinity()));
  /external/chromium_org/v8/src/
harmony-math.js 30 // Idempotent for NaN, +/-0 and +/-Infinity.
49 // Returns +/-1 for +/-Infinity.
60 // Idempotent for NaN, +/-0 and +/-Infinity.
72 // Idempotent for NaN and +Infinity.
83 // Returns NaN for NaN and +/- Infinity.
112 if (n === INFINITY || n === -INFINITY) return INFINITY;
  /external/chromium_org/v8/test/intl/number-format/
check-digit-ranges.js 34 assertThrows('Intl.NumberFormat(undefined, {minimumIntegerDigits: Infinity})');
35 assertThrows('Intl.NumberFormat(undefined, {minimumIntegerDigits: -Infinity})');
  /external/chromium_org/v8/test/mjsunit/compiler/
minus-zero.js 42 assertTrue(%_IsMinusZero(1/(-Infinity)));
46 assertFalse(%_IsMinusZero(1/Infinity));
  /external/chromium_org/v8/test/mjsunit/
double-truncation.js 44 RunOneTruncationTest(Infinity, 0);
46 RunOneTruncationTest(-Infinity, 0);
mod.js 43 if (answer == 0) assertEquals(-Infinity, 1/m);
47 if (answer == 0) assertEquals(-Infinity, 1/m);
number-limits.js 37 mulAboveMax == Infinity, "mul" + i);
39 addAboveMax == Infinity, "add" + i);
  /external/compiler-rt/lib/builtins/
divtf3.c 33 // Detect if a or b is zero, denormal, infinity, or NaN.
45 // infinity / infinity = NaN
47 // infinity / anything else = +/- infinity
51 // anything else / infinity = +/- 0
60 // anything else / zero = +/- infinity
181 // If we have overflowed the exponent, return infinity.
  /external/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/
get_long_double.pass.cpp 109 assert(v == INFINITY);
121 assert(v == INFINITY);
133 assert(v == -INFINITY);
145 assert(v == -INFINITY);
181 assert(v == INFINITY);
193 assert(v == INFINITY);
205 assert(v == INFINITY);
217 assert(v == INFINITY);
  /external/libcxx/test/utilities/function.objects/unord.hash/
floating.pass.cpp 39 std::size_t pinf = h(INFINITY);
40 std::size_t ninf = h(-INFINITY);
  /external/llvm/lib/Support/
IsInf.cpp 39 static int isinf(double x) { return ((x) == INFINITY) || ((x) == -INFINITY); }
  /external/nanopb-c/examples/using_double_on_avr/
double_conversion.c 84 return -INFINITY;
86 return INFINITY;
  /frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_Tables.h 95 /* The Gain is represented as a Q3.13 number to give a range of +8 to -infinity */
97 /* 0 is -infinity */
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/
get_long_double.pass.cpp 109 assert(v == INFINITY);
121 assert(v == INFINITY);
133 assert(v == -INFINITY);
145 assert(v == -INFINITY);
181 assert(v == INFINITY);
193 assert(v == INFINITY);
205 assert(v == INFINITY);
217 assert(v == INFINITY);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/unord.hash/
floating.pass.cpp 39 std::size_t pinf = h(INFINITY);
40 std::size_t ninf = h(-INFINITY);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/decimaltestdata/
copysign.decTest 36 cpsx011 copysign Infinity 11 -> Infinity
37 cpsx012 copysign -Infinity 11 -> Infinity
95 cpsx211 copysign Infinity -34 -> -Infinity
96 cpsx212 copysign -Infinity -34 -> -Infinity
ddCopySign.decTest 34 ddcps011 copysign Infinity 11 -> Infinity
35 ddcps012 copysign -Infinity 11 -> Infinity
93 ddcps211 copysign Infinity -34 -> -Infinity
94 ddcps212 copysign -Infinity -34 -> -Infinity
dqCopySign.decTest 34 dqcps011 copysign Infinity 11 -> Infinity
35 dqcps012 copysign -Infinity 11 -> Infinity
93 dqcps211 copysign Infinity -34 -> -Infinity
94 dqcps212 copysign -Infinity -34 -> -Infinity

Completed in 712 milliseconds

<<11121314151617181920>>