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

<<51525354555657585960>>

  /external/llvm/test/CodeGen/X86/
vec_logical.ll 21 define <2 x double> @t2(<2 x double> %a, <2 x double> %b) {
23 %tmp9 = bitcast <2 x double> %a to <2 x i64> ; <<2 x i64>> [#uses=1]
24 %tmp10 = bitcast <2 x double> %b to <2 x i64> ; <<2 x i64>> [#uses=1]
26 %tmp13 = bitcast <2 x i64> %tmp11 to <2 x double> ; <<2 x double>> [#uses=1]
27 ret <2 x double> %tmp13
x86-64-varargs.ll 9 %tmp10.i = tail call i32 (i8*, ...)* @printf( i8* getelementptr ([26 x i8]* @.str, i32 0, i64 0), i32 12, double 0x3FF3EB8520000000, i32 120, i64 123456677890, i32 -10, double 4.500000e+15 ) nounwind ; <i32> [#uses=0]
  /external/llvm/test/Feature/
intrinsics.ll 7 declare i1 @llvm.isunordered.f64(double, double)
37 declare double @llvm.sqrt.f64(double)
43 fcmp uno double 3.000000e+00, 4.000000e+00 ; <i1>:2 [#uses=0]
46 call double @llvm.sqrt.f64( double 6.000000e+00 ) ; <double>:4 [#uses=0]
testconstants.ll 13 define i8* @otherfunc(i32, double) {
18 define i8* @yetanotherfunc(i32, double) {
  /external/llvm/test/Transforms/InstCombine/
call2.ll 3 ; This used to crash trying to do a double-to-pointer conversion
7 %tmp = call i32 (...)* bitcast (i32 (i8*)* @f to i32 (...)*)( double 3.000000e+00 ) ; <i32> [#uses=0]
load.ll 75 define double @test11(double* %p) {
76 %t0 = getelementptr double* %p, i32 1
77 store double 2.0, double* %t0
78 %t1 = getelementptr double* %p, i32 1
79 %x = load double* %t1
80 ret double %x
  /external/opencv/cvaux/src/
cvtexture.cpp 60 double*** matrices;
66 double** descriptors;
283 double*** matrices = 0;
286 CV_CALL( destGLCM->matrices = (double***)cvAlloc( sizeof(matrices[0])*numSteps ));
291 CV_CALL( matrices[stepLoop] = (double**)cvAlloc( sizeof(matrices[0])*matrixSideLength ));
292 CV_CALL( matrices[stepLoop][0] = (double*)cvAlloc( sizeof(matrices[0][0])*
343 matrices[stepLoop][sideLoop1][sideLoop2] /= double(stepIncrementsCounter[stepLoop]);
386 CV_CALL( destGLCM->descriptors = (double**)
392 (double*)cvAlloc( destGLCM->numDescriptors*sizeof(destGLCM->descriptors[0][0])));
393 memset( destGLCM->descriptors[matrixLoop], 0, destGLCM->numDescriptors*sizeof(double) );
    [all...]
  /external/webkit/Source/WebCore/page/animation/
KeyframeAnimation.h 61 virtual double timeToNextService();
64 virtual void onAnimationStart(double elapsedTime);
65 virtual void onAnimationIteration(double elapsedTime);
66 virtual void onAnimationEnd(double elapsedTime);
67 virtual bool startAnimation(double timeOffset);
68 virtual void pauseAnimation(double timeOffset);
75 bool sendAnimationEvent(const AtomicString&, double elapsedTime);
86 void fetchIntervalEndpointsForProperty(int property, const RenderStyle*& fromStyle, const RenderStyle*& toStyle, double& progress) const;
  /external/webkit/Source/WebCore/platform/graphics/
FloatPoint.cpp 60 double newX, newY;
61 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
67 double newX, newY;
68 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
72 FloatPoint FloatPoint::narrowPrecision(double x, double y)
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
GeolocationClientQt.cpp 69 double latitude = coord.latitude();
70 double longitude = coord.longitude();
72 double altitude = coord.altitude();
74 double accuracy = geoPosition.attribute(QGeoPositionInfo::HorizontalAccuracy);
77 double altitudeAccuracy = geoPosition.attribute(QGeoPositionInfo::VerticalAccuracy);
80 double heading = geoPosition.attribute(QGeoPositionInfo::Direction);
83 double speed = geoPosition.attribute(QGeoPositionInfo::GroundSpeed);
85 double timeStampInSeconds = geoPosition.timestamp().toMSecsSinceEpoch() / 1000;
  /external/webkit/Source/WebKit2/Shared/
WebURLRequest.cpp 29 double WebURLRequest::defaultTimeoutInterval()
35 void WebURLRequest::setDefaultTimeoutInterval(double timeoutInterval)
  /frameworks/base/core/java/android/gesture/
Prediction.java 22 public double score;
24 Prediction(String label, double predictionScore) {
  /frameworks/compile/libbcc/runtime/lib/
divdc3.c 21 double _Complex
22 __divdc3(double __a, double __b, double __c, double __d)
25 double __logbw = logb(fmax(fabs(__c), fabs(__d)));
32 double __denom = __c * __c + __d * __d;
33 double _Complex z;
  /frameworks/compile/libbcc/runtime/lib/i386/
floatdidf.S 6 // double __floatundidf(du_int a);
26 mulsd REL_ADDR(twop32), %xmm1 // a_hi as a double (without rounding)
  /libcore/luni/src/main/java/libcore/util/
MutableDouble.java 20 public double value;
22 public MutableDouble(double value) {
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
OccurrenceRenderer.java 60 double x = timeDataSet.getX(series, item).doubleValue();
63 double yMin = rangeAxis.getLowerBound();
64 double yMax = rangeAxis.getUpperBound();
70 double x2D = domainAxis.valueToJava2D(x, dataArea, domainEdge);
71 double yMin2D = rangeAxis.valueToJava2D(yMin, dataArea, rangeEdge);
72 double yMax2D = rangeAxis.valueToJava2D(yMax, dataArea, rangeEdge);
81 line = new Line2D.Double(yMin2D, x2D, yMax2D, x2D);
84 line = new Line2D.Double(x2D, yMin2D, x2D, yMax2D);
  /external/opencv/ml/src/
mlem.cpp 222 double opt = FLT_MAX;
232 size = sizeof(double) * (nclusters + dims);
241 diff = cvMat( 1, dims, CV_64FC1, (double*)buffer + nclusters );
246 const double* mean_k = (const double*)(means->data.ptr + means->step*k);
247 const double* w = (const double*)(inv_eigen_values->data.ptr + inv_eigen_values->step*k);
248 double cur = log_weight_div_det->data.db[k];
253 double w0 = w[0];
256 double val = sample_data[i] - mean_k[i]
    [all...]
  /external/opencv/cv/include/
cv.h 85 double sigma1 CV_DEFAULT(0),
86 double sigma2 CV_DEFAULT(0));
114 CVAPI(CvMat**) cvCreatePyramid( const CvArr* img, int extra_layers, double rate,
130 int level, double threshold1,
131 double threshold2 );
135 double sp, double sr, int max_level CV_DEFAULT(1),
146 CvArr* dst, double inpaintRange, int flags );
283 CVAPI(CvMat*) cv2DRotationMatrix( CvPoint2D32f center, double angle,
284 double scale, CvMat* map_matrix )
    [all...]
  /bionic/libm/sh/
_fpmath.h 31 * Assumes that 'long double' on SH-linux is just an alias for 'double'.
34 long double e;
52 * bit in a long double. But SH4 does not support it.
  /cts/tools/vm-tests/src/dot/junit/opcodes/neg_double/d/
T_neg_double_6.d 16 neg-double v0, v5
  /cts/tools/vm-tests/src/dot/junit/opcodes/rem_double/d/
T_rem_double_5.d 16 rem-double v0, v9, v12
  /cts/tools/vm-tests/src/dot/junit/opcodes/rem_double_2addr/d/
T_rem_double_2addr_1.d 16 rem-double/2addr v10, v12
T_rem_double_2addr_2.d 16 rem-double/2addr v12, v14
T_rem_double_2addr_3.d 16 rem-double/2addr v11, v12
T_rem_double_2addr_4.d 16 rem-double/2addr v10, v12

Completed in 752 milliseconds

<<51525354555657585960>>