/external/llvm/test/Transforms/SCCP/ |
calltest.ll | 6 declare double @sqrt(double) 8 define double @test(i32 %param) { 13 %V = phi double [ 1.000000e+00, %entry ], [ %V2, %Loop ] ; <double> [#uses=2] 14 %V2 = call double @sqrt( double %V ) ; <double> [#uses=1] 19 ret double %V
|
/external/stlport/test/unit/ |
unary.h | 19 struct square_root : public unary_function<double, double> { 20 double operator()(double x_) const
|
/external/valgrind/main/memcheck/tests/ |
fprw.c | 9 volatile double d; 11 double* dp = malloc(sizeof(double)); 24 * ((double*)ip) = 1.2 + d;
|
/external/valgrind/main/none/tests/amd64/ |
bug132918.c | 8 struct { double d; int i; } Res; 10 static void do_fprem ( Res* res, double x, double y ) 13 double f64; 14 double xx = x; 15 double yy = y; 37 printf("%s -> 0x%04x %f\n", s, (int)res->i, (double)res->d); 44 double theta; 50 theta = (2.0 * 3.14159) / 10.0 * (double)i;
|
/external/webkit/Source/WebCore/css/ |
CSSTimingFunctionValue.h | 69 static PassRefPtr<CSSCubicBezierTimingFunctionValue> create(double x1, double y1, double x2, double y2) 74 double x1() const { return m_x1; } 75 double y1() const { return m_y1; } 76 double x2() const { return m_x2; } 77 double y2() const { return m_y2; } 80 CSSCubicBezierTimingFunctionValue(double x1, double y1, double x2, double y2 [all...] |
/external/webkit/Source/WebCore/html/ |
NumberInputType.h | 45 virtual double valueAsNumber() const; 46 virtual void setValueAsNumber(double, ExceptionCode&) const; 52 virtual double minimum() const; 53 virtual double maximum() const; 54 virtual bool stepMismatch(const String&, double) const; 55 virtual double stepBase() const; 56 virtual double stepBaseWithDecimalPlaces(unsigned*) const; 57 virtual double defaultStep() const; 58 virtual double stepScaleFactor() const; 61 virtual double parseToDouble(const String&, double) const [all...] |
/external/webkit/Source/WebCore/svg/ |
SVGMatrix.h | 38 SVGMatrix(double a, double b, double c, double d, double e, double f) 43 SVGMatrix translate(double tx, double ty) 50 SVGMatrix scale(double s) 57 SVGMatrix scaleNonUniform(double sx, double sy [all...] |
/external/webkit/Source/WebKit/chromium/public/ |
WebGeolocationPosition.h | 43 WebGeolocationPosition(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) 50 WEBKIT_API void assign(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool provides (…) [all...] |
/external/webkit/Source/WebKit2/Shared/ |
WebGeolocationPosition.h | 44 double timestamp; 45 double latitude; 46 double longitude; 47 double accuracy; 50 static PassRefPtr<WebGeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy) 57 double timestamp() const { return m_data.timestamp; } 58 double latitude() const { return m_data.latitude; [all...] |
/frameworks/compile/libbcc/runtime/lib/ppc/ |
floatditf.c | 5 /* long double __floatditf(long long x); */ 6 /* This file implements the PowerPC long long -> long double conversion */ 11 long double __floatditf(int64_t a) { 13 static const double twop32 = 0x1.0p32; 14 static const double twop52 = 0x1.0p52; 19 const double high_addend = (double)((int32_t)(a >> 32))*twop32 - twop52; 21 /* At this point, we have two double precision numbers 23 * as a canonicalized long double:
|
floatunditf.c | 5 /* long double __floatunditf(unsigned long long x); */ 6 /* This file implements the PowerPC unsigned long long -> long double conversion */ 11 long double __floatunditf(uint64_t a) { 15 static const double twop52 = 0x1.0p52; 16 static const double twop84 = 0x1.0p84; 17 static const double twop84_plus_twop52 = 0x1.00000001p84; 25 const double high_addend = high.d - twop84_plus_twop52; 27 /* At this point, we have two double precision numbers 29 * as a canonicalized long double:
|
/frameworks/compile/slang/tests/F_root_compute_non_uint32_t_xyzar/ |
root_compute_non_uint32_t_xyzar.rs | 5 int x, float y, double z, uchar ar) {
|
/ndk/sources/host-tools/make-3.81/config/ |
longdouble.m4 | 10 dnl Test whether the compiler supports the 'long double' type. 15 AC_CACHE_CHECK([for long double], gt_cv_c_long_double, 20 /* The Stardent Vistra knows sizeof(long double), but does not support it. */ 21 long double foo = 0.0; 22 /* On Ultrix 4.3 cc, long double is 4 and double is 8. */ 23 int array [2*(sizeof(long double) >= sizeof(double)) - 1]; 28 AC_DEFINE(HAVE_LONG_DOUBLE, 1, [Define if you have the 'long double' type.])
|
/ndk/tests/device/test-gnustl-full/unit/ |
unary.h | 19 struct square_root : public unary_function<double, double> { 20 double operator()(double x_) const
|
/ndk/tests/device/test-stlport/unit/ |
unary.h | 19 struct square_root : public unary_function<double, double> { 20 double operator()(double x_) const
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/ |
LocationPoint.java | 23 private double mLongitude; 24 private double mLatitude; 26 private double mElevation; 28 final void setLocation(double longitude, double latitude) { 33 public final double getLongitude() { 37 public final double getLatitude() { 41 final void setElevation(double elevation) { 50 public final double getElevation() {
|
/external/webkit/Source/WebCore/platform/audio/ |
Biquad.h | 52 void setLowpassParams(double cutoff, double resonance); 53 void setHighpassParams(double cutoff, double resonance); 55 void setLowShelfParams(double cutoff, double dbGain); 58 // void setHighShelfParams(double cutoff, double dbGain); 59 // void setParametricEQParams(double cutoff, double resonance) [all...] |
/hardware/invensense/mlsdk/platform/include/ |
mlmath.h | 34 #define round(x)(((double)((long long)((x)>0?(x)+.5:(x)-.5)))) 44 double ml_asin(double); 45 double ml_atan(double); 46 double ml_atan2(double, double); 47 double ml_log(double); [all...] |
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_utilities_poly.h | 39 inline void db_SolveQuadratic(double *roots,int *nr_roots,double a,double b,double c) 41 double rs,srs,q; 77 the second root is the double root 79 DB_API void db_SolveCubic(double *roots,int *nr_roots,double a,double b,double c,double d) [all...] |
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
db_utilities_poly.h | 39 inline void db_SolveQuadratic(double *roots,int *nr_roots,double a,double b,double c) 41 double rs,srs,q; 77 the second root is the double root 79 DB_API void db_SolveCubic(double *roots,int *nr_roots,double a,double b,double c,double d) [all...] |
/external/llvm/test/CodeGen/X86/ |
avx-logic.ll | 4 define <4 x double> @andpd256(<4 x double> %y, <4 x double> %x) nounwind uwtable readnone ssp { 6 %0 = bitcast <4 x double> %x to <4 x i64> 7 %1 = bitcast <4 x double> %y to <4 x i64> 9 %2 = bitcast <4 x i64> %and.i to <4 x double> 11 %3 = fadd <4 x double> %2, <double 0x0, double 0x0, double 0x0, double 0x0 [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/ |
cmath | 60 inline double 61 pow(double __x, double __y) 68 inline long double 69 pow(long double __x, long double __y) 114 inline long double 115 assoc_laguerrel(unsigned int __n, unsigned int __m, long double __x) 117 return __detail::__assoc_laguerre<long double>(__n, __m, __x); 133 inline long double [all...] |
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
cmath | 60 inline double 61 pow(double __x, double __y) 68 inline long double 69 pow(long double __x, long double __y) 114 inline long double 115 assoc_laguerrel(unsigned int __n, unsigned int __m, long double __x) 117 return __detail::__assoc_laguerre<long double>(__n, __m, __x); 133 inline long double [all...] |
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
cmath | 60 inline double 61 pow(double __x, double __y) 68 inline long double 69 pow(long double __x, long double __y) 114 inline long double 115 assoc_laguerrel(unsigned int __n, unsigned int __m, long double __x) 117 return __detail::__assoc_laguerre<long double>(__n, __m, __x); 133 inline long double [all...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
cmath | 60 inline double 61 pow(double __x, double __y) 68 inline long double 69 pow(long double __x, long double __y) 114 inline long double 115 assoc_laguerrel(unsigned int __n, unsigned int __m, long double __x) 117 return __detail::__assoc_laguerre<long double>(__n, __m, __x); 133 inline long double [all...] |