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

<<31323334353637383940>>

  /external/fdlibm/
s_frexp.c 17 * return a double fp quantity x such that 0.5 <= |x| <1.0
27 static const double
29 static double
34 double ieee_frexp(double x, int *eptr)
36 double ieee_frexp(x, eptr)
37 double x; int *eptr;
  /external/llvm/test/CodeGen/Alpha/
2005-12-12-MissingFCMov.ll 36 %Z.1 = select i1 %tmp.36796, double 1.000000e+00, double 0x3FEFFF7CEDE74EAE; <double> [#uses=2]
37 tail call void (i32, ...)* @printf( i32 0, i64 0, i64 0, i64 0, double 1.000000e+00, double 1.000000e+00, double %Z.1, double %Z.1 )
  /external/llvm/test/Transforms/DeadStoreElimination/
2011-03-25-DSEMiscompile.ll 15 %ln2gA = bitcast i32* %ln2gz to double*
16 %ln2gB = load double* %ln2gA
18 %ln2gE = bitcast i32* %ln2gD to double*
19 store double %ln2gB, double* %ln2gE
20 ; CHECK: store double %ln2gB, double* %ln2gE
  /external/webkit/Source/WebCore/html/
DateTimeLocalInputType.h 45 virtual double valueAsDate() const;
46 virtual void setValueAsDate(double, ExceptionCode&) const;
47 virtual double minimum() const;
48 virtual double maximum() const;
49 virtual double defaultStep() const;
50 virtual double stepScaleFactor() const;
53 virtual bool setMillisecondToDateComponents(double, DateComponents*) const;
RangeInputType.cpp 58 static const double rangeDefaultMinimum = 0.0;
59 static const double rangeDefaultMaximum = 100.0;
60 static const double rangeDefaultStep = 1.0;
61 static const double rangeStepScaleFactor = 1.0;
78 double RangeInputType::valueAsNumber() const
80 return parseToDouble(element()->value(), numeric_limits<double>::quiet_NaN());
83 void RangeInputType::setValueAsNumber(double newValue, ExceptionCode&) const
96 ASSERT_UNUSED(value, parseToDouble(value, numeric_limits<double>::quiet_NaN()) >= minimum());
103 ASSERT_UNUSED(value, parseToDouble(value, numeric_limits<double>::quiet_NaN()) <= maximum());
112 double RangeInputType::minimum() cons
    [all...]
  /external/webkit/Source/WebCore/platform/audio/
AudioUtilities.cpp 36 double decibelsToLinear(double decibels)
41 double linearToDecibels(double linear)
52 double discreteTimeConstantForSampleRate(double timeConstant, double sampleRate)
AudioUtilities.h 33 double linearToDecibels(double);
34 double decibelsToLinear(double);
39 double discreteTimeConstantForSampleRate(double timeConstant, double sampleRate);
  /external/webkit/Source/WebCore/rendering/
RenderProgress.h 36 double position() const { return m_position; }
37 double animationProgress() const;
38 double animationStartTime() const { return m_animationStartTime; }
54 double m_position;
55 double m_animationStartTime;
56 double m_animationRepeatInterval;
57 double m_animationDuration;
  /frameworks/base/libs/cpustats/
CentralTendencyStatistics.cpp 21 void CentralTendencyStatistics::sample(double x)
33 double delta = x - mMean;
52 double CentralTendencyStatistics::variance() const
54 double variance;
57 // double variance_n = M2/n;
70 double CentralTendencyStatistics::stddev() const
72 double stddev;
  /frameworks/compile/libbcc/runtime/test/Unit/
adddf3vfp_test.c 20 extern double __adddf3vfp(double a, double b);
22 int test__adddf3vfp(double a, double b)
24 double actual = __adddf3vfp(a, b);
25 double expected = a + b;
divdf3vfp_test.c 20 extern double __divdf3vfp(double a, double b);
22 int test__divdf3vfp(double a, double b)
24 double actual = __divdf3vfp(a, b);
25 double expected = a / b;
subdf3vfp_test.c 20 extern double __subdf3vfp(double a, double b);
22 int test__subdf3vfp(double a, double b)
24 double actual = __subdf3vfp(a, b);
25 double expected = a - b;
  /dalvik/tests/003-omnibus-opcodes/src/
FloatMath.java 12 double d;
34 /* float --> double */
36 d = (double) f;
39 /* double --> int */
48 /* double --> long */
57 /* double --> float */
80 /* int --> double */
82 d = (double) i;
86 d = (double) i;
107 /* long --> double */
    [all...]
  /external/proguard/src/proguard/gui/
boilerplate.pro 110 public static double sin(double);
111 public static double cos(double);
112 public static double tan(double);
113 public static double asin(double);
114 public static double acos(double);
    [all...]
  /external/icu4c/test/intltest/
tsputil.cpp 35 double pinf = uprv_getInfinity();
36 double ninf = -uprv_getInfinity();
37 double nan = uprv_getNaN();
38 double pzero = 0.0;
39 double nzero = 0.0;
81 PUtilTest::remainderTest(double x, double y, double exp)
83 double result = uprv_IEEEremainder(x,y);
101 double pinf = uprv_getInfinity()
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/div_double/
Test_div_double.java 61 * @title Arguments = Double.POSITIVE_INFINITY,
62 * Double.NEGATIVE_INFINITY
66 assertEquals(Double.NaN, t.run(Double.POSITIVE_INFINITY,
67 Double.NEGATIVE_INFINITY));
71 * @title Arguments = Double.POSITIVE_INFINITY, -2.7d
75 assertEquals(Double.NEGATIVE_INFINITY, t.run(Double.POSITIVE_INFINITY,
80 * @title Arguments = -2.7d, Double.NEGATIVE_INFINITY
84 assertEquals(0d, t.run(-2.7d, Double.NEGATIVE_INFINITY))
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/div_double_2addr/
Test_div_double_2addr.java 61 * @title Arguments = Double.POSITIVE_INFINITY,
62 * Double.NEGATIVE_INFINITY
66 assertEquals(Double.NaN, t.run(Double.POSITIVE_INFINITY,
67 Double.NEGATIVE_INFINITY));
71 * @title Arguments = Double.POSITIVE_INFINITY, -2.7d
75 assertEquals(Double.NEGATIVE_INFINITY, t.run(Double.POSITIVE_INFINITY,
80 * @title Arguments = -2.7d, Double.NEGATIVE_INFINITY
84 assertEquals(0d, t.run(-2.7d, Double.NEGATIVE_INFINITY))
    [all...]
  /external/clang/test/CodeGen/
const-init.c 12 // Double-implicit-conversions of array/functions (not legal C, but
29 // CHECK: @g1x = global { double, double } { double 1.000000e+00{{[0]*}}, double 0.000000e+00{{[0]*}} }
30 _Complex double g1x = 1.0f;
31 // CHECK: @g1y = global { double, double } { double 0.000000e+00{{[0]*}}, double 1.000000e+00{{[0]*}}
    [all...]
  /external/llvm/test/CodeGen/X86/
2007-11-30-LoadFolding-Bug.ll 5 declare fastcc void @rdft(i32, i32, double*, i32*, double*)
7 define fastcc void @mp_sqrt(i32 %n, i32 %radix, i32* %in, i32* %out, i32* %tmp1, i32* %tmp2, i32 %nfft, double* %tmp1fft, double* %tmp2fft, i32* %ip, double* %w) nounwind {
40 %din_addr.1.reg2mem.0.i17.i = phi double [ 0.000000e+00, %cond_next36.i ], [ %tmp16.i25.i, %bb.i28.i ] ; <double> [#uses=1]
41 %tmp1.i18.i = fptosi double %din_addr.1.reg2mem.0.i17.i to i32 ; <i32> [#uses=2]
45 %tmp1213.i23.i = sitofp i32 %x.0.i21.i to double ; <double> [#uses=1
    [all...]
  /libcore/luni/src/main/java/java/nio/
DoubleToByteBufferAdapter.java 22 * This class wraps a byte buffer to be a double buffer.
45 super(byteBuffer.capacity() / SizeOf.DOUBLE);
66 byteBuffer.limit(limit * SizeOf.DOUBLE);
67 byteBuffer.position(position * SizeOf.DOUBLE);
87 public double get() {
91 return byteBuffer.getDouble(position++ * SizeOf.DOUBLE);
95 public double get(int index) {
97 return byteBuffer.getDouble(index * SizeOf.DOUBLE);
101 public DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) {
102 byteBuffer.limit(limit * SizeOf.DOUBLE);
    [all...]
  /external/llvm/test/CodeGen/ARM/
2010-06-21-LdStMultipleBug.ll 6 %struct.tilebox = type { %struct.tilebox*, double, double, double, double, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32 }
8 %struct.cellbox = type { i8*, i32, i32, i32, [9 x i32], i32, i32, i32, i32, i32, i32, i32, double, double, double, double, double, i32, i32, %struct.CONTENTBOX*, %struct.UNCOMBOX*, [8 x %struct.tilebox*] }
46 %13 = sitofp i32 %12 to double ; <double> [#uses=1
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/transforms/
TransformationMatrix.cpp 70 typedef double Vector4[4];
71 typedef double Vector3[3];
73 const double SMALL_NUMBER = 1.e-8;
83 // double = determinant2x2(double a, double b, double c, double d)
87 static double determinant2x2(double a, double b, double c, double d
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/opcodes/dneg/
Test_dneg.java 59 * @title Argument = Double.NaN
63 assertEquals(Double.NaN, t.run(Double.NaN));
67 * @title Argument = Double.NEGATIVE_INFINITY
71 assertEquals(Double.POSITIVE_INFINITY, t.run(Double.NEGATIVE_INFINITY));
75 * @title Argument = Double.POSITIVE_INFINITY
79 assertEquals(Double.NEGATIVE_INFINITY, t.run(Double.POSITIVE_INFINITY));
83 * @title Argument = Double.MAX_VALU
    [all...]
  /external/webkit/Source/WebCore/webaudio/
DelayDSPKernel.cpp 36 const double DefaultMaxDelayTime = 1.0;
37 const double SmoothingTimeConstant = 0.020; // 20ms
57 DelayDSPKernel::DelayDSPKernel(double maxDelayTime, double sampleRate)
91 double sampleRate = this->sampleRate();
92 double delayTime = delayProcessor() ? delayProcessor()->delayTime()->value() : m_desiredDelayFrames / sampleRate;
108 double desiredDelayFrames = m_currentDelayTime * sampleRate;
110 double readPosition = m_writeIndex + bufferLength - desiredDelayFrames;
117 double interpolationFactor = readPosition - readIndex1;
119 double input = static_cast<float>(*source++)
    [all...]
  /external/chromium/chrome/browser/chromeos/
audio_handler.h 27 double GetVolumePercent();
32 void SetVolumePercent(double volume_percent);
37 void AdjustVolumeByPercent(double adjust_by_percent);
74 double VolumeDbToPercent(double volume_db) const;
75 double PercentToVolumeDb(double volume_percent) const;
84 double max_volume_db_;
85 double min_volume_db_;

Completed in 1451 milliseconds

<<31323334353637383940>>