/external/webkit/Source/WebCore/html/ |
NumberInputType.cpp | 53 static const double numberDefaultStep = 1.0; 54 static const double numberStepScaleFactor = 1.0; 66 double NumberInputType::valueAsNumber() const 68 return parseToDouble(element()->value(), numeric_limits<double>::quiet_NaN()); 71 void NumberInputType::setValueAsNumber(double newValue, ExceptionCode& ec) const 97 const double nan = numeric_limits<double>::quiet_NaN(); 98 double doubleValue = parseToDouble(value, nan); 104 const double nan = numeric_limits<double>::quiet_NaN() [all...] |
HTMLMeterElement.cpp | 83 double HTMLMeterElement::min() const 85 double min = 0; 90 void HTMLMeterElement::setMin(double min, ExceptionCode& ec) 99 double HTMLMeterElement::max() const 101 double max = std::max(1.0, min()); 106 void HTMLMeterElement::setMax(double max, ExceptionCode& ec) 115 double HTMLMeterElement::value() const 117 double value = 0; 122 void HTMLMeterElement::setValue(double value, ExceptionCode& ec) 131 double HTMLMeterElement::low() cons [all...] |
/external/llvm/test/CodeGen/X86/ |
avx-blend.ll | 26 define <2 x double> @vsel_double(<2 x double> %v1, <2 x double> %v2) { 27 %vsel = select <2 x i1> <i1 true, i1 false>, <2 x double> %v1, <2 x double> %v2 28 ret <2 x double> %vsel 72 define <8 x double> @vsel_double8(<8 x double> %v1, <8 x double> %v2) { 73 %vsel = select <8 x i1> <i1 true, i1 false, i1 false, i1 false, i1 true, i1 false, i1 false, i1 false>, <8 x double> %v1, <8 x double> %v [all...] |
/external/guava/guava-tests/test/com/google/common/math/ |
DoubleMathTest.java | 59 BigInteger MAX_DOUBLE_VALUE = BigDecimal.valueOf(Double.MAX_VALUE).toBigInteger(); 73 for (double d : INTEGRAL_DOUBLE_CANDIDATES) { 90 for (double d : FRACTIONAL_DOUBLE_CANDIDATES) { 107 for (double d : INTEGRAL_DOUBLE_CANDIDATES) { 122 for (double d : FRACTIONAL_DOUBLE_CANDIDATES) { 133 DoubleMath.roundToInt(Double.NaN, mode); 142 DoubleMath.roundToInt(Double.POSITIVE_INFINITY, mode); 146 DoubleMath.roundToInt(Double.NEGATIVE_INFINITY, mode); 153 for (double d : INTEGRAL_DOUBLE_CANDIDATES) { 170 for (double d : FRACTIONAL_DOUBLE_CANDIDATES) [all...] |
/external/llvm/test/Transforms/GVN/ |
pre-load.ll | 112 ;void test5(int N, double *G) { 118 define void @test5(i32 %N, double* nocapture %G) nounwind ssp { 130 ; CHECK: load double* 136 %scevgep = getelementptr double* %G, i64 %tmp6 137 %scevgep7 = getelementptr double* %G, i64 %indvar 138 %2 = load double* %scevgep7, align 8 139 %3 = load double* %scevgep, align 8 140 %4 = fadd double %2, %3 141 store double %4, double* %scevgep7, align [all...] |
/libcore/luni/src/main/java/java/lang/ |
Math.java | 28 * The double value closest to e, the base of the natural logarithm. 30 public static final double E = 2.718281828459045; 33 * The double value closest to pi, the ratio of a circle's circumference to 36 public static final double PI = 3.141592653589793; 57 public static native double abs(double d); 87 * Returns the closest double approximation of the arc cosine of the 102 public static native double acos(double d); 105 * Returns the closest double approximation of the arc sine of the argumen [all...] |
/libcore/luni/src/main/java/java/nio/ |
DoubleBuffer.java | 25 * A double buffer can be created in either one of the following ways: 27 * <li>{@link #allocate(int) Allocate} a new double array and create a buffer 29 * <li>{@link #wrap(double[]) Wrap} an existing double array to create a new 33 * create a double buffer based on a byte buffer.</li> 40 * Creates a double buffer based on a newly allocated double array. 44 * @return the created double buffer. 56 * Creates a new double buffer by wrapping the given double array [all...] |
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/ |
sparse_weight_vector.cpp | 31 static double kNormalizerMin = 1e-20; 32 static double kNormalizerMax = 1e20; 49 const double multiplier, 51 const double additive_const) { 63 const double multiplier, 65 const double additive_const) { 78 const double multiplier, 80 const double additive_const) { 95 const double multiplier, 97 const double additive_const) [all...] |
/bionic/libm/src/ |
math_private.h | 37 * A union which permits us to convert between a double and two 32 bit 45 double value; 59 double value; 69 /* Get two 32 bit ints from a double. */ 79 /* Get the more significant 32 bit int from a double. */ 88 /* Get the less significant 32 bit int from a double. */ 97 /* Set a double from two 32 bit ints. */ 107 /* Set the more significant 32 bits of a double from an int. */ 117 /* Set the less significant 32 bits of a double from an int. */ 178 static __inline double comple [all...] |
/dalvik/docs/ |
porting-proto.c.txt | 41 double fadd64(double x, double y) { return x + y; } 46 double fsub64(double x, double y) { return x - y; } 53 double fmul64(double x, double y) { return x * y; } 58 double fdiv64(double x, double y) { return x / y; [all...] |
/external/srec/srec/clib/ |
jacobi.c | 38 static void Rotate(double **a, int dim, int i, int j, int k, int l, double s, 39 double tau); 41 static double SumOffDiag(double **mat, int dim); 46 void Jacobi(double **matrix, int dim, double *egval, double **egvec) 56 double g, thresh, sum, c, s, t, tau, h; 57 double *b, *d, *z [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/rem_double/ |
Test_rem_double.java | 51 * @title Arguments = Double.MAX_VALUE, Double.NaN 55 assertEquals(Double.NaN, t.run(Double.MAX_VALUE, Double.NaN)); 59 * @title Arguments = Double.POSITIVE_INFINITY, 60 * Double.NEGATIVE_INFINITY 64 assertEquals(Double.NaN, t.run(Double.POSITIVE_INFINITY, 65 Double.NEGATIVE_INFINITY)) [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/rem_double_2addr/ |
Test_rem_double_2addr.java | 51 * @title Arguments = Double.MAX_VALUE, Double.NaN 55 assertEquals(Double.NaN, t.run(Double.MAX_VALUE, Double.NaN)); 59 * @title Arguments = Double.POSITIVE_INFINITY, 60 * Double.NEGATIVE_INFINITY 64 assertEquals(Double.NaN, t.run(Double.POSITIVE_INFINITY, 65 Double.NEGATIVE_INFINITY)) [all...] |
/dalvik/tests/004-annotations/src/android/test/anno/ |
AnnoFancyParameter.java | 9 double factor();
|
/dalvik/vm/mterp/arm-vfp/ |
fbinopWide2addr.S | 6 * For: add-double/2addr, sub-double/2addr, mul-double/2addr, 7 * div-double/2addr
|
/dalvik/vm/mterp/c/ |
OP_REM_DOUBLE_2ADDR.cpp | 4 ILOGV("|%s-double-2addr v%d,v%d", "mod", vdst, vsrc1);
|
/external/clang/test/ASTMerge/Inputs/ |
namespace2.cpp | 16 extern double z;
|
/external/clang/test/CodeGen/ |
2003-06-22-UnionCrash.c | 6 double Point_Slope[2];
|
2005-07-26-UnionInitCrash.c | 3 union { char bytes[8]; double alignment; }EQ1 = {0,0,0,0,0,0,0,0};
|
2005-09-20-ComplexConstants.c | 3 const double _Complex x[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
|
2009-04-28-UnionArrayCrash.c | 5 double F;
|
imaginary.c | 4 double _Imaginary foo; // expected-error {{imaginary types are not supported}}
|
long-double-x86.c | 3 long double x = 0;
|
/external/clang/test/CodeGenCXX/ |
2010-06-22-ZeroBitfield.cpp | 3 struct s8_1 { double x; };
|
conversion-operator-base.cpp | 5 struct B : A { double z; };
|