/external/webkit/Source/WebCore/html/ |
HTMLMeterElement.idl | 24 attribute double value 26 attribute double min 28 attribute double max 30 attribute double low 32 attribute double high 34 attribute double optimum
|
/frameworks/base/core/java/android/webkit/ |
MockGeolocation.java | 32 public void setPosition(double latitude, double longitude, double accuracy) { 57 private static native void nativeSetPosition(double latitude, double longitude, double accuracy);
|
/frameworks/base/location/java/android/location/ |
IGeocodeProvider.aidl | 29 String getFromLocation(double latitude, double longitude, int maxResults, 33 double lowerLeftLatitude, double lowerLeftLongitude, 34 double upperRightLatitude, double upperRightLongitude, int maxResults,
|
/frameworks/compile/libbcc/runtime/lib/arm/ |
gtdf2vfp.S | 13 // extern double __gtdf2vfp(double a, double b); 16 // Uses Darwin calling convention where double precision arguments are passsed 20 fmdrr d6, r0, r1 // load r0/r1 pair in double register 21 fmdrr d7, r2, r3 // load r2/r3 pair in double register
|
ledf2vfp.S | 13 // extern double __ledf2vfp(double a, double b); 16 // Uses Darwin calling convention where double precision arguments are passsed 20 fmdrr d6, r0, r1 // load r0/r1 pair in double register 21 fmdrr d7, r2, r3 // load r2/r3 pair in double register
|
ltdf2vfp.S | 13 // extern double __ltdf2vfp(double a, double b); 16 // Uses Darwin calling convention where double precision arguments are passsed 20 fmdrr d6, r0, r1 // load r0/r1 pair in double register 21 fmdrr d7, r2, r3 // load r2/r3 pair in double register
|
nedf2vfp.S | 13 // extern double __nedf2vfp(double a, double b); 16 // Uses Darwin calling convention where double precision arguments are passsed 20 fmdrr d6, r0, r1 // load r0/r1 pair in double register 21 fmdrr d7, r2, r3 // load r2/r3 pair in double register
|
negdf2vfp.S | 13 // extern double __negdf2vfp(double a, double b); 15 // Returns the negation a double precision floating point numbers using the 16 // Darwin calling convention where double arguments are passsed in GPR pairs. 19 eor r1, r1, #-2147483648 // flip sign bit on double in r0/r1 pair
|
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_utilities_camera.cpp | 29 void db_Approx3DCalMat(double K[9],double Kinv[9],int im_width,int im_height,double f_correction,int field) 31 double iw,ih,av_size,field_fact; 36 iw=(double)im_width; 37 ih=(double)(im_height*field_fact);
|
/external/llvm/test/Transforms/SimplifyCFG/ |
2006-10-29-InvokeCrash.ll | 31 %struct.QPointF = type { double, double } 34 %struct.QRectF = type { double, double, double, double } 76 call void @_ZN7QPointFC1Edd( %struct.QPointF* %tmp, double 0.000000e+00, double 0.000000e+00 ) 84 %tmp.upgrd.7 = call double @_ZNK6QSizeF6heightEv( %struct.QPointF* %tmp17 ) ; <double> [#uses=1 [all...] |
/external/llvm/test/ExecutionEngine/ |
test-cast.ll | 18 uitofp i1 true to double ; <double>:11 [#uses=0] 28 sitofp i8 4 to double ; <double>:21 [#uses=0] 38 uitofp i8 0 to double ; <double>:31 [#uses=0] 47 sitofp i16 0 to double ; <double>:40 [#uses=0] 56 uitofp i16 0 to double ; <double>:49 [#uses=0 [all...] |
/cts/tools/vm-tests/src/dot/junit/opcodes/neg_double/ |
Test_neg_double.java | 59 * @title Types of arguments - long, double. Dalvik doens't distinguish 64-bits types internally, 60 * so this operation of long and double makes no sense but shall not crash the VM. 73 * @title Argument = Double.NaN 77 assertEquals(Double.NaN, t.run(Double.NaN)); 81 * @title Argument = Double.NEGATIVE_INFINITY 85 assertEquals(Double.POSITIVE_INFINITY, t.run(Double.NEGATIVE_INFINITY)); 89 * @title Argument = Double.POSITIVE_INFINITY 93 assertEquals(Double.NEGATIVE_INFINITY, t.run(Double.POSITIVE_INFINITY)) [all...] |
/external/webkit/Source/WebCore/platform/graphics/cairo/ |
DrawErrorUnderline.h | 51 static inline void drawErrorUnderline(cairo_t* cr, double x, double y, double width, double height) 53 static const double heightSquares = 2.5; 55 double square = height / heightSquares; 56 double halfSquare = 0.5 * square; 58 double unitWidth = (heightSquares - 1.0) * square; 64 double bottom = y + height; 65 double top = y [all...] |
/external/webkit/Source/WebCore/webaudio/ |
AudioParam.h | 41 static const double DefaultSmoothingConstant; 42 static const double SnapThreshold; 44 static PassRefPtr<AudioParam> create(const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0) 49 AudioParam(const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0) 83 void setSmoothingConstant(double k) { m_smoothingConstant = k; } 87 double m_value [all...] |
/libcore/luni/src/main/java/java/text/ |
ChoiceFormat.java | 42 * double[] limits = {1, 2, 3, 4, 5, 6, 7}; 45 * double[] limits2 = {0, 1, ChoiceFormat.nextDouble(1)}; 50 * ChoiceFormat.nextDouble(double) allows to get the double following the one 75 private double[] choiceLimits; 80 * Constructs a new {@code ChoiceFormat} with the specified double values 82 * {@link #format(double, StringBuffer, FieldPosition) format} with a double 97 public ChoiceFormat(double[] limits, String[] formats) { 124 double[] limits = new double[5] [all...] |
/external/stlport/src/ |
num_put_float.cpp | 130 static inline bool _Stl_is_nan_or_inf(double x) 136 static inline bool _Stl_is_neg_nan(double x) { return isnan(x) && ( copysign(1., x) < 0 ); } 137 static inline bool _Stl_is_inf(double x) { return isinf(x); } 138 // inline bool _Stl_is_neg_inf(double x) { return isinf(x) < 0; } 139 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && x < 0; } 143 static inline bool _Stl_is_nan_or_inf(double x) { return IsNANorINF(x); } 144 static inline bool _Stl_is_inf(double x) { return IsNANorINF(x) && IsINF(x); } 145 static inline bool _Stl_is_neg_inf(double x) { return (IsINF(x)) && (x < 0.0); } 146 static inline bool _Stl_is_neg_nan(double x) { return IsNegNAN(x); } 148 static inline bool _Stl_is_nan_or_inf(double x) { return !_finite(x); [all...] |
/ndk/sources/cxx-stl/stlport/src/ |
num_put_float.cpp | 130 static inline bool _Stl_is_nan_or_inf(double x) 136 static inline bool _Stl_is_neg_nan(double x) { return isnan(x) && ( copysign(1., x) < 0 ); } 137 static inline bool _Stl_is_inf(double x) { return isinf(x); } 138 // inline bool _Stl_is_neg_inf(double x) { return isinf(x) < 0; } 139 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && x < 0; } 143 static inline bool _Stl_is_nan_or_inf(double x) { return IsNANorINF(x); } 144 static inline bool _Stl_is_inf(double x) { return IsNANorINF(x) && IsINF(x); } 145 static inline bool _Stl_is_neg_inf(double x) { return (IsINF(x)) && (x < 0.0); } 146 static inline bool _Stl_is_neg_nan(double x) { return IsNegNAN(x); } 148 static inline bool _Stl_is_nan_or_inf(double x) { return !_finite(x); [all...] |
/libcore/luni/src/main/java/java/lang/ |
StrictMath.java | 39 * The double value closest to e, the base of the natural logarithm. 41 public static final double E = Math.E; 44 * The double value closest to pi, the ratio of a circle's circumference to 47 public static final double PI = Math.PI; 70 public static double abs(double d) { 125 * Returns the closest double approximation of the arc cosine of the 139 public static native double acos(double d); 142 * Returns the closest double approximation of the arc sine of the argumen [all...] |
/external/valgrind/main/none/tests/ppc32/ |
power5+_round.c | 44 double inf, neg0, nan; 46 double d; 59 double set[] = { inf, 1.5, 0, neg0, -1.5, -inf, nan }; 84 double set[] = { inf, 1.9, 1.1, 0, neg0, -1.1, -1.9, -inf, nan }; 85 double frin[] = { inf, 2.0, 1.0, 0, neg0, -1.0, -2.0, -inf, nan }; 86 double friz[] = { inf, 1.0, 1.0, 0, neg0, -1.0, -1.0, -inf, nan }; 87 double frip[] = { inf, 2.0, 2.0, 0, neg0, -1.0, -1.0, -inf, nan }; 88 double frim[] = { inf, 1.0, 1.0, 0, neg0, -2.0, -2.0, -inf, nan }; 92 double set2[] = { 0.9, 0.1, -0.1, -0.9, 1e-40, -1e-40 }; 93 double frin2[] = { 1.0, 0.0, -0.0, -1.0, 0.0, -0.0 } [all...] |
/external/valgrind/main/memcheck/tests/ |
vcpu_fnfns.c | 11 double d; 15 const double tinyD = 0.0000000001; 16 const double tinyF = 0.0001; 27 printf("floorF(%+20.4e) = %+20.4e\n", (double)f, (double)floorf(f)); 39 printf(" ceilF(%+20.4e) = %+20.4e\n", (double)f, (double)ceilf(f)); 51 printf(" sinF(%+20.4e) = %+20.4e\n", (double)f, (double)sinf(f)); 63 printf(" cosF(%+20.4e) = %+20.4e\n", (double)f, (double)cosf(f)) [all...] |
/external/webkit/Source/WebCore/platform/graphics/filters/ |
FEColorMatrix.cpp | 76 inline void matrix(double& red, double& green, double& blue, double& alpha, const Vector<float>& values) 78 double r = values[0] * red + values[1] * green + values[2] * blue + values[3] * alpha + values[4] * 255; 79 double g = values[5] * red + values[6] * green + values[7] * blue + values[8] * alpha + values[9] * 255; 80 double b = values[10] * red + values[11] * green + values[12] * blue + values[13] * alpha + values[14] * 255; 81 double a = values[15] * red + values[16] * green + values[17] * blue + values[18] * alpha + values[19] * 255; 89 inline void saturate(double& red, double& green, double& blue, const float& s [all...] |
/external/opencv/cvaux/src/ |
cvvecfacetracking.cpp | 61 const double pi = 3.1415926535; 72 inline double CalculateTransformationLMS3_0( CvPoint* pTemplPoints, CvPoint* pSrcPoints); 73 inline double CalculateTransformationLMS3( CvPoint* pTemplPoints, 75 double* pdbAverageScale, 76 double* pdbAverageRotate, 77 double* pdbAverageShiftX, 78 double* pdbAverageShiftY ); 111 double dbRotateDelta; 112 double dbRotateAngle; 461 cvTrackFace(CvFaceTracker* pFaceTracker, IplImage* imgGray, CvRect* pRects, int nRects, CvPoint* ptRotate, double* dbAngleRotate [all...] |
/bionic/libm/bsdsrc/ |
mathimpl.h | 47 * IEEE double variable to zero. It must be expression-like for syntactic 55 _b_trunc(volatile double *_dp) 63 struct Double { 64 double a; 65 double b; 71 double __exp__D(double, double); 72 struct Double __log__D(double); [all...] |
/external/clang/test/CodeGen/ |
x86_32-arguments-linux.c | 7 // CHECK: <1 x double> %a4, %struct.s56_2* byval align 4, 9 // CHECK: <2 x double> %a8, %struct.s56_4* byval align 4, 11 // CHECK: <4 x double> %a12, %struct.s56_6* byval align 4) 16 // CHECK: <1 x double> %{{[^ ]*}}, %struct.s56_2* byval align 4 %{{[^ ]*}}, 18 // CHECK: <2 x double> %{{[^ ]*}}, %struct.s56_4* byval align 4 %{{[^ ]*}}, 20 // CHECK: <4 x double> %{{[^ ]*}}, %struct.s56_6* byval align 4 %{{[^ ]*}}) 23 // <rdar://problem/7964854> [i386] clang misaligns long double in structures 27 typedef double __attribute__((vector_size (8))) t56_v1d; 29 typedef double __attribute__((vector_size (16))) t56_v2d; 31 typedef double __attribute__((vector_size (32))) t56_v4d [all...] |
/external/javassist/src/main/javassist/bytecode/annotation/ |
DoubleMemberValue.java | 24 * Double floating-point number constant value. 34 * Constructs a double constant value. The initial value is specified 45 * Constructs a double constant value. 49 public DoubleMemberValue(double d, ConstPool cp) { 55 * Constructs a double constant value. The initial value is 0.0. 63 return new Double(getValue()); 67 return double.class; 73 public double getValue() { 80 public void setValue(double newValue) { 88 return Double.toString(getValue()) [all...] |