HomeSort by relevance Sort by last modified time
    Searched full:double (Results 626 - 650 of 10424) sorted by null

<<21222324252627282930>>

  /external/llvm/test/CodeGen/X86/
2009-01-31-BigShift3.ll 9 %struct.ObjPoint = type { double, double, double, double, double, double }
11 %struct.Point = type { double, double, double }
17 define fastcc void @ScaleObjectAdd(%struct.ObjectStruct* %o, double %sx, double %sy, double %sz) nounwind
    [all...]
avx-256.ll 4 @y = common global <4 x double> zeroinitializer, align 32
12 store <4 x double> zeroinitializer, <4 x double>* @y, align 32
  /external/llvm/test/ExecutionEngine/
2003-01-15-AlignmentTest.ll 5 %P = alloca double ; <double*> [#uses=1]
6 %R = ptrtoint double* %P to i32 ; <i32> [#uses=1]
  /external/skia/gpu/include/
GrStopwatch.h 29 * - static double Diff(const TIMESTAMP& begin, const TIMESTAMP& end) :
46 double lastLap = lapTime();
56 double lastLap = lapTime();
75 double totalTime() const {
84 double lapTime() const {
93 double fTotalElapsed;
113 static double Elapsed(const Timestamp& begin, const Timestamp& end) {
114 double diff = (double)(end.QuadPart - begin.QuadPart);
118 static double Scale()
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
util.cpp 18 double atof_dot(const char *str)
22 double result = _atof_l(str, l);
26 double result;
  /external/webkit/Source/WebCore/html/
BaseDateAndTimeInputType.cpp 50 static const double msecPerMinute = 60 * 1000;
51 static const double msecPerSecond = 1000;
53 double BaseDateAndTimeInputType::valueAsDate() const
58 void BaseDateAndTimeInputType::setValueAsDate(double value, ExceptionCode&) const
63 double BaseDateAndTimeInputType::valueAsNumber() const
65 return parseToDouble(element()->value(), numeric_limits<double>::quiet_NaN());
68 void BaseDateAndTimeInputType::setValueAsNumber(double newValue, ExceptionCode&) const
85 const double nan = numeric_limits<double>::quiet_NaN();
86 double doubleValue = parseToDouble(value, nan)
    [all...]
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...]
  /packages/inputmethods/PinyinIME/jni/share/
ngram.cpp 30 if (*static_cast<const double*>(p1) < *static_cast<const double*>(p2))
32 if (*static_cast<const double*>(p1) > *static_cast<const double*>(p2))
37 inline double distance(double freq, double code) {
43 int qsearch_nearest(double code_book[], double freq, int start, int end) {
61 size_t update_code_idx(double freqs[], size_t num, double code_book[]
    [all...]
  /external/llvm/test/Analysis/ScalarEvolution/
scev-aa.ll 13 ; CHECK: NoAlias: double* %pi, double* %pi.next
15 define void @loop(double* nocapture %p, i64 %n) nounwind {
22 %pi = getelementptr double* %p, i64 %i
24 %pi.next = getelementptr double* %p, i64 %i.next
25 %x = load double* %pi
26 %y = load double* %pi.next
27 %z = fmul double %x, %y
28 store double %z, double* %p
    [all...]
  /external/guava/src/com/google/common/primitives/
Doubles.java 36 * Static utility methods pertaining to {@code double} primitives, that are not
37 * already found in either {@link Double} or {@link Arrays}.
48 * {@code ((Double) value).hashCode()}.
50 * @param value a primitive {@code double} value
53 public static int hashCode(double value) {
54 return ((Double) value).hashCode();
56 // long bits = Double.doubleToLongBits(value);
61 * Compares the two specified {@code double} values. The sign of the value
62 * returned is the same as that of <code>((Double) a).{@linkplain
63 * Double#compareTo compareTo}(b)</code>. As with that method, {@code NaN} i
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/rem_double/
Test_rem_double.java 51 * @title Types of arguments - double, long. Dalvik doens't distinguish 64-bits types internally,
52 * so this operation of double and long makes no sense but shall not crash the VM.
63 * @title Arguments = Double.MAX_VALUE, Double.NaN
67 assertEquals(Double.NaN, t.run(Double.MAX_VALUE, Double.NaN));
71 * @title Arguments = Double.POSITIVE_INFINITY,
72 * Double.NEGATIVE_INFINITY
76 assertEquals(Double.NaN, t.run(Double.POSITIVE_INFINITY
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/rem_double_2addr/
Test_rem_double_2addr.java 51 * @title Types of arguments - double, long. Dalvik doens't distinguish 64-bits types internally,
52 * so this operation of double and long makes no sense but shall not crash the VM.
63 * @title Arguments = Double.MAX_VALUE, Double.NaN
67 assertEquals(Double.NaN, t.run(Double.MAX_VALUE, Double.NaN));
71 * @title Arguments = Double.POSITIVE_INFINITY,
72 * Double.NEGATIVE_INFINITY
76 assertEquals(Double.NaN, t.run(Double.POSITIVE_INFINITY
    [all...]
  /external/llvm/test/Transforms/IndVarSimplify/
preserve-gep-nested.ll 20 %struct.S = type { [100 x double], [100 x double] }
34 %t1 = load double* %t0, align 8
35 %t2 = fmul double %t1, 3.200000e+00
37 store double %t2, double* %t3, align 8
40 %s1 = load double* %s0, align 8
41 %s2 = fmul double %s1, 3.200000e+00
43 store double %s2, double* %s3, align
    [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/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...]
  /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...]
  /external/llvm/test/Transforms/SimplifyCFG/
2009-06-15-InvokeCrash.ll 31 %struct.QPointF = type { double, double }
34 %struct.QRectF = type { double, double, double, double }
59 %foo = alloca double, align 8
60 %bar = alloca double, align 8
78 call void @_ZN7QPointFC1Edd( %struct.QPointF* %tmp, double 0.000000e+00, double 0.000000e+00
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/opcodes/dadd/jm/
T_dadd_3.java 21 public double run(double a, double b) {
22 return a+(double)b;
T_dadd_4.java 21 public double run(double a, double b) {
22 return (double)a+b;
  /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();

Completed in 571 milliseconds

<<21222324252627282930>>