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

<<21222324252627282930>>

  /external/llvm/test/Transforms/InstCombine/
2009-01-19-fmod-constant-float-specials.ll 19 %1 = fpext float %0 to double ; <double> [#uses=1]
21 %3 = fpext float %2 to double ; <double> [#uses=1]
22 %4 = frem double %3, %1 ; <double> [#uses=1]
23 %5 = call i32 (i8*, ...)* @printf(i8* getelementptr ([4 x i8]* @"\01LC", i32 0, i32 0), double %4) nounwind ; <i32> [#uses=0]
40 %1 = fpext float %0 to double ; <double> [#uses=1]
42 %3 = fpext float %2 to double ; <double> [#uses=1
    [all...]
2007-10-12-Crash.ll 5 %struct.Vec = type { double, double, double }
7 declare double @_Z9ray_traceRK3VecRK3RayRK5Scene(%struct.Vec*, %struct.Ray*, %struct.Scene*)
17 %tmp322.0 = getelementptr %struct.Vec* %tmp322, i32 0, i32 0 ; <double*> [#uses=1]
18 store double 0.000000e+00, double* %tmp322.0
19 %tmp57 = call double @_Z9ray_traceRK3VecRK3RayRK5Scene( %struct.Vec* null, %struct.Ray* %tmp3, %struct.Scene* null ) ; <double> [#uses=0]
bitcast-vec-uniform.ll 34 define <2 x double> @foo2() {
35 %cast = bitcast i128 -1 to <2 x double>
36 ret <2 x double> %cast
58 define double @foo5() {
59 %cast = bitcast <2 x i32 ><i32 -1, i32 -1> to double
60 ret double %cast
67 define <2 x double> @foo6() {
68 %cast = bitcast <4 x i32><i32 -1, i32 -1, i32 -1, i32 -1> to <2 x double>
69 ret <2 x double> %cast
  /external/webkit/Source/WebCore/html/
HTMLProgressElement.h 33 static const double IndeterminatePosition;
34 static const double InvalidPosition;
38 double value() const;
39 void setValue(double, ExceptionCode&);
41 double max() const;
42 void setMax(double, ExceptionCode&);
44 double position() const;
  /external/webkit/Source/WebCore/page/
Coordinates.idl 29 readonly attribute double latitude;
30 readonly attribute double longitude;
31 readonly attribute [Custom] double altitude;
32 readonly attribute double accuracy;
33 readonly attribute [Custom] double altitudeAccuracy;
34 readonly attribute [Custom] double heading;
35 readonly attribute [Custom] double speed;
  /bionic/libc/tzcode/
difftime.c 16 double
22 ** If (sizeof (double) > sizeof (time_t)) simply convert and subtract
26 if (sizeof (double) > sizeof (time_t))
27 return (double) time1 - (double) time0;
42 else return -((double) (time0 - time1));
56 return (double) time1 - (double) time0;
63 return -(double) ((unsigned long) time0 +
  /external/clang/test/Sema/
warn-bad-function-cast.c 9 double rf2(void);
10 _Complex double cf(void);
29 (long double)rf2();
37 (double)if2(); /* expected-warning {{cast from function call of type 'char' to non-matching type 'double'}} */
40 (long)rf2(); /* expected-warning {{cast from function call of type 'double' to non-matching type 'long'}} */
41 (double)cf(); /* expected-warning {{cast from function call of type '_Complex double' to non-matching type 'double'}} */
  /external/clang/test/SemaObjC/
block-explicit-return-type.m 19 typedef double (^myblock)(int);
20 double test(myblock I);
30 (void)^double (float y, double d) {
51 double res = test(^(int z){x = y+z; return (double)z; });
70 int (^(^block)(double x))(char, short);
74 block = ^(double x){ return ^(char c, short y) { return one + c + y; };}; // expected-error {{returning block that lives on the local stack}}
76 block = ^(double x){ return ^(char c, short y) { return one + (int)c + y; };}; // expected-error {{returning block that lives on the local stack}}
  /external/fdlibm/
e_scalb.c 24 double __ieee754_scalb(double x, int fn)
26 double __ieee754_scalb(x,fn)
27 double x; int fn;
31 double __ieee754_scalb(double x, double fn)
33 double __ieee754_scalb(x,fn)
34 double x, fn;
  /external/llvm/test/CodeGen/X86/
and-su.ll 19 define fastcc double @bar(i32 %hash, double %x, double %y) nounwind {
34 %4 = fsub double -0.000000e+00, %x
40 %iftmp.9.0 = phi double [ %4, %bb11 ], [ %x, %bb10 ]
46 %7 = fsub double -0.000000e+00, %y
50 %iftmp.10.0 = phi double [ %7, %bb14 ], [ %y, %bb13 ]
51 %8 = fadd double %iftmp.9.0, %iftmp.10.0
52 ret double %8
  /external/llvm/test/Feature/
ppcld.ll 8 @d = global double 4.050000e+00, align 8 ; <double*> [#uses=1]
16 %tmp1 = fpext float %tmp to double ; <double> [#uses=1]
17 %tmp2 = load double* @d ; <double> [#uses=1]
18 %tmp3 = fmul double %tmp1, %tmp2 ; <double> [#uses=1]
19 %tmp4 = fpext double %tmp3 to ppc_fp128 ; <ppc_fp128> [#uses=1]
x86ld.ll 8 @d = global double 4.050000e+00, align 8 ; <double*> [#uses=1]
16 %tmp1 = fpext float %tmp to double ; <double> [#uses=1]
17 %tmp2 = load double* @d ; <double> [#uses=1]
18 %tmp3 = fmul double %tmp1, %tmp2 ; <double> [#uses=1]
19 %tmp4 = fpext double %tmp3 to x86_fp80 ; <x86_fp80> [#uses=1]
  /external/v8/src/
win32-math.h 50 int isfinite(double x);
54 int isnan(double x);
55 int isinf(double x);
56 int isless(double x, double y);
57 int isgreater(double x, double y);
58 int fpclassify(double x);
59 int signbit(double x);
  /external/webkit/Source/WebCore/loader/
DocumentLoadTiming.h 48 double navigationStart;
49 double unloadEventStart;
50 double unloadEventEnd;
51 double redirectStart;
52 double redirectEnd;
54 double fetchStart;
55 double responseEnd;
56 double loadEventStart;
57 double loadEventEnd;
  /external/webkit/Source/WebCore/platform/graphics/transforms/
AffineTransform.cpp 39 static void affineTransformDecompose(const AffineTransform& matrix, double sr[9])
44 double sx = matrix.xScale();
45 double sy = matrix.yScale();
61 double angle = atan2(m.b(), m.a());
78 static void affineTransformCompose(AffineTransform& m, const double sr[9])
95 AffineTransform::AffineTransform(double a, double b, double c, double d, double e, double f
    [all...]
  /frameworks/compile/libbcc/tests/data/src/
float.c 5 int dtoi(double d) {
13 double itod(int i) {
18 double d0, d1;
25 void testVars(float arg0, float arg1, double arg2, double arg3) {
27 double local2, local3;
41 printf("cast rval: %g %g\n", * (float*) & f1, * (double*) & d1);
44 * (double*) & d0 = 3.3;
50 printf("int: %d float: %g double: %g\n", 1, 2.2f, 3.3);
  /frameworks/compile/linkloader/tests/images/
test.c 25 double global_z_d;
27 double global_big_z_d[1000];
29 static double global_static_z_d;
31 static double global_static_big_z_d[1000];
33 double global_z_d_init = 1.1;
35 /*extern double extern_z_d;*/
38 static double local_static_z_d;
40 static double local_static_z_d_init = 2.2;
58 double local_z_d = global_static_z_d = global_z_d;
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_camera.h 52 DB_API void db_Approx3DCalMat(double K[9],double Kinv[9],int im_width,int im_height,double f_correction=1.0,int field=0);
57 void inline db_Identity2x2(double A[4])
65 void inline db_Identity3x3(double A[9])
75 void inline db_InvertCalibrationMatrix(double Kinv[9],const double K[9])
77 double a,b,c,d,e,f,ainv,dinv,adinv;
104 void inline db_DeHomogenizeImagePoint(double xd[2],const double xs[3]
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_camera.h 52 DB_API void db_Approx3DCalMat(double K[9],double Kinv[9],int im_width,int im_height,double f_correction=1.0,int field=0);
57 void inline db_Identity2x2(double A[4])
65 void inline db_Identity3x3(double A[9])
75 void inline db_InvertCalibrationMatrix(double Kinv[9],const double K[9])
77 double a,b,c,d,e,f,ainv,dinv,adinv;
104 void inline db_DeHomogenizeImagePoint(double xd[2],const double xs[3]
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
mathdef.h 32 typedef double double_t; /* `double' expressions are evaluated
33 as `double'. */
36 which is also available for the user as `long double'. Therefore we
38 typedef long double float_t; /* `float' expressions are evaluated as
39 `long double'. */
40 typedef long double double_t; /* `double' expressions are evaluated as
41 `long double'. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
mathdef.h 32 typedef double double_t; /* `double' expressions are evaluated
33 as `double'. */
36 which is also available for the user as `long double'. Therefore we
38 typedef long double float_t; /* `float' expressions are evaluated as
39 `long double'. */
40 typedef long double double_t; /* `double' expressions are evaluated as
41 `long double'. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
mathdef.h 32 typedef double double_t; /* `double' expressions are evaluated
33 as `double'. */
36 which is also available for the user as `long double'. Therefore we
38 typedef long double float_t; /* `float' expressions are evaluated as
39 `long double'. */
40 typedef long double double_t; /* `double' expressions are evaluated as
41 `long double'. */
  /sdk/traceview/src/com/android/traceview/
TraceUnits.java 25 private double mScale = 1.0;
28 public double getScaledValue(long value) {
32 public double getScaledValue(double value) {
37 return valueOf((double) value);
40 public String valueOf(double value) {
42 double scaled = value * mScale;
51 public String labelledString(double value) {
58 return labelledString((double) value);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sub_double/
Test_sub_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.POSITIVE_INFINITY, t.run(Double.POSITIVE_INFINITY,
65 Double.NEGATIVE_INFINITY))
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sub_double_2addr/
Test_sub_double_2addr.java 50 * @title Arguments = Double.MAX_VALUE, Double.NaN
54 assertEquals(Double.NaN, t.run(Double.MAX_VALUE, Double.NaN));
58 * @title Arguments = Double.POSITIVE_INFINITY,
59 * Double.NEGATIVE_INFINITY
63 assertEquals(Double.POSITIVE_INFINITY, t.run(Double.POSITIVE_INFINITY,
64 Double.NEGATIVE_INFINITY))
    [all...]

Completed in 854 milliseconds

<<21222324252627282930>>