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

<<21222324252627282930>>

  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_complex.h 23 // are complex<float>, double-precision are complex<double>, and
24 // quad precision are complex<long double>.
174 // Explicit specializations for float, double, long double. The only
176 // from complex<float> to complex<double>, and complex<double> to
177 // complex<long double>.
190 inline explicit complex(const complex<double>& __z);
192 inline explicit complex(const complex<long double>& __z)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_complex.h 23 // are complex<float>, double-precision are complex<double>, and
24 // quad precision are complex<long double>.
174 // Explicit specializations for float, double, long double. The only
176 // from complex<float> to complex<double>, and complex<double> to
177 // complex<long double>.
190 inline explicit complex(const complex<double>& __z);
192 inline explicit complex(const complex<long double>& __z)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_complex.h 23 // are complex<float>, double-precision are complex<double>, and
24 // quad precision are complex<long double>.
174 // Explicit specializations for float, double, long double. The only
176 // from complex<float> to complex<double>, and complex<double> to
177 // complex<long double>.
190 inline explicit complex(const complex<double>& __z);
192 inline explicit complex(const complex<long double>& __z)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_complex.h 23 // are complex<float>, double-precision are complex<double>, and
24 // quad precision are complex<long double>.
174 // Explicit specializations for float, double, long double. The only
176 // from complex<float> to complex<double>, and complex<double> to
177 // complex<long double>.
190 inline explicit complex(const complex<double>& __z);
192 inline explicit complex(const complex<long double>& __z)
    [all...]
  /external/compiler-rt/lib/ppc/
gcc_qadd.c 5 /* long double __gcc_qadd(long double x, long double y);
6 * This file implements the PowerPC 128-bit double-double add operation.
12 long double __gcc_qadd(long double x, long double y)
18 register double A = dst.s.hi, a = dst.s.lo,
40 const double testForOverflow = A + (B + (a + b))
    [all...]
gcc_qsub.c 5 /* long double __gcc_qsub(long double x, long double y);
6 * This file implements the PowerPC 128-bit double-double add operation.
12 long double __gcc_qsub(long double x, long double y)
18 register double A = dst.s.hi, a = dst.s.lo,
40 const double testForOverflow = A + (B + (a + b))
    [all...]
  /external/llvm/test/CodeGen/CellSPU/
immed64.ll 69 define double @f64_const_1() {
70 ret double 0x4005bf0a8b145769 ;; ILHU/IOHL via pattern
73 define double @f64_const_2() {
74 ret double 0x0010000000000000
77 define double @f64_const_3() {
78 ret double 0x7fefffffffffffff
81 define double @f64_const_4() {
82 ret double 0x400921fb54442d18
85 define double @f64_const_5() {
86 ret double 0xbff6a09e667f3bcd ;; ILHU/IOHL via patter
    [all...]
  /external/llvm/test/CodeGen/Generic/
vector-casts.ll 4 define void @a(<2 x double>* %p, <2 x i8>* %q) {
5 %t = load <2 x double>* %p
6 %r = fptosi <2 x double> %t to <2 x i8>
10 define void @b(<2 x double>* %p, <2 x i8>* %q) {
11 %t = load <2 x double>* %p
12 %r = fptoui <2 x double> %t to <2 x i8>
16 define void @c(<2 x i8>* %p, <2 x double>* %q) {
18 %r = sitofp <2 x i8> %t to <2 x double>
19 store <2 x double> %r, <2 x double>* %
    [all...]
  /external/llvm/test/CodeGen/X86/
avx-intrinsics-x86_64.ll 3 define i64 @test_x86_sse2_cvtsd2si64(<2 x double> %a0) {
5 %res = call i64 @llvm.x86.sse2.cvtsd2si64(<2 x double> %a0) ; <i64> [#uses=1]
8 declare i64 @llvm.x86.sse2.cvtsd2si64(<2 x double>) nounwind readnone
11 define <2 x double> @test_x86_sse2_cvtsi642sd(<2 x double> %a0, i64 %a1) {
13 %res = call <2 x double> @llvm.x86.sse2.cvtsi642sd(<2 x double> %a0, i64 %a1) ; <<2 x double>> [#uses=1]
14 ret <2 x double> %res
16 declare <2 x double> @llvm.x86.sse2.cvtsi642sd(<2 x double>, i64) nounwind readnon
    [all...]
sincos.ll 7 declare double @sin(double) readonly
21 define double @test2(double %X) {
22 %Y = call double @sin(double %X) readonly
23 ret double %Y
40 declare double @cos(double) readonly
53 define double @test5(double %X)
    [all...]
2010-01-18-DbgValue.ll 6 %struct.Pt = type { double, double }
9 define double @foo(%struct.Rect* byval %my_r0) nounwind ssp {
12 %retval = alloca double ; <double*> [#uses=2]
13 %0 = alloca double ; <double*> [#uses=2]
17 %2 = getelementptr inbounds %struct.Pt* %1, i32 0, i32 0, !dbg !16 ; <double*> [#uses=1]
18 %3 = load double* %2, align 8, !dbg !16 ; <double> [#uses=1
    [all...]
  /external/webkit/Source/WebCore/dom/
DeviceMotionData.cpp 31 PassRefPtr<DeviceMotionData::Acceleration> DeviceMotionData::Acceleration::create(bool canProvideX, double x,
32 bool canProvideY, double y,
33 bool canProvideZ, double z)
38 DeviceMotionData::Acceleration::Acceleration(bool canProvideX, double x, bool canProvideY, double y, bool canProvideZ, double z)
49 PassRefPtr<DeviceMotionData::RotationRate> DeviceMotionData::RotationRate::create(bool canProvideAlpha, double alpha,
50 bool canProvideBeta, double beta,
51 bool canProvideGamma, double gamma)
56 DeviceMotionData::RotationRate::RotationRate(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma
    [all...]
  /frameworks/compile/libbcc/runtime/lib/ppc/
gcc_qadd.c 5 /* long double __gcc_qadd(long double x, long double y);
6 * This file implements the PowerPC 128-bit double-double add operation.
12 long double __gcc_qadd(long double x, long double y)
18 register double A = dst.s.hi, a = dst.s.lo,
40 const double testForOverflow = A + (B + (a + b))
    [all...]
gcc_qsub.c 5 /* long double __gcc_qsub(long double x, long double y);
6 * This file implements the PowerPC 128-bit double-double add operation.
12 long double __gcc_qsub(long double x, long double y)
18 register double A = dst.s.hi, a = dst.s.lo,
40 const double testForOverflow = A + (B + (a + b))
    [all...]
  /external/webkit/Source/WebCore/platform/audio/
FFTFrame.cpp 55 PassOwnPtr<FFTFrame> FFTFrame::createInterpolatedFrame(const FFTFrame& frame1, const FFTFrame& frame2, double x)
73 void FFTFrame::interpolateFrequencyComponents(const FFTFrame& frame1, const FFTFrame& frame2, double interp)
88 double s1base = (1.0 - interp);
89 double s2base = interp;
91 double phaseAccum = 0.0;
92 double lastPhase1 = 0.0;
93 double lastPhase2 = 0.0;
104 double mag1 = abs(c1);
105 double mag2 = abs(c2);
108 double mag1db = 20.0 * log10(mag1)
    [all...]
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_image_homography.h 46 DB_API void db_StitchProjective2D_4Points(double H[9],
47 double x1[3],double x2[3],double x3[3],double x4[3],
48 double xp1[3],double xp2[3],double xp3[3],double xp4[3]);
61 DB_API void db_StitchAffine2D_3Points(double H[9]
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_image_homography.h 46 DB_API void db_StitchProjective2D_4Points(double H[9],
47 double x1[3],double x2[3],double x3[3],double x4[3],
48 double xp1[3],double xp2[3],double xp3[3],double xp4[3]);
61 DB_API void db_StitchAffine2D_3Points(double H[9]
    [all...]
  /dalvik/vm/mterp/arm-vfp/
fbinopWide.S 2 * Generic 64-bit double-precision floating point binary operation.
6 * for: add-double, sub-double, mul-double, div-double
  /external/clang/test/CodeGen/
2002-07-14-MiscTests3.c 99 double TestAdd(double X, float Y) {
146 double MathFunc(double X, double Y, double Z,
147 double AA, double BB, double CC, double DD
    [all...]
mips64-class-return.cpp 4 double d;
15 double d;
20 double d2;
32 // CHECK: define { double, float } @_Z4foo2v()
37 // CHECK: define void @_Z4foo32D2(i64 %a0.coerce0, double %a0.coerce1)
  /external/iproute2/netem/
pareto.c 13 static const double a=3.0;
21 double dvalue;
26 dvalue = (double)i/(double)65536;
29 dvalue *= (4.0/3.0)*(double)TABLEFACTOR;
  /external/llvm/test/CodeGen/ARM/
2009-03-09-AddrModeBug.ll 3 %struct.hit_t = type { %struct.v_t, double }
5 %struct.v_t = type { double, double, double }
7 define fastcc %struct.node_t* @_ZL6createP6node_tii3v_tS1_d(%struct.node_t* %n, i32 %lvl, i32 %dist, i64 %c.0.0, i64 %c.0.1, i64 %c.0.2, i64 %d.0.0, i64 %d.0.1, i64 %d.0.2, double %r) nounwind {
  /external/llvm/test/CodeGen/NVPTX/
arithmetic-fp-sm10.ll 11 define double @fadd_f64(double %a, double %b) {
14 %ret = fadd double %a, %b
15 ret double %ret
18 define double @fsub_f64(double %a, double %b) {
21 %ret = fsub double %a, %b
22 ret double %re
    [all...]
arithmetic-fp-sm20.ll 11 define double @fadd_f64(double %a, double %b) {
14 %ret = fadd double %a, %b
15 ret double %ret
18 define double @fsub_f64(double %a, double %b) {
21 %ret = fsub double %a, %b
22 ret double %re
    [all...]
  /external/llvm/test/CodeGen/PowerPC/
fp-branch.ll 3 declare i1 @llvm.isunordered.f64(double, double)
5 define i1 @intcoord_cond_next55(double %tmp48.reload) {
16 %tmp57 = fcmp oge double %tmp48.reload, 1.000000e+00 ; <i1> [#uses=1]
17 %tmp58 = fcmp uno double %tmp48.reload, 1.000000e+00 ; <i1> [#uses=1]

Completed in 841 milliseconds

<<21222324252627282930>>