/dalvik/vm/compiler/codegen/arm/ |
CalloutHelper.h | 36 extern "C" float __aeabi_d2f(double op1); // OP_DOUBLE_TO_FLOAT 37 extern "C" double __aeabi_f2d(float op1); // OP_FLOAT_TO_DOUBLE 38 extern "C" double __aeabi_i2d(int op1); // OP_INT_TO_DOUBLE 39 extern "C" int __aeabi_d2iz(double op1); // OP_DOUBLE_TO_INT 41 extern "C" double __aeabi_l2d(long op1); // OP_LONG_TO_DOUBLE 43 s8 dvmJitd2l(double op1); // OP_DOUBLE_TO_LONG 52 /* Double-precision FP arithmetics */ 53 extern "C" double __aeabi_dadd(double a, double b); // OP_ADD_DOUBLE[_2ADDR [all...] |
/dalvik/vm/compiler/codegen/mips/ |
CalloutHelper.h | 36 extern "C" float __truncdfsf2(double op1); // OP_DOUBLE_TO_FLOAT 37 extern "C" double __extendsfdf2(float op1); // OP_FLOAT_TO_DOUBLE 38 extern "C" double __floatsidf(int op1); // OP_INT_TO_DOUBLE 39 extern "C" int __fixdfsi(double op1); // OP_DOUBLE_TO_INT 41 extern "C" double __floatdidf(long long op1); // OP_LONG_TO_DOUBLE 43 extern "C" long long __fixdfdi(double op1); // OP_DOUBLE_TO_LONG 52 /* Double-precision FP arithmetics */ 53 extern "C" double __adddf3(double a, double b); // OP_ADD_DOUBLE[_2ADDR [all...] |
/external/clang/test/CodeGen/ |
overloadable.c | 4 double __attribute__((overloadable)) f(double x) { return x; } 5 double _Complex __attribute__((overloadable)) f(double _Complex x) { return x; } 17 double dv = 4.0; 18 double _Complex cdv;
|
/external/icu4c/test/intltest/ |
tsputil.h | 25 // void remainderTest(double x, double y, double exp); 26 void maxMinTest(double a, double b, double exp, UBool max);
|
/external/libvpx/vp8/encoder/ |
psnr.c | 18 double vp8_mse2psnr(double Samples, double Peak, double Mse) 20 double psnr; 22 if ((double)Mse > 0.0)
|
/external/llvm/test/CodeGen/X86/ |
bitcast.ll | 5 define i64 @test1(double %t) { 6 %u = bitcast double %t to i64 ; <i64> [#uses=1] 10 define double @test2(i64 %t) { 11 %u = bitcast i64 %t to double ; <double> [#uses=1] 12 ret double %u
|
peep-test-0.ll | 5 define void @loop(i64 %n, double* nocapture %d) nounwind { 12 %0 = getelementptr double* %d, i64 %i.03 13 %1 = load double* %0, align 8 14 %2 = fmul double %1, 3.000000e+00 15 store double %2, double* %0, align 8
|
peep-test-1.ll | 6 define void @foo(i32 %n, double* nocapture %p) nounwind { 12 %1 = getelementptr double* %p, i32 %i.03 13 %2 = load double* %1, align 4 14 %3 = fmul double %2, 2.930000e+00 15 store double %3, double* %1, align 4
|
x86-64-dead-stack-adjust.ll | 7 define double @a(double %b) nounwind { 9 %tmp12 = fptoui double %b to i32 ; <i32> [#uses=1] 10 %tmp123 = uitofp i32 %tmp12 to double ; <double> [#uses=1] 11 ret double %tmp123
|
x86-64-gv-offset.ll | 3 %struct.x = type { float, double } 4 @X = global %struct.x { float 1.000000e+00, double 2.000000e+00 }, align 16 ; <%struct.x*> [#uses=2] 9 %tmp4 = load double* getelementptr (%struct.x* @X, i32 0, i32 1), align 8 ; <double> [#uses=1] 10 tail call void @t( float %tmp2, double %tmp4 ) nounwind 14 declare void @t(float, double)
|
negate-add-zero.ll | 27 %"struct.CDSMatrixBase<double>" = type { %"struct.CDSMatrixRep<double>"* } 28 %"struct.CDSMatrixRep<double>" = type opaque 31 %"struct.CDSVector<double,0,CDS::DefaultAlloc>" = type { %"struct.CDSVectorBase<double,CDS::DefaultAlloc>" } 33 %"struct.CDSVectorBase<double,CDS::DefaultAlloc>" = type { %"struct.CDSVectorRep<double,CDS::DefaultAlloc>"* } 35 %"struct.CDSVectorRep<double,CDS::DefaultAlloc>" = type { i32, %"struct.CDS::DefaultAlloc", double*, i32 } 36 %"struct.FixedMatrix<double,1,1,0,0>" = type { %"struct.FixedMatrixBase<double,1,1>" [all...] |
2008-09-05-sinttofp-2xi32.ll | 8 define <2 x double> @a(<2 x i32> %x) nounwind { 10 %y = sitofp <2 x i32> %x to <2 x double> 11 ret <2 x double> %y 14 define <2 x i32> @b(<2 x double> %x) nounwind { 16 %y = fptosi <2 x double> %x to <2 x i32> 22 define <2 x double> @a2(x86_mmx %x) nounwind { 24 %y = tail call <2 x double> @llvm.x86.sse.cvtpi2pd(x86_mmx %x) 25 ret <2 x double> %y 28 define x86_mmx @b2(<2 x double> %x) nounwind { 30 %y = tail call x86_mmx @llvm.x86.sse.cvttpd2pi (<2 x double> %x [all...] |
2010-05-16-nosseconversion.ll | 9 %1 = uitofp i64 %0 to double ; <double> [#uses=1] 10 %2 = fptosi double %1 to i32 ; <i32> [#uses=1]
|
/external/valgrind/main/memcheck/tests/x86/ |
fprem.c | 7 double do_fprem ( void ) 9 double res; 22 double do_fprem1 ( void ) 24 double res; 37 double do_fsincos ( void ) 39 double res;
|
/frameworks/base/graphics/java/android/renderscript/ |
Double3.java | 32 public Double3(double initX, double initY, double initZ) { 38 public double x; 39 public double y; 40 public double z;
|
/external/clang/test/CXX/temp/temp.param/ |
p7.cpp | 7 template<double d> class X; // expected-error{{cannot have type}} 8 template<double* pd> class Y; //OK 9 template<double& rd> class Z; //OK
|
/external/clang/test/SemaObjC/ |
method-def-2.m | 5 static double d = 4.5920234e2; 8 -(void) brokenType: (int)x floatingPoint: (double)y; 13 -(void) brokenType: (int)x floatingPoint: (double)y
|
/external/fdlibm/ |
w_j0.c | 15 * wrapper ieee_j0(double x), ieee_y0(double x) 21 double ieee_j0(double x) /* wrapper j0 */ 23 double ieee_j0(x) /* wrapper j0 */ 24 double x; 30 double z = __ieee754_j0(x); 40 double ieee_y0(double x) /* wrapper y0 */ 42 double ieee_y0(x) /* wrapper y0 * [all...] |
/external/llvm/test/CodeGen/ARM/ |
vfp.ll | 4 define void @test(float* %P, double* %D) { 6 %B = load double* %D ; <double> [#uses=1] 8 store double %B, double* %D 14 declare double @fabs(double) 16 define void @test_abs(float* %P, double* %D) { 22 %A = load double* %D ; <double> [#uses=1 [all...] |
/external/llvm/test/CodeGen/Generic/ |
pr3288.ll | 9 %i = insertvalue {{i32,float},{i16,double}} undef, {i16,double} undef, 1 17 %i = insertvalue {{i32,float},{i16,double}} zeroinitializer, {i16,double} zeroinitializer, 1 25 %i = insertvalue {{i32,float},{i16,double}} undef, {i32,float} undef, 0 33 %i = insertvalue {{i32,float},{i16,double}} zeroinitializer, {i32,float} zeroinitializer, 0 41 %i = insertvalue {{i32,float},{i16,double}} undef, double undef, 1, 1 49 %i = insertvalue {{i32,float},{i16,double}} zeroinitializer, double zeroinitializer, 1, [all...] |
/external/llvm/test/Transforms/SimplifyCFG/ |
2008-01-02-hoist-fp-add.ll | 2 ; RUN: opt < %s -simplifycfg -S | grep "= phi double" 6 @G = weak global double 0.000000e+00, align 8 ; <double*> [#uses=2] 8 define void @test(i32 %X, i32 %Y, double %Z) { 11 %tmp = load double* @G, align 8 ; <double> [#uses=2] 18 %tmp7 = fadd double %tmp, %Z ; <double> [#uses=1] 22 %F.0 = phi double [ %tmp, %entry ], [ %tmp7, %cond_true ] ; <double> [#uses=1 [all...] |
/external/qemu/ |
qfloat.h | 22 double value; 25 QFloat *qfloat_from_double(double value); 26 double qfloat_get_double(const QFloat *qi);
|
/external/valgrind/main/none/tests/ppc32/ |
test_fx.c | 5 double do_fsqrt ( double x ) 7 double block[2]; 20 double do_fsqrts ( double x ) 22 double block[2]; 38 double(*f)(double), 39 double* args, int nargs, 43 double a, r [all...] |
/external/webkit/Source/WebCore/dom/ |
DeviceOrientation.h | 37 static PassRefPtr<DeviceOrientation> create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma); 39 double alpha() const; 40 double beta() const; 41 double gamma() const; 48 DeviceOrientation(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma); 53 double m_alpha [all...] |
/external/webkit/Source/WebCore/html/ |
StepRange.h | 35 double step; 36 double minimum; 37 double maximum; // maximum must be >= minimum. 40 double clampValue(double value); 41 double clampValue(const String& stringValue); 44 double defaultValue() 50 double proportionFromValue(double value) 59 double valueFromProportion(double proportion [all...] |