HomeSort by relevance Sort by last modified time
    Searched defs:Double (Results 1 - 25 of 70) sorted by null

1 2 3

  /bionic/libm/upstream-freebsd/lib/msun/bsdsrc/
mathimpl.h 47 * IEEE double variable to zero. It must be expression-like for syntactic
55 _b_trunc(volatile double *_dp)
63 struct Double {
64 double a;
65 double b;
71 double __exp__D(double, double);
72 struct Double __log__D(double);
    [all...]
  /external/chromium/testing/gtest/samples/
sample3_unittest.cc 91 static int Double(int n) {
99 const Queue<int> * const new_q = q->Map(Double);
  /external/gtest/samples/
sample3_unittest.cc 91 static int Double(int n) {
99 const Queue<int> * const new_q = q->Map(Double);
  /external/libvpx/libvpx/third_party/googletest/src/samples/
sample3_unittest.cc 91 static int Double(int n) {
99 const Queue<int> * const new_q = q->Map(Double);
  /external/protobuf/gtest/samples/
sample3_unittest.cc 91 static int Double(int n) {
99 const Queue<int> * const new_q = q->Map(Double);
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Renderers/
DoubleRenderer.java 36 public static void writeTo(IndentingWriter writer, double val) throws IOException {
37 writer.write(Double.toString(val));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/float_to_double/
Test_float_to_double.java 54 double r = 0x1.fffffeP+127d;
63 double r = 0x0.000002P-126d;
80 assertTrue(Double.isNaN(t.run(Float.NaN)));
88 assertTrue(Double.isInfinite(t.run(Float.POSITIVE_INFINITY)));
96 assertTrue(Double.isInfinite(t.run(Float.NEGATIVE_INFINITY)));
103 * @title type of argument - double
  /libcore/luni/src/main/java/java/lang/
AssertionError.java 118 * {@link String#valueOf(double)} with the specified double value.
123 public AssertionError(double detailMessage) {
124 this(Double.toString(detailMessage));
  /external/clang/test/Sema/
overloadable.c 9 double *f(double) __attribute__((overloadable)); // okay, new
11 void test_f(int iv, float fv, double dv) {
14 double *dp = f(dv);
19 float *accept_funcptr(int (*)(int, double)) __attribute__((overloadable)); // \
22 void test_funcptr(int (*f1)(int, double),
38 double *f(int) __attribute__((overloadable)); // expected-error{{conflicting types for 'f'}}
40 double promote(float) __attribute__((__overloadable__)); // expected-note {{candidate}}
41 double promote(double) __attribute__((__overloadable__)); // expected-note {{candidate}
    [all...]
cast.c 10 double b;
11 b = (double)a; // expected-error {{pointer cannot be cast to type}}
23 typedef double Double;
27 typedef _Complex double CDouble;
36 (void) (Double) v;
50 (void) (Double) v;
64 (void) (Double) v;
78 (void) (Double) v;
85 void testDouble(Double v)
    [all...]
  /external/clang/test/SemaCXX/
pseudo-destructors.cpp 8 typedef double Double;
22 void f(A* a, Foo *f, int *i, double *d, int ii) {
47 i->Integer::~Double(); // expected-error{{the type of object expression ('int') does not match the type being destroyed ('Double' (aka 'double')) in pseudo-destructor expression}}
missing-namespace-qualifier-typo-corrections.cpp 10 int Double(int x) { return x + x; }
12 Double(toFoobar()); // expected-error{{use of undeclared identifier 'toFoobar'; did you mean 'barstool::toFoobar'?}}
26 if (toFoobar()) Double(7); // expected-error{{use of undeclared identifier 'toFoobar'; did you mean 'barstool::toFoobar'?}}
27 if (noFoobar()) Double(7); // expected-error{{use of undeclared identifier 'noFoobar'; did you mean 'barstool::toFoobar'?}}
28 if (moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'moreFoobar'; did you mean 'fizbin::nested::moreFoobar'}}
29 if (lessFoobar()) Double(7); // expected-error{{use of undeclared identifier 'lessFoobar'; did you mean 'fizbin::nested::lessFoobar'?}}
30 if (baztool::toFoobar()) Double(7); // expected-error{{use of undeclared identifier 'baztool'; did you mean 'fizbin::baztool'?}}
31 if (nested::moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'nested'; did you mean 'fizbin::nested'?}}
32 if (dummy::moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'dummy'; did you mean 'fizbin::dummy'?}}
33 if (dummy::mreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'dummy'; did you mean 'fizbin::dummy'?}}
    [all...]
  /external/guava/guava/src/com/google/common/io/
LittleEndianDataOutputStream.java 32 * double}, and {@code long} values.
102 * Writes a {@code double} as specified by
103 * {@link DataOutputStream#writeDouble(double)}, except using little-endian
108 @Override public void writeDouble(double v) throws IOException {
109 writeLong(Double.doubleToLongBits(v));
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPVariantData.h 49 Double,
60 static NPVariantData makeDouble(double value);
79 double doubleValue() const
81 ASSERT(type() == NPVariantData::Double);
110 double m_doubleValue;
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidFloatDoubleTest.java 27 Double d = Double.valueOf(1.0);
95 double pz = 0.0;
96 double nz = -0.0;
98 double pzero = 1.0 / Double.POSITIVE_INFINITY;
99 double nzero = 1.0 / Double.NEGATIVE_INFINITY;
123 assertEquals(Double.valueOf(pz), Double.valueOf(pz))
    [all...]
OldAndroidMathTest.java 25 private static final double HYP = Math.sqrt(2.0);
27 private static final double OPP = 1.0;
29 private static final double ADJ = 1.0;
34 public static void assertEquals(String message, double expected, double actual, double delta) {
51 // Test for method double java.lang.Math.abs(double)
53 assertTrue("Incorrect double abs value",
55 assertTrue("Incorrect double abs value"
    [all...]
  /external/easymock/src/org/easymock/internal/
MethodSerializationWrapper.java 38 primitiveTypes.put(Double.TYPE.getName(), Double.TYPE);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AtomicDoubleTest.java 23 private static final double[] VALUES = {
24 Double.NEGATIVE_INFINITY,
25 -Double.MAX_VALUE,
26 (double) Long.MIN_VALUE,
27 (double) Integer.MIN_VALUE,
30 -Double.MIN_VALUE,
33 Double.MIN_VALUE,
36 (double) Integer.MAX_VALUE,
37 (double) Long.MAX_VALUE,
38 Double.MAX_VALUE
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
MatrixCursorTest.java 203 mMatrixCursor.addRow(new Double[] { Double.MIN_VALUE, 0d, Double.MAX_VALUE });
226 assertEquals(Double.MIN_VALUE, mMatrixCursor.getDouble(COLUMN0_INDEX), 0.0d);
228 assertEquals(Double.MAX_VALUE, mMatrixCursor.getDouble(COLUMN2_INDEX), 0.0d);
230 assertEquals(Double.toString(Double.MIN_VALUE), mMatrixCursor.getString(COLUMN0_INDEX));
231 assertEquals(Double.toString(0d), mMatrixCursor.getString(COLUMN1_INDEX));
232 assertEquals(Double.toString(Double.MAX_VALUE), mMatrixCursor.getString(COLUMN2_INDEX))
    [all...]
  /external/javassist/src/main/javassist/bytecode/
ByteStream.java 93 public void writeDouble(double v) {
94 writeLong(Double.doubleToLongBits(v));
  /external/llvm/include/llvm/IR/
Intrinsics.h 82 Void, MMX, Metadata, Half, Float, Double,
  /external/valgrind/main/VEX/pub/
libvex_basictypes.h 80 typedef double Double; /* IEEE754 double-precision (64-bit) value */
  /libcore/luni/src/main/java/java/io/
DataOutputStream.java 29 * 64-bit double, byte strings, and {@link DataInput MUTF-8} encoded strings.
170 public final void writeDouble(double val) throws IOException {
171 writeLong(Double.doubleToLongBits(val));
  /cts/libs/json/src/com/android/json/stream/
JsonWriter.java 108 * public void writeDoublesArray(JsonWriter writer, List<Double> doubles) throws IOException {
110 * for (Double value : doubles) {
308 * @param value a finite value. May not be {@link Double#isNaN() NaNs} or
309 * {@link Double#isInfinite() infinities}.
312 public JsonWriter value(double value) throws IOException {
313 if (Double.isNaN(value) || Double.isInfinite(value)) {
317 out.append(Double.toString(value));
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-internal.h 55 // Due to C++ preprocessor weirdness, we need double indirection to
291 // (either single-precision or double-precision, depending on the
311 // For double, there are 11 exponent bits and 52 fraction bits.
318 // RawType: the raw floating-point type (either float or double)
355 // calculations are done with 80-bit precision, while double has 64
465 typedef FloatingPoint<double> Double;

Completed in 905 milliseconds

1 2 3