/external/llvm/test/CodeGen/X86/ |
inline-asm-fpstack.ll | 15 define double @test2() { 16 %tmp85 = call double asm sideeffect "fld0", "={st(0)}"() 17 ret double %tmp85 39 define void @test4(double %X) { 40 call void asm sideeffect "frob ", "{st(0)},~{st},~{dirflag},~{fpsr},~{flags}"( double %X) 50 define void @test5(double %X) { 51 %Y = fadd double %X, 123.0 52 call void asm sideeffect "frob ", "{st(0)},~{st},~{dirflag},~{fpsr},~{flags}"( double %Y) 57 define void @test6(double %A, double %B, double %C, [all...] |
2010-11-09-MOVLPS.ll | 36 %8 = bitcast <2 x float>* %7 to double* 37 %9 = load double* %8 38 %10 = insertelement <2 x double> undef, double %9, i32 0 39 %11 = insertelement <2 x double> %10, double undef, i32 1 40 %12 = bitcast <2 x double> %11 to <4 x float> 53 %24 = bitcast <2 x float>* %23 to double* 54 %25 = load double* %24 55 %26 = insertelement <2 x double> undef, double %25, i32 [all...] |
pr1505b.ll | 19 @b = global double 6.000000e-01, align 8 ; <double*> [#uses=1] 24 @.str1 = internal constant [13 x i8] c"tan double: \00" ; <[13 x i8]*> [#uses=1] 44 %tmp12 = volatile load double* @b ; <double> [#uses=1] 47 %tmp13 = tail call double @tan( double %tmp12 ) ; <double> [#uses=1] 50 %tmp1314 = fptrunc double %tmp13 to float ; <float> [#uses=1] 52 %tmp1920 = fpext float %tmp9 to double ; <double> [#uses=1 [all...] |
/external/llvm/test/Transforms/DeadStoreElimination/ |
PartialStore.ll | 27 define i32 @test3(double %__x) { 29 ; CHECK: store double 31 %tmp.1 = bitcast { [3 x i32] }* %__u to double* 32 store double %__x, double* %tmp.1 44 ; CHECK-NEXT: store double 51 %Q = bitcast i8* %P to double* 52 store double 0.0, double* %Q
|
/external/netperf/ |
netcpu_ntperf.c | 109 double ReportPerfCntrs(PerfObj *PerfCntrs); /* returns CPU utilization */ 296 double ReportPerfCntrs(PerfObj *PerfCntrs) 298 double tot_CPU_Util; 336 tot_CPU_Util = 100.0*(1.0 - (double)DeltaInfo[MAXCPUS].IdleTime.QuadPart/(double)TotalCPUTime[MAXCPUS].QuadPart); //Lint 369 100.0*(1.0 - (double)DeltaInfo[i].IdleTime.QuadPart/(double)TotalCPUTime[i].QuadPart)); //Lint 375 100.0*(double)DeltaInfo[MAXCPUS].KernelTime.QuadPart/(double)TotalCPUTime[MAXCPUS].QuadPart); //Lint 382 100.0*(double)DeltaInfo[i].KernelTime.QuadPart/(double)TotalCPUTime[i].QuadPart); //Lin [all...] |
/external/opencv/cxcore/src/ |
_cxcore.h | 114 double re, im; 117 CvComplex64f( double _re, double _im=0 ) : re(_re), im(_im) {} 161 inline double abs(CvComplex32f a) 163 return sqrt( (double)a.re*a.re + (double)a.im*a.im ); 174 double t = 1./((double)b.re*b.re + (double)b.im*b.im); 179 inline CvComplex32f operator * (double a, CvComplex32f b [all...] |
cxnorm.cpp | 141 CvSize size, double* _norm ), (src, step, size, _norm) ) \ 167 *_norm = post_func((double)total_norm); \ 175 CvSize size, double* _norm ), (src, step, size, _norm) ) \ 186 *_norm = post_func((double)norm); \ 193 For float worktype==normtype==double, thus the block algorithm, 199 CvSize size, double* _norm, CvHintAlgorithm /*hint*/ ), \ 211 *_norm = post_func((double)norm); \ 220 CvSize size, int cn, int coi, double* _norm ) \ 248 *_norm = post_func((double)total_norm); \ 257 CvSize size, int cn, int coi, double* _norm ) [all...] |
cxsvd.cpp | 50 double* _x = (x); \ 51 double* _y = (y); \ 55 double t0 = _x[_i]; \ 56 double t1 = _y[_i]; \ 65 icvMatrAXPY_64f( int m, int n, const double* x, int dx, 66 const double* a, double* y, int dy ) 72 double s = a[i]; 76 double t0 = y[j] + s*x[j]; 77 double t1 = y[j+1] + s*x[j+1] [all...] |
/external/webkit/Source/WebCore/html/ |
DateTimeLocalInputType.cpp | 43 static const double dateTimeLocalDefaultStep = 60.0; 44 static const double dateTimeLocalStepScaleFactor = 1000.0; 56 double DateTimeLocalInputType::valueAsDate() const 62 void DateTimeLocalInputType::setValueAsDate(double value, ExceptionCode& ec) const 68 double DateTimeLocalInputType::minimum() const 73 double DateTimeLocalInputType::maximum() const 78 double DateTimeLocalInputType::defaultStep() const 83 double DateTimeLocalInputType::stepScaleFactor() const 100 bool DateTimeLocalInputType::setMillisecondToDateComponents(double value, DateComponents* date) const
|
HTMLProgressElement.cpp | 42 const double HTMLProgressElement::IndeterminatePosition = -1; 43 const double HTMLProgressElement::InvalidPosition = -2; 89 double HTMLProgressElement::value() const 92 double value; 99 void HTMLProgressElement::setValue(double value, ExceptionCode& ec) 108 double HTMLProgressElement::max() const 110 double max; 117 void HTMLProgressElement::setMax(double max, ExceptionCode& ec) 126 double HTMLProgressElement::position() const
|
/external/webkit/Source/WebCore/page/animation/ |
AnimationControllerPrivate.h | 67 void addEventToDispatch(PassRefPtr<Element> element, const AtomicString& eventType, const String& name, double elapsedTime); 81 bool pauseAnimationAtTime(RenderObject*, const String& name, double t); 82 bool pauseTransitionAtTime(RenderObject*, const String& property, double t); 87 double beginAnimationUpdateTime(); 88 void setBeginAnimationUpdateTime(double t) { m_beginAnimationUpdateTime = t; } 90 void receivedStartTimeResponse(double); 107 void startTimeResponse(double t); 121 double elapsedTime; 127 double m_beginAnimationUpdateTime;
|
/external/webkit/Source/WebCore/platform/audio/ |
HRTFDatabase.h | 49 static PassOwnPtr<HRTFDatabase> create(double sampleRate); 55 void getKernelsFromAzimuthElevation(double azimuthBlend, unsigned azimuthIndex, double elevationAngle, HRTFKernel* &kernelL, HRTFKernel* &kernelR, double& frameDelayL, double& frameDelayR); 60 double sampleRate() const { return m_sampleRate; } 63 explicit HRTFDatabase(double sampleRate); 80 static unsigned indexFromElevationAngle(double); 83 double m_sampleRate;
|
/packages/apps/Camera/jni/feature_stab/src/dbreg/ |
dbstabsmooth.h | 133 bool smoothMotion(VP_MOTION *inmot, VP_MOTION *outmot, double smooth_factor); 134 bool smoothMotion1(VP_MOTION *inmot, VP_MOTION *outmot, VP_MOTION *motLF, VP_MOTION *imotLF, double smooth_factor); 135 void iterativeSmooth(VP_MOTION *input, VP_MOTION *output, double border_factor); 136 bool is_point_in_rect(double px, double py, double rx, double ry, double w, double h);
|
/external/clang/test/CodeGen/ |
builtins.c | 10 void q(char *str, double x) { 136 double d; 137 long double ld; 140 // basically it does a float-to-double "conversion" and then prints the 150 d = __builtin_huge_val(); // CHECK: double 0x7FF0000000000000 153 d = __builtin_nan(""); // CHECK: double 0x7FF8000000000000 156 d = __builtin_nan("0xAE98"); // CHECK: double 0x7FF800000000AE98 159 d = __builtin_nans(""); // CHECK: double 0x7FF4000000000000 162 d = __builtin_nans("0xAE98"); // CHECK: double 0x7FF000000000AE98 170 void test_float_builtins(float F, double D, long double LD) [all...] |
/external/clang/test/Parser/ |
altivec.c | 62 __vector long double vv_ld; // expected-warning {{Use of 'long' with '__vector' is deprecated}} expected-error {{cannot use 'double' with '__vector'}} 63 vector long double v_ld; // expected-warning {{Use of 'long' with '__vector' is deprecated}} expected-error {{cannot use 'double' with '__vector'}} 67 __vector double vv_d1; // expected-error {{cannot use 'double' with '__vector'}} 68 vector double v_d2; // expected-error {{cannot use 'double' with '__vector'}} 69 __vector long double vv_ld3; // expected-warning {{Use of 'long' with '__vector' is deprecated}} expected-error {{cannot use 'double' with '__vector'} [all...] |
/external/icu4c/i18n/ |
astro.h | 85 Ecliptic(double lat = 0, double lon = 0) { 96 void set(double lat, double lon) { 113 double latitude; 126 double longitude; 154 Equatorial(double asc = 0, double dec = 0) 163 void set(double asc, double dec) [all...] |
/frameworks/base/core/java/com/android/internal/os/ |
PowerProfile.java | 163 ArrayList<Double> array = new ArrayList<Double>(); 177 sPowerMap.put(arrayName, array.toArray(new Double[array.size()])); 189 double value = 0; 191 value = Double.valueOf(power); 203 sPowerMap.put(arrayName, array.toArray(new Double[array.size()])); 219 public double getAveragePower(String type) { 222 if (data instanceof Double[]) { 223 return ((Double[])data)[0]; 225 return (Double) sPowerMap.get(type) [all...] |
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewHierarchyScene.java | 146 new Point2D.Double(0, 0), 148 new Point2D.Double(0, 1), 151 new Point2D.Double(0, 0), 153 new Point2D.Double(0, 1), 156 new Point2D.Double(0, 0), 158 new Point2D.Double(0, 1), 161 new Point2D.Double(0, 0), 163 new Point2D.Double(0, 1), 166 new Point2D.Double(0, 0), 168 new Point2D.Double(0, 1) [all...] |
/bionic/libm/man/ |
cimag.3 | 39 .Ft double 40 .Fn cimag "double complex z" 43 .Ft "long double" 44 .Fn cimagl "long double complex z" 45 .Ft "double complex" 46 .Fn conj "double complex z" 49 .Ft "long double complex" 50 .Fn conjl "long double complex z" 51 .Ft double 52 .Fn creal "double complex z [all...] |
lround.3 | 43 .Fn llround "double x" 47 .Fn llroundl "long double x" 49 .Fn lround "double x" 53 .Fn lroundl "long double x" 106 .Vt double 110 .Vt "long double"
|
/bionic/libm/src/ |
s_modf.c | 18 * modf(double x, double *iptr) 30 static const double one = 1.0; 32 double 33 modf(double x, double *iptr)
|
/cts/tests/tests/dpi/src/android/dpi/cts/ |
ConfigurationTest.java | 40 double xInches = (double) metrics.widthPixels / metrics.xdpi; 41 double yInches = (double) metrics.heightPixels / metrics.ydpi; 42 double diagonalInches = Math.sqrt(Math.pow(xInches, 2) + Math.pow(yInches, 2)); 46 double density = 160.0d * metrics.density;
|
/dalvik/hit/src/com/android/hit/ |
Types.java | 26 public static final int DOUBLE = 7; 43 case 'D': return 8; // double 53 case DOUBLE: return 8; 70 case 'D': return "double"; 80 case DOUBLE: return "double";
|
/external/blktrace/btt/ |
iostat.c | 63 static void update_tot_qusz(struct d_info *dip, double now) 73 static void update_idle_time(struct d_info *dip, double now, int force) 87 double dt, nios, avgrq_sz, p_util, nrqm, await, svctm; 88 double now = TO_SEC(stamp); 91 dt = (double)stamp / 1.0e9; 94 dt = (double)(stamp-last_start) / 1.0e9; 98 nios = (double)(sp->ios[0] + sp->ios[1]); 99 nrqm = (double)(sp->rqm[0] + sp->rqm[1]); 104 avgrq_sz = (double)(sp->sec[0] + sp->sec[1]) / nios; 119 fprintf(iostat_ofp, "%8.2lf ", (double)sp->rqm[1] / dt) [all...] |
/external/clang/test/SemaCXX/ |
pseudo-destructors.cpp | 8 typedef double Double; 22 void f(A* a, Foo *f, int *i, double *d) { 47 i->Integer::~Double(); // expected-error{{the type of object expression ('int') does not match the type being destroyed ('Double' (aka 'double')) in pseudo-destructor expression}}
|