HomeSort by relevance Sort by last modified time
    Searched full:posinf (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
MathExtrasTest.cpp 182 double posInf = std::numeric_limits<double>::infinity();
186 EXPECT_EQ(M_PI_4, atan2(posInf, posInf));
187 EXPECT_EQ(3.0 * M_PI_4, atan2(posInf, negInf));
188 EXPECT_EQ(-M_PI_4, atan2(negInf, posInf));
191 EXPECT_EQ(0.0, fmod(0.0, posInf));
192 EXPECT_EQ(7.0, fmod(7.0, posInf));
193 EXPECT_EQ(-7.0, fmod(-7.0, posInf));
MathExtras.h 145 double posInf = std::numeric_limits<double>::infinity();
151 if (x == posInf && y == posInf)
153 else if (x == posInf && y == negInf)
155 else if (x == negInf && y == posInf)
  /cts/tests/tests/util/src/android/util/cts/
RationalTest.java 126 Rational posInf = POSITIVE_INFINITY;
130 assertEquals(posInf, posInf);
132 assertEquals(posInf, posInf2);
136 assertFalse(posInf.equals(negInf));
137 assertFalse(negInf.equals(posInf));
139 assertFalse(posInf.equals(r));
141 assertFalse(r.equals(posInf));
142 assertFalse(posInf.equals(nan));
144 assertFalse(nan.equals(posInf));
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
RationalTest.java 145 Rational posInf = POSITIVE_INFINITY;
149 assertEquals(posInf, posInf);
151 assertEquals(posInf, posInf2);
155 assertFalse(posInf.equals(negInf));
156 assertFalse(negInf.equals(posInf));
158 assertFalse(posInf.equals(r));
160 assertFalse(r.equals(posInf));
161 assertFalse(posInf.equals(nan));
163 assertFalse(nan.equals(posInf));
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
number-toprecision.js 33 var posInf = 1/0;
59 shouldThrow("(1234.567).toPrecision(posInf)");
63 shouldBeEqualToString("posInf.toPrecision()", "Infinity");
number-toprecision-expected.txt 52 PASS (1234.567).toPrecision(posInf) threw exception RangeError: toPrecision() argument must be between 1 and 21.
55 PASS posInf.toPrecision() is "Infinity"
number-toString.js 24 var posInf = 1/0;
86 shouldThrow("(1234.567).toString(posInf)");
89 shouldBeEqualToString("posInf.toString()", "Infinity");
number-tofixed.js 59 var posInf = 1/0;
97 shouldThrow("(1234.567).toFixed(posInf)");
100 shouldBeEqualToString("posInf.toFixed()", "Infinity");
number-tofixed-expected.txt 76 PASS (1234.567).toFixed(posInf) threw exception RangeError: toFixed() digits argument must be between 0 and 20.
78 PASS posInf.toFixed() is "Infinity"
number-toString-expected.txt 75 PASS (1234.567).toString(posInf) threw exception RangeError: toString() radix argument must be between 2 and 36.
77 PASS posInf.toString() is "Infinity"
  /external/chromium_org/v8/test/webkit/
number-toExponential.js 24 var posInf = 1/0;
60 shouldThrow("(1234.567).toExponential(posInf)");
63 shouldBeEqualToString("posInf.toExponential()", "Infinity");
number-toExponential-expected.txt 47 PASS (1234.567).toExponential(posInf) threw exception RangeError: toExponential() argument must be between 0 and 20.
49 PASS posInf.toExponential() is "Infinity"
  /external/chromium_org/third_party/WebKit/Source/core/html/
TimeRanges.cpp 67 double posInf = std::numeric_limits<double>::infinity();
71 inverted->add(negInf, posInf);
81 if (end != posInf)
82 inverted->add(end, posInf);
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
shared.rsh 38 static const float posinf() {
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
shared.rsh 38 static const float posinf() {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
decoder.py 24 NaN, PosInf, NegInf = _floatconstants()
53 'Infinity': PosInf,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
decoder.py 24 NaN, PosInf, NegInf = _floatconstants()
53 'Infinity': PosInf,
  /external/chromium_org/third_party/simplejson/
encoder.py 14 from simplejson.decoder import PosInf
270 _repr=FLOAT_REPR, _inf=PosInf, _neginf=-PosInf):
decoder.py 29 NaN, PosInf, NegInf = _floatconstants()
84 'Infinity': PosInf,
  /external/valgrind/main/VEX/priv/
guest_generic_x87.c 446 const ULong posInf = 0x7FF0000000000000ULL;
457 if (arg == posInf)
458 return getExp ? posInf : posInf;
460 return getExp ? posInf : negInf;
    [all...]
host_s390_isel.c 795 POSINF_6 | PosINF | POSINF_10
    [all...]
  /frameworks/rs/driver/runtime/
rs_cl.c 302 static const float posinf() { function
551 return posinf(0);
557 return copysign(posinf(), v);
559 return posinf();
    [all...]
  /frameworks/base/core/java/android/util/
Rational.java 476 return 1; // positive infinity is greater than any non-NaN/non-posInf value
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
radeon_setup_tgsi_llvm.c     [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_setup_tgsi_llvm.c     [all...]

Completed in 1775 milliseconds