HomeSort by relevance Sort by last modified time
    Searched full:double (Results 1651 - 1675 of 10768) sorted by null

<<61626364656667686970>>

  /external/webkit/Source/WebCore/inspector/
InspectorTimelineAgent.h 118 void didFinishLoadingResource(unsigned long, bool didFail, double finishTime);
122 virtual void didGC(double, double, size_t);
156 GCEvent(double startTime, double endTime, size_t collectedBytes)
160 double startTime;
161 double endTime;
  /external/webkit/Source/WebCore/platform/graphics/transforms/
RotateTransformOperation.cpp 32 PassRefPtr<TransformOperation> RotateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity)
46 double fromAngle = fromOp ? fromOp->m_angle : 0;
76 double x = -decomp.quaternionX;
77 double y = -decomp.quaternionY;
78 double z = -decomp.quaternionZ;
79 double length = sqrt(x * x + y * y + z * z);
80 double angle = 0;
  /frameworks/base/services/java/com/android/server/
TwilightCalculator.java 71 public void calculateTwilight(long time, double latiude, double longitude) {
85 final double arcLongitude = -longitude / 360;
87 double solarTransitJ2000 = n + J0 + arcLongitude + 0.0053f * FloatMath.sin(meanAnomaly)
91 double solarDec = Math.asin(FloatMath.sin(solarLng) * FloatMath.sin(OBLIQUITY));
93 final double latRad = latiude * DEGREES_TO_RADIANS;
95 double cosHourAngle = (FloatMath.sin(ALTIDUTE_CORRECTION_CIVIL_TWILIGHT) - Math.sin(latRad)
  /external/opencv/cv/src/
cvshapedescr.cpp 44 CV_IMPL double
47 double perimeter = 0;
137 double x1 = (pt0.x + pt1.x) * 0.5;
138 double dy1 = pt0.x - pt1.x;
139 double x2 = (pt1.x + pt2.x) * 0.5;
140 double dy2 = pt1.x - pt2.x;
141 double y1 = (pt0.y + pt1.y) * 0.5;
142 double dx1 = pt1.y - pt0.y;
143 double y2 = (pt1.y + pt2.y) * 0.5;
144 double dx2 = pt2.y - pt1.y
    [all...]
cvcornersubpix.cpp 65 double coeff;
69 double eps;
184 double err;
189 double a, b, c, bb1, bb2;
209 double py = i - win.height;
213 double m = mask[k];
214 double tgx = gx_buffer[k];
215 double tgy = gy_buffer[k];
216 double gxx = tgx * tgx * m;
217 double gxy = tgx * tgy * m
    [all...]
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 
  /external/chromium/chrome/browser/sync/notifier/
registration_manager.cc 39 const double RegistrationManager::kRegistrationDelayMaxJitter = 0.5;
147 double RegistrationManager::CalculateBackoff(
148 double retry_interval,
149 double initial_retry_interval,
150 double min_retry_interval,
151 double max_retry_interval,
152 double backoff_exponent,
153 double jitter,
154 double max_jitter) {
156 double scaled_jitter = jitter * max_jitter
    [all...]
  /external/clang/test/Parser/
cxx-altivec.cpp 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'}}
66 __vector double vv_d1; // expected-error {{cannot use 'double' with '__vector'}}
67 vector double v_d2; // expected-error {{cannot use 'double' with '__vector'}}
68 __vector long double vv_ld3; // expected-warning {{Use of 'long' with '__vector' is deprecated}} expected-error {{cannot use 'double' with '__vector'}
    [all...]
  /external/stlport/test/unit/
num_put_get_test.cpp 62 static bool check_double(double val, double ref)
64 double epsilon = numeric_limits<double>::epsilon();
379 __check_get_float( double )
381 __check_get_float( long double )
539 ostr << setprecision(100) << numeric_limits<double>::max();
548 ostr << setprecision(100) << numeric_limits<long double>::max();
565 // ostr << setprecision(-numeric_limits<double>::min_exponent10 + numeric_limits<double>::digits10) << numeric_limits<double>::min()
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
num_put_get_test.cpp 62 static bool check_double(double val, double ref)
64 double epsilon = numeric_limits<double>::epsilon();
379 __check_get_float( double )
381 __check_get_float( long double )
539 ostr << setprecision(100) << numeric_limits<double>::max();
548 ostr << setprecision(100) << numeric_limits<long double>::max();
565 // ostr << setprecision(-numeric_limits<double>::min_exponent10 + numeric_limits<double>::digits10) << numeric_limits<double>::min()
    [all...]
  /ndk/tests/device/test-stlport/unit/
num_put_get_test.cpp 62 static bool check_double(double val, double ref)
64 double epsilon = numeric_limits<double>::epsilon();
379 __check_get_float( double )
381 __check_get_float( long double )
539 ostr << setprecision(100) << numeric_limits<double>::max();
548 ostr << setprecision(100) << numeric_limits<long double>::max();
565 // ostr << setprecision(-numeric_limits<double>::min_exponent10 + numeric_limits<double>::digits10) << numeric_limits<double>::min()
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
ZoomControl.java 33 private static final double MAX_ANGLE = Math.PI / 3;
34 private static final double THUMB_RADIUS_CONTAINER_SIZE_RATIO = 0.432;
35 private static final double THUMB_INTERNAL_RADIUS_CONTAINER_SIZE_RATIO = 0.24;
39 private double mRadius;
40 private double mInternalRadius;
44 private double mInterval;
73 double width = right - left;
148 final double alpha = Math.atan((double)y / (double)x)
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
CoordinateControls.java 35 * <p/>To get/set the coordinate, use {@link #setValue(double)} and {@link #getValue()} (preceded by
39 private double mValue;
129 public void setValue(double value) {
148 public double getValue() {
208 private double getValueFromSexagesimalControls() throws ParseException {
209 double degrees = mDecimalFormat.parse(mSexagesimalDegreeText.getText()).doubleValue();
210 double minutes = mDecimalFormat.parse(mSexagesimalMinuteText.getText()).doubleValue();
211 double seconds = mDecimalFormat.parse(mSexagesimalSecondText.getText()).doubleValue();
216 double value = degrees + minutes / 60. + seconds / 3600.;
220 private void setValueIntoDecimalControl(double value)
    [all...]
  /external/icu4c/test/intltest/
nmfmtrt.cpp 30 double NumberFormatRoundTripTest::MAX_ERROR = 1e-14;
31 double NumberFormatRoundTripTest::max_numeric_error = 0.0;
32 double NumberFormatRoundTripTest::min_numeric_error = 1.0;
78 double
79 NumberFormatRoundTripTest::randomDouble(double range)
81 double a = randFraction();
159 double negZero = 0.0; negZero /= -1.0;
177 // 1) Format the double into a string --> INF% (since 100 * double > DBL_MAX)
178 // 2) Parse the string into a double --> IN
    [all...]
  /external/valgrind/unittest/
linear_solver.h 2 std::vector<double> k;
13 inline double& operator[] (int ix) {
18 inline const double& operator[] (int ix) const {
39 inline Vector operator* (double factor) const {
46 inline double DotProduct (const Vector & other) const {
48 double ret = 0.0;
54 inline double Len2 () const {
55 double ret = 0.0;
61 inline double Len () const { return sqrt(Len2()); }
79 std::vector<double*> data
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
throw_allocator.h 72 double
102 set_throw_prob(double throw_prob);
104 static double
118 1 - std::pow(double(1 - _S_throw_prob), double(0.5 / (size + 1)));
125 const double _M_throw_prob_orig;
137 const double _M_throw_prob_orig;
180 static double _S_throw_prob;
294 double
298 const double min = _M_generator.min()
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/
throw_allocator.h 72 double
102 set_throw_prob(double throw_prob);
104 static double
118 1 - std::pow(double(1 - _S_throw_prob), double(0.5 / (size + 1)));
125 const double _M_throw_prob_orig;
137 const double _M_throw_prob_orig;
180 static double _S_throw_prob;
294 double
298 const double min = _M_generator.min()
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/
throw_allocator.h 72 double
102 set_throw_prob(double throw_prob);
104 static double
118 1 - std::pow(double(1 - _S_throw_prob), double(0.5 / (size + 1)));
125 const double _M_throw_prob_orig;
137 const double _M_throw_prob_orig;
180 static double _S_throw_prob;
294 double
298 const double min = _M_generator.min()
    [all...]
  /prebuilt/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ext/
throw_allocator.h 72 double
102 set_throw_prob(double throw_prob);
104 static double
118 1 - std::pow(double(1 - _S_throw_prob), double(0.5 / (size + 1)));
125 const double _M_throw_prob_orig;
137 const double _M_throw_prob_orig;
180 static double _S_throw_prob;
294 double
298 const double min = _M_generator.min()
    [all...]
  /external/fdlibm/
k_rem_pio2.c 16 * double x[],y[]; int e0,nx,prec; int ipio2[];
32 * pieces of 24-bit integers in double precision format.
37 * Example of breaking a double positive z into x[0]+x[1]+x[2]:
45 * y[] ouput result in an array of double precision numbers.
54 * long double t,w,r_head, r_tail;
55 * t = (long double)y[2] + (long double)y[1];
56 * w = (long double)y[0];
66 * 1 53 bits (double)
78 * double ieee_scalbn(), ieee_floor()
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
Color.cpp 79 static double calcHue(double temp1, double temp2, double hueVal)
99 RGBA32 makeRGBAFromHSLA(double hue, double saturation, double lightness, double alpha)
101 const double scaleFactor = nextafter(256.0, 0.0);
108 double temp2 = lightness < 0.5 ? lightness * (1.0 + saturation) : lightness + saturation - lightness * sa (…)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
math.h 67 #define _Mdouble_ double
81 instead of `double' and appending f to each function name. */
105 extern float __nldbl_nexttowardf (float __x, long double __y)
108 extern float __REDIRECT_NTH (nexttowardf, (float __x, long double __y),
111 extern double __REDIRECT_NTH (nexttoward, (double __x, long double __y),
113 extern long double __REDIRECT_NTH (nexttowardl,
114 (long double __x, long double __y)
    [all...]
  /external/llvm/docs/tutorial/
LangImpl4.html 65 define double @test(double %x) {
67 %addtmp = fadd double 3.000000e+00, %x
68 ret double %addtmp
80 define double @test(double %x) {
82 %addtmp = fadd double 2.000000e+00, 1.000000e+00
83 %addtmp1 = fadd double %addtmp, %x
84 ret double %addtmp1
113 define double @test(double %x)
    [all...]
  /external/opencv/cxcore/src/
cxmathfuncs.cpp 72 double z;
115 double d = 1.;
149 double b = xf[2] * xf[3], a = xf[0] * xf[1];
217 //static const double _0_5 = 0.5, _1_5 = 1.5;
247 IPCVAPI_IMPL( CvStatus, icvSqrt_64f, (const double *src, double *dst, int len), (src, dst, len) )
261 IPCVAPI_IMPL( CvStatus, icvInvSqrt_64f, (const double *src, double *dst, int len), (src, dst, len) )
310 ICV_DEF_SQR_MAGNITUDE_FUNC( 64f, double, double )
    [all...]
  /external/llvm/lib/Analysis/
ProfileInfo.cpp 54 const double ProfileInfoT<Function,BasicBlock>::MissingValue = -1;
57 double ProfileInfoT<MachineFunction, MachineBasicBlock>::MissingValue = -1;
59 template<> double
69 double Count = MissingValue;
85 double w = getEdgeWeight(getEdge(P, BB));
109 double w = getEdgeWeight(getEdge(BB, *SI));
124 double ProfileInfoT<MachineFunction, MachineBasicBlock>::
138 double ProfileInfoT<Function,BasicBlock>::getExecutionCount(const Function *F) {
139 std::map<const Function*, double>::iterator J =
148 double Count = getExecutionCount(&F->getEntryBlock())
    [all...]

Completed in 968 milliseconds

<<61626364656667686970>>