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

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/text/
DecimalFormatSymbols.java 54 private String infinity, NaN, currencySymbol, intlCurrencySymbol; field in class:DecimalFormatSymbols
94 this.infinity = localeData.infinity;
180 infinity.equals(obj.infinity) &&
200 ",infinity=" + infinity +
277 * Returns the string which represents infinity.
279 * @return the infinity symbol as a string.
282 return infinity;
    [all...]
  /external/libxml2/
trionan.c 19 * (that is, NaNs and infinity). They provide the capability to detect
99 * to indicate special numbers (e.g. NaN and Infinity), so the
158 /* Bit-pattern for infinity */
253 Generate positive infinity.
255 @return Floating-point representation of positive infinity.
265 #if defined(INFINITY) && defined(__STDC_IEC_559__)
266 result = (double)INFINITY;
274 * as infinity. Otherwise we have to resort to an overflow
275 * operation to generate infinity.
297 Generate negative infinity
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.12.js 56 array[item++] = new TestCase( SECTION, "Math.min()", Infinity, Math.min() );
78 array[item++] = new TestCase( SECTION, "Infinity/Math.min(0,-0)", -Infinity, Infinity/Math.min(0,-0) );
79 array[item++] = new TestCase( SECTION, "Infinity/Math.min(-0,-0)", -Infinity, Infinity/Math.min(-0,-0) );
15.8.2.17.js 31 - if x == Infinity return Infinity
60 array[item++] = new TestCase( SECTION, "Math.sqrt(-Infinity)", Number.NaN, Math.sqrt(Number.NEGATIVE_INFINITY));
65 array[item++] = new TestCase( SECTION, "Infinity/Math.sqrt(-0)", -Infinity, Infinity/Math.sqrt(-0) );
66 array[item++] = new TestCase( SECTION, "Math.sqrt(Infinity)", Number.POSITIVE_INFINITY, Math.sqrt(Number.POSITIVE_INFINITY));
  /frameworks/compile/libbcc/runtime/lib/ppc/
divtc3.c 8 #if !defined(INFINITY) && defined(HUGE_VAL)
9 #define INFINITY HUGE_VAL
10 #endif /* INFINITY */
61 real.s.hi = __builtin_copysign(INFINITY,cDD.s.hi) * aDD.s.hi;
63 imag.s.hi = __builtin_copysign(INFINITY,cDD.s.hi) * bDD.s.hi;
71 real.s.hi = INFINITY * (aDD.s.hi*cDD.s.hi + bDD.s.hi*dDD.s.hi);
73 imag.s.hi = INFINITY * (bDD.s.hi*cDD.s.hi - aDD.s.hi*dDD.s.hi);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
DecimalFormatProperties.java 35 * infinity CDATA "Infinity"
180 * Set the "infinity" attribute.
181 * infinity specifies the string used to represent infinity;
182 * the default value is the string Infinity.
184 * @param inf String to use as the "infinity" attribute.
192 * Get the "infinity" attribute.
193 * infinity specifies the string used to represent infinity;
    [all...]
  /libcore/luni/src/main/java/java/security/spec/
ECPublicKeySpec.java 38 * if the specified point {@code W} is at infinity.
50 // throw IllegalArgumentException if w is point at infinity
52 throw new IllegalArgumentException("the w parameter is point at infinity");
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue_generated_init.cpp 51 case 20: return QPair<QString, QScriptValue>("QScriptValue(\"Infinity\")", QScriptValue("Infinity"));
52 case 21: return QPair<QString, QScriptValue>("QScriptValue(\"-Infinity\")", QScriptValue("-Infinity"));
79 case 48: return QPair<QString, QScriptValue>("QScriptValue(0, \"Infinity\")", QScriptValue(0, "Infinity"));
80 case 49: return QPair<QString, QScriptValue>("QScriptValue(0, \"-Infinity\")", QScriptValue(0, "-Infinity"));
107 case 76: return QPair<QString, QScriptValue>("QScriptValue(engine, \"Infinity\")", QScriptValue(engine, "Infinity"));
    [all...]
tst_qscriptvalue_generated_istype.cpp 48 "QScriptValue(\"Infinity\")",
49 "QScriptValue(\"-Infinity\")",
76 "QScriptValue(0, \"Infinity\")",
77 "QScriptValue(0, \"-Infinity\")",
104 "QScriptValue(engine, \"Infinity\")",
105 "QScriptValue(engine, \"-Infinity\")",
151 "engine->evaluate(\"Infinity\")",
152 "engine->evaluate(\"-Infinity\")",
314 "engine->evaluate(\"Infinity\")",
315 "engine->evaluate(\"-Infinity\")"};
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/String/
charCodeAt.js 52 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt( Infinity)", NaN, aString.charCodeAt( Infinity));
53 testcases[count++] = new TestCase( SECTION, "aString.charCodeAt(-Infinity)", NaN, aString.charCodeAt(-Infinity));
  /frameworks/compile/libbcc/runtime/lib/
divdc3.c 40 __real__ z = copysign(INFINITY, __c) * __a;
41 __imag__ z = copysign(INFINITY, __c) * __b;
47 __real__ z = INFINITY * (__a * __c + __b * __d);
48 __imag__ z = INFINITY * (__b * __c - __a * __d);
divsc3.c 40 __real__ z = copysignf(INFINITY, __c) * __a;
41 __imag__ z = copysignf(INFINITY, __c) * __b;
47 __real__ z = INFINITY * (__a * __c + __b * __d);
48 __imag__ z = INFINITY * (__b * __c - __a * __d);
  /libcore/luni/src/main/java/java/math/
RoundingMode.java 27 * Rounding mode where positive values are rounded towards positive infinity
28 * and negative values towards negative infinity.
42 * Rounding mode to round towards positive infinity. For positive values
51 * Rounding mode to round towards negative infinity. For positive values
  /external/protobuf/src/google/protobuf/
generated_message_util.cc 43 double Infinity() {
44 return std::numeric_limits<double>::infinity();
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
try-001.js 32 TryNewJavaInteger( Infinity, Infinity );
  /frameworks/base/include/cpustats/
CentralTendencyStatistics.h 28 mMean(NAN), mMedian(NAN), mMinimum(INFINITY), mMaximum(-INFINITY), mN(0), mM2(0),
  /frameworks/base/libs/cpustats/
CentralTendencyStatistics.cpp 42 mMinimum = INFINITY;
43 mMaximum = -INFINITY;
  /external/v8/test/mjsunit/
div-mod.js 95 // dividend is an infinity. Return dividend if divisor is an infinity.
99 if (dividend == Infinity) { return NaN; }
101 if (divisor == Infinity) { return sign * dividend; }
123 // All combinations of NaN, Infinity, normal, denormal and zero.
138 Infinity
double-equals.js 39 assertFalse(NaN == Infinity, "NaN == Inf");
40 assertFalse(Infinity == NaN, "Inf == NaN");
44 assertTrue(Infinity == Infinity, "Inf == Inf");
45 assertTrue(-Infinity == -Infinity, "-Inf == -Inf");
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Number/
15.7.4.2-1.js 62 array[item++] = new TestCase(SECTION, "var MYNUM = new Number(Infinity); MYNUM.toString(10)", "Infinity", "var MYNUM = new Number(Infinity); MYNUM.toString(10)" );
63 array[item++] = new TestCase(SECTION, "var MYNUM = new Number(-Infinity); MYNUM.toString(10)", "-Infinity", "var MYNUM = new Number(-Infinity); MYNUM.toString(10)" );
  /external/valgrind/main/none/tests/arm/
neon64.c     [all...]
neon128.c     [all...]
  /libcore/luni/src/main/java/java/lang/
StringToReal.java 33 boolean infinity; field in class:StringToReal.StringExponentPair
37 if (infinity) {
129 result.infinity = true;
200 result.infinity = true;
208 // Parses "+Nan", "NaN", "-Nan", "+Infinity", "Infinity", and "-Infinity", case-insensitively.
224 if (length == 8 && name.regionMatches(false, i, "Infinity", 0, 8)) {
264 if (info.infinity || info.zero) {
305 if (info.infinity || info.zero)
    [all...]
  /external/webkit/LayoutTests/fast/xpath/4XPath/Core/
test_numeric_expr.html 15 +-Infinity * +-Infinity = +-Infinity
16 +-Infinity * 0 = NaN
18 n div +-Infinity = 0
19 +-nonzero div 0 = +-Infinity
20 +-Infinity div +-Infinity = NaN
23 Infinity + Infinity = Infinit
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
float-weight.h 29 static const float kPosInfinity = numeric_limits<float>::infinity();
87 return strm << "Infinity";
89 return strm << "-Infinity";
99 if (s == "Infinity") {
101 } else if (s == "-Infinity") {

Completed in 468 milliseconds

1 2 34 5 6 7 8 91011>>