HomeSort by relevance Sort by last modified time
    Searched full:infinity (Results 101 - 125 of 681) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/compile/libbcc/runtime/test/Unit/ppc/
qmul_test.c 25 #define INFINITY __builtin_inf()
35 { INFINITY, 0.0, 0.0, 0.0, QNAN, 0.0 },
36 { -INFINITY, 0.0, 0.0, 0.0, QNAN, 0.0 },
37 { INFINITY, 0.0, -0.0, 0.0, QNAN, 0.0 },
38 { -INFINITY, 0.0, -0.0, 0.0, QNAN, 0.0 },
39 { INFINITY, 0.0, 1.0, 0.0, INFINITY, 0.0 },
40 { -INFINITY, 0.0, 1.0, 0.0, -INFINITY, 0.0 },
41 { INFINITY, 0.0, -1.0, 0.0, -INFINITY, 0.0 }
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
15.1.2.3-1.js 51 Infinity
93 array[item++] = new TestCase( SECTION, "parseFloat(' Infinity')", Infinity, parseFloat("Infinity") );
94 array[item++] = new TestCase( SECTION, "parseFloat(' Infinity ')", Infinity, parseFloat(' Infinity ') );
96 array[item++] = new TestCase( SECTION, "parseFloat('Infinity')", Infinity, parseFloat("Infinity") );
    [all...]
15.1.2.6.js 110 array[item++] = new TestCase( SECTION, "isNaN( Infinity )", false, isNaN(Infinity) );
112 array[item++] = new TestCase( SECTION, "isNaN( 'Infinity' )", false, isNaN("Infinity") );
113 array[item++] = new TestCase( SECTION, "isNaN( '-Infinity' )", false, isNaN("-Infinity") );
  /external/oprofile/libpp/
diff_container.cpp 12 /* older glibc has C99 INFINITY in _GNU_SOURCE */
66 symbol.diffs.fill(sym.sample.counts.size(), -INFINITY);
77 symbol.diffs.fill(sym.sample.counts.size(), INFINITY);
  /external/v8/test/mjsunit/
string-lastindexof.js 35 assertEquals(10, s.lastIndexOf("test", Infinity), "tinf");
51 assertEquals(0, s.lastIndexOf("test", -Infinity), "tneginf");
75 assertEquals(-1, s.lastIndexOf(nonInitialMatch, -Infinity), "noninitneginf");
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/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.4.9.js 54 testcases[tc++] = new TestCase( SECTION, "!(Infinity)", false, !(Number.POSITIVE_INFINITY) );
55 testcases[tc++] = new TestCase( SECTION, "!(-Infinity)", false, !(Number.NEGATIVE_INFINITY) );
73 testcases[tc++] = new TestCase( SECTION, "!(new Number(Infinity))", false, !(new Number(Number.POSITIVE_INFINITY)) );
  /external/webkit/Source/WebCore/platform/graphics/
FloatPoint.cpp 80 return std::numeric_limits<float>::infinity();
99 if (pSlope == std::numeric_limits<float>::infinity()) {
104 if (dSlope == std::numeric_limits<float>::infinity()) {
  /frameworks/compile/libbcc/runtime/lib/
int_lib.h 26 #if !defined(INFINITY) && defined(HUGE_VAL)
27 #define INFINITY HUGE_VAL
28 #endif /* INFINITY */
  /libcore/luni/src/test/java/libcore/java/lang/
FloatTest.java 47 assertEquals(Float.POSITIVE_INFINITY, Float.parseFloat("+Infinity"));
48 assertEquals(Float.POSITIVE_INFINITY, Float.parseFloat("Infinity"));
49 assertEquals(Float.NEGATIVE_INFINITY, Float.parseFloat("-Infinity"));
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
fpu_control.h 49 * 01 - rounding down (toward - infinity)
50 * 10 - rounding up (toward + infinity)
53 * IC: Infinity control
  /dalvik/dx/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.
  /dalvik/tests/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.
  /dalvik/tests/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/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
9.4-1.js 27 3. If Result(1) is +0, -0, Infinity, or -Infinity,
47 For additional special cases (0, +0, Infinity, -Infinity,
90 array[item++] = new TestCase( SECTION, "td = new Date(Infinity); td.valueOf()", Number.NaN, eval("td = new Date(Number.POSITIVE_INFINITY); td.valueOf()") );
91 array[item++] = new TestCase( SECTION, "td = new Date(-Infinity); td.valueOf()", Number.NaN, eval("td = new Date(Number.NEGATIVE_INFINITY); td.valueOf()") );
9.4-2.js 27 3. If Result(1) is +0, -0, Infinity, or -Infinity,
47 For additional special cases (0, +0, Infinity, -Infinity,
90 array[item++] = new TestCase( SECTION, "td = new Date(Infinity); td.valueOf()", Number.NaN, eval("td = new Date(Number.POSITIVE_INFINITY); td.valueOf()") );
91 array[item++] = new TestCase( SECTION, "td = new Date(-Infinity); td.valueOf()", Number.NaN, eval("td = new Date(Number.NEGATIVE_INFINITY); td.valueOf()") );
  /libcore/junit/src/main/java/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/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/llvm/lib/Support/
IsInf.cpp 39 static int isinf(double x) { return ((x) == INFINITY) || ((x) == -INFINITY); }
  /external/llvm/test/CodeGen/X86/
compare-inf.ll 3 ; Convert oeq and une to ole/oge/ule/uge when comparing with infinity
4 ; and negative infinity, because those are more efficient on x86.
  /external/webkit/Source/WebCore/platform/text/
LocalizedNumber.h 42 // scientific notation, NaN, +Infinity and -Infinity, and doesn't need
  /frameworks/base/core/java/android/util/
FloatMath.java 34 * positive infinity) integer value which is less than the argument.
43 * negative infinity) integer value which is greater than the argument.
  /frameworks/base/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 */
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
FloatMath_Delegate.java 39 * positive infinity) integer value which is less than the argument.
51 * negative infinity) integer value which is greater than the argument.

Completed in 323 milliseconds

1 2 3 45 6 7 8 91011>>