Searched refs:Double (Results 51 - 75 of 536) sorted by relevance

1234567891011>>

/external/lldb/tools/lldb-perf/lib/
H A DResults.h25 class Double;
37 Double, member in class:lldb_perf::Results::Result::Type
75 Double *
78 if (m_type == Type::Double)
79 return (Double *)this;
231 class Double : public Result class in class:lldb_perf::Results
234 Double (const char *name, const char *description, double value) : function in class:lldb_perf::Results::Double
235 Result (Type::Double, name, description),
241 ~Double()
/external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
H A DComplex.java35 * infinite values according to the rules for {@link java.lang.Double}
55 public static final Complex NaN = new Complex(Double.NaN, Double.NaN);
59 public static final Complex INF = new Complex(Double.POSITIVE_INFINITY, Double.POSITIVE_INFINITY);
93 isNaN = Double.isNaN(real) || Double.isNaN(imaginary);
95 (Double.isInfinite(real) || Double.isInfinite(imaginary));
102 * <code>NaN</code> and <code>Double
[all...]
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
H A DListViewActivity.java89 Color.rgb(new Double(rl * 255).intValue(), new Double(gl * 255).intValue(), new Double(bl * 255).intValue()),
90 Color.rgb(new Double(rp * 255).intValue(), new Double(gp * 255).intValue(), new Double(bp * 255).intValue()),
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DContinuedFraction.java135 double relativeError = Double.MAX_VALUE;
143 if (Double.isInfinite(p2) || Double.isInfinite(q2)) {
169 infinite = Double.isInfinite(p2) || Double.isInfinite(q2);
185 if (Double.isNaN(r)) {
/external/guava/guava/src/com/google/common/primitives/
H A DDoubles.java23 import static java.lang.Double.NEGATIVE_INFINITY;
24 import static java.lang.Double.POSITIVE_INFINITY;
45 * already found in either {@link Double} or {@link Arrays}.
64 public static final int BYTES = Double.SIZE / Byte.SIZE;
68 * {@code ((Double) value).hashCode()}.
74 return ((Double) value).hashCode();
76 // long bits = Double.doubleToLongBits(value);
82 * returned is the same as that of <code>((Double) a).{@linkplain
83 * Double#compareTo compareTo}(b)</code>. As with that method, {@code NaN} is
87 * Double#compar
[all...]
/external/guava/guava-tests/test/com/google/common/math/
H A DMathTesting.java179 static final int MAX_EXPONENT = 1023; // Double.MAX_EXPONENT not present in JDK5
207 static final ImmutableSet<Double> INTEGRAL_DOUBLE_CANDIDATES;
208 static final ImmutableSet<Double> FRACTIONAL_DOUBLE_CANDIDATES;
209 static final Iterable<Double> INFINITIES = Doubles.asList(
210 Double.POSITIVE_INFINITY,
211 Double.NEGATIVE_INFINITY);
212 static final Iterable<Double> FINITE_DOUBLE_CANDIDATES;
213 static final Iterable<Double> POSITIVE_FINITE_DOUBLE_CANDIDATES;
214 static final Iterable<Double> ALL_DOUBLE_CANDIDATES;
215 static final Iterable<Double> DOUBLE_CANDIDATES_EXCEPT_NA
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DSecondMoment.java35 * Returns <code>Double.NaN</code> if no data values have been added and
58 m2 = Double.NaN;
90 m2 = Double.NaN;
/external/javassist/src/main/javassist/bytecode/annotation/
H A DDoubleMemberValue.java24 * Double floating-point number constant value.
63 return new Double(getValue());
88 return Double.toString(getValue());
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/serialization/
H A DMarshalFloat.java38 result = new Double(stringValue);
53 cm.addMapping(cm.xsd, "double", Double.class, this);
/external/v8/src/
H A Ddouble.h18 class Double { class in namespace:v8::internal
28 Double() : d64_(0) {} function in class:v8::internal::Double
29 explicit Double(double d) : d64_(double_to_uint64(d)) {} function in class:v8::internal::Double
30 explicit Double(uint64_t d64) : d64_(d64) {} function in class:v8::internal::Double
31 explicit Double(DiyFp diy_fp) function in class:v8::internal::Double
34 // The value encoded by this Double must be greater or equal to +0.0.
42 // The value encoded by this Double must be strictly greater than 0.
66 if (d64_ == kInfinity) return Double(kInfinity).value();
72 return Double(d64_ - 1).value();
74 return Double(d64
[all...]
H A Dproperty-details-inl.h21 if (type->Is(Type::Number())) return Representation::Double();
/external/v8/test/cctest/
H A Dtest-code-stubs.cc48 int32_t shifted_mask = static_cast<int32_t>(Double::kExponentMask >> 32);
50 (Double::kPhysicalSignificandSize - 32)) -
58 static_cast<uint32_t>(Double::kPhysicalSignificandSize);
60 if ((exponent - Double::kPhysicalSignificandSize) < 32) {
61 result = dbl.u[0] << (exponent - Double::kPhysicalSignificandSize);
65 (bit_cast<uint64_t>(d) & Double::kSignificandMask) | Double::kHiddenBit;
66 big_result = big_result >> (Double::kPhysicalSignificandSize - exponent);
/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
H A DExponentialDistributionImpl.java109 public double density(Double x) {
157 * Returns 0 for p=0 and <code>Double.POSITIVE_INFINITY</code> for p=1.</p>
173 ret = Double.POSITIVE_INFINITY;
229 return Double.MAX_VALUE;
285 * @return upper bound of the support (always Double.POSITIVE_INFINITY)
289 return Double.POSITIVE_INFINITY;
H A DBetaDistributionImpl.java75 z = Double.NaN;
94 z = Double.NaN;
108 z = Double.NaN;
120 if (Double.isNaN(z)) {
133 public double density(Double x) {
H A DFDistributionImpl.java134 * Returns 0 for p=0 and <code>Double.POSITIVE_INFINITY</code> for p=1.</p>
150 return Double.POSITIVE_INFINITY;
180 return Double.MAX_VALUE;
300 * @return upper bound of the support (always Double.POSITIVE_INFINITY)
304 return Double.POSITIVE_INFINITY;
327 return Double.NaN;
358 return Double.NaN;
H A DGammaDistributionImpl.java110 * Returns 0 for p=0 and <code>Double.POSITIVE_INFINITY</code> for p=1.</p>
126 return Double.POSITIVE_INFINITY;
217 public double density(Double x) {
233 return Double.MIN_VALUE;
258 ret = Double.MAX_VALUE;
320 * @return upper bound of the support (always Double.POSITIVE_INFINITY)
324 return Double.POSITIVE_INFINITY;
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
H A DProduct.java56 value = Double.NaN;
102 value = Double.NaN;
108 * the input array, or <code>Double.NaN</code> if the designated subarray
116 * @return the product of the values or Double.NaN if length = 0
122 double product = Double.NaN;
134 * the input array, or <code>Double.NaN</code> if the designated subarray
156 * @return the product of the values or Double.NaN if length = 0
162 double product = Double.NaN;
191 * @return the product of the values or Double.NaN if length = 0
H A DSum.java55 value = Double.NaN;
101 value = Double.NaN;
107 * the input array, or <code>Double.NaN</code> if the designated subarray
115 * @return the sum of the values or Double.NaN if length = 0
121 double sum = Double.NaN;
133 * the input array, or <code>Double.NaN</code> if the designated subarray
154 * @return the sum of the values or Double.NaN if length = 0
160 double sum = Double.NaN;
188 * @return the sum of the values or Double.NaN if length = 0
H A DSumOfSquares.java54 value = Double.NaN;
100 value = Double.NaN;
106 * the input array, or <code>Double.NaN</code> if the designated subarray
114 * @return the sum of the squares of the values or Double.NaN if length = 0
120 double sumSq = Double.NaN;
/external/objenesis/main/src/org/objenesis/
H A DObjenesisException.java29 private static final boolean jdk14 = (Double.parseDouble(System
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DDoubleObjectPropertyEditor.java21 * The {@link PropertyEditor} for {@link Double}.
48 if (value instanceof Double) {
78 Double value;
80 value = Double.valueOf(text);
H A DDoublePropertyEditor.java47 return Double.toString(doubleValue);
70 Double value;
72 value = Double.valueOf(text);
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DAtomicDoubleTest.java24 Double.NEGATIVE_INFINITY,
25 -Double.MAX_VALUE,
30 -Double.MIN_VALUE,
33 Double.MIN_VALUE,
38 Double.MAX_VALUE,
39 Double.POSITIVE_INFINITY,
40 Double.NaN,
46 return Double.doubleToRawLongBits(x) == Double.doubleToRawLongBits(y);
50 assertEquals(Double
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXNumber.java118 return (Double.isNaN(m_val) || (m_val == 0.0)) ? false : true;
131 // if (Double.isNaN(m_val))
135 // else if (Double.isInfinite(m_val))
148 // String s = Double.toString(m_val);
280 if (Double.isNaN(m_val))
284 else if (Double.isInfinite(m_val))
293 String s = Double.toString(num);
375 * @return The value of this XNumber as a Double object
380 setObject(new Double(m_val));
/external/proguard/src/proguard/evaluation/value/
H A DParticularDoubleValue.java138 return Double.doubleToRawLongBits(this.value) ==
139 Double.doubleToRawLongBits(other.value) ?
205 Double.doubleToLongBits(this.value) ==
206 Double.doubleToLongBits(((ParticularDoubleValue)object).value);
213 (int)Double.doubleToLongBits(value);

Completed in 902 milliseconds

1234567891011>>