/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/chromium_org/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/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));
|
/libcore/luni/src/main/native/ |
java_lang_Double.cpp | 17 #define LOG_TAG "Double" 27 union Double { 29 double d; 35 Double d; 42 Double d; 48 Double d; 54 NATIVE_METHOD(Double, doubleToLongBits, "(D)J"), 55 NATIVE_METHOD(Double, doubleToRawLongBits, "(D)J"), 56 NATIVE_METHOD(Double, longBitsToDouble, "(J)D"), 59 return jniRegisterNativeMethods(env, "java/lang/Double", gMethods, NELEM(gMethods)) [all...] |
/ndk/sources/third_party/googletest/googletest/samples/ |
sample3_unittest.cc | 91 static int Double(int n) { 99 const Queue<int> * const new_q = q->Map(Double);
|
/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 | 117 * {@link String#valueOf(double)} with the specified double value. 122 public AssertionError(double detailMessage) { 123 this(Double.toString(detailMessage));
|
/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/chromium_org/crypto/ |
ghash.cc | 65 product_table_[Reverse(i)] = Double(product_table_[Reverse(i/2)]); 145 GaloisHash::FieldElement GaloisHash::Double(const FieldElement& x) {
|
/external/clang/test/Sema/ |
overloadable.c | 10 double *f(double) __attribute__((overloadable)); // okay, new 12 void test_f(int iv, float fv, double dv) { 15 double *dp = f(dv); 20 float *accept_funcptr(int (*)(int, double)) __attribute__((overloadable)); // \ 23 void test_funcptr(int (*f1)(int, double), 39 double *f(int) __attribute__((overloadable)); // expected-error{{conflicting types for 'f'}} 41 double promote(float) __attribute__((__overloadable__)); // expected-note {{candidate}} 42 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; 72 (void) (Double) v; 86 (void) (Double) v; 93 void testDouble(Double v) [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));
|
/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 | 80 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));
|