/external/opencv/cv/src/ |
cvsumpixels.cpp | 201 ICV_DEF_INTEGRAL_OP_C1( 8u32s, uchar, int, double, int, CV_NOP, CV_8TO32F_SQR ) 202 ICV_DEF_INTEGRAL_OP_C1( 8u64f, uchar, double, double, int, CV_8TO32F, CV_8TO32F_SQR ) 203 ICV_DEF_INTEGRAL_OP_C1( 32f64f, float, double, double, double, CV_NOP, CV_SQR ) 204 ICV_DEF_INTEGRAL_OP_C1( 64f, double, double, double, double, CV_NOP, CV_SQR [all...] |
/external/opencv/cxcore/src/ |
cxrand.cpp | 153 uint64* state, const double* param ) \ 161 const double* p = param; \ 211 icvRand_64f_C1R( double* arr, int step, CvSize size, 212 uint64* state, const double* param ) 220 const double* p = param; 224 double f0, f1; 254 double f0; 287 double x, y, v, ax, bx; 343 uint64* state, const double* param ) \ 355 const double* p = param; [all...] |
/external/v8/test/mjsunit/compiler/ |
literals.js | 82 function double(x) { return x + x; } function 83 var s = 'var a = 1, b = 2; [double(a), double(b), double(3), double(4)]';
|
/external/webkit/Source/WebCore/html/parser/ |
HTMLParserIdioms.h | 41 String serializeForNumberType(double); 43 // Convert the specified string to a double. If the conversion fails, the return value is false. 45 // The double* parameter may be 0 to check if the string can be parsed without getting the result. 46 bool parseToDoubleForNumberType(const String&, double*); 47 bool parseToDoubleForNumberTypeWithDecimalPlaces(const String&, double*, unsigned*);
|
/external/webkit/Source/WebCore/page/animation/ |
ImplicitAnimation.h | 49 virtual void onAnimationEnd(double elapsedTime); 50 virtual bool startAnimation(double timeOffset); 51 virtual void pauseAnimation(double /*timeOffset*/); 69 virtual double timeToNextService(); 76 bool sendTransitionEvent(const AtomicString&, double elapsedTime);
|
/external/webkit/Source/WebCore/svg/animation/ |
SMILTime.h | 38 SMILTime(double time) : m_time(time) { } 45 double value() const { return m_time; } 52 static const double unresolvedValue; 53 static const double indefiniteValue; 55 double m_time;
|
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
DumpRenderTreeSupportGtk.h | 77 static bool pauseAnimation(WebKitWebFrame*, const char* name, double time, const char* element); 78 static bool pauseTransition(WebKitWebFrame*, const char* name, double time, const char* element); 79 static bool pauseSVGAnimation(WebKitWebFrame*, const char* animationId, double time, const char* elementId); 99 static double defaultMinimumTimerInterval(); // Not really tied to WebView 100 static void setMinimumTimerInterval(WebKitWebView*, double);
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
WebFrame.h | 98 bool getDocumentBackgroundColor(double* red, double* green, double* blue, double* alpha); 109 bool pauseAnimationOnElementWithId(const String& animationName, const String& elementID, double time);
|
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/ |
LayoutTestController.idl | 69 int numberOfPages(in double pageWidthInPixels, in double pageHeightInPixels); 70 int pageNumberForElementById(in DOMString id, in double pageWidthInPixels, in double pageHeightInPixels); 76 boolean pauseAnimationAtTimeOnElementWithId(in DOMString animationName, in double time, in DOMString elementId);
|
/frameworks/compile/libbcc/runtime/test/Unit/ |
fixdfdi_test.c | 19 // Assumption: double is a IEEE 64 bit floating point type 21 // value in double is representable in di_int (no range checking performed) 25 di_int __fixdfdi(double a); 27 int test__fixdfdi(double a, di_int expected) 37 char assumption_3[sizeof(double)*CHAR_BIT == 64] = {0};
|
fixunsdfdi_test.c | 20 // Assumption: double is a IEEE 64 bit floating point type 22 // value in double is representable in du_int or is negative 27 du_int __fixunsdfdi(double a); 29 int test__fixunsdfdi(double a, du_int expected) 39 char assumption_3[sizeof(double)*CHAR_BIT == 64] = {0};
|
fixunsdfsi_test.c | 20 // Assumption: double is a IEEE 64 bit floating point type 22 // value in double is representable in su_int or is negative 27 su_int __fixunsdfsi(double a); 29 int test__fixunsdfsi(double a, su_int expected) 38 char assumption_3[sizeof(double)*CHAR_BIT == 64] = {0};
|
fixunsxfsi_test.c | 21 // Assumption: long double is an intel 80 bit floating point type padded with 6 bytes 23 // value in long double is representable in su_int or is negative 29 su_int __fixunsxfsi(long double a); 31 int test__fixunsxfsi(long double a, su_int expected) 40 char assumption_3[sizeof(long double)*CHAR_BIT == 128] = {0};
|
/libcore/luni/src/test/java/libcore/java/text/ |
NumberFormatTest.java | 34 public double doubleValue() { return 123; } 49 public StringBuffer format(double value, StringBuffer b, FieldPosition f) { 50 b.append("double"); 63 assertEquals("double", nf.format(BigInteger.valueOf(Long.MAX_VALUE).add(BigInteger.ONE))); 65 assertEquals("double", nf.format(BigInteger.valueOf(Long.MIN_VALUE).subtract(BigInteger.ONE)));
|
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
Interp.h | 27 static double ciTable[81] = { 46 inline double ciCalc(PyramidShort *img, int xi, int yi, double xfrac, double yfrac) 48 double tmpf[4];
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
FlingScroller.java | 38 private double mSinAngle; 39 private double mCosAngle; 45 private double mCurrV; 85 double velocity = Math.hypot(velocityX, velocityY); 136 private double getV(float progress) {
|
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/ |
MockSuggestionProviderCursor.java | 56 public double getDouble(int column) { 111 public double getDouble(int column) { 114 if (o instanceof Double) return (Double) o; 115 return Double.valueOf(o.toString());
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
complex.h | 35 types `float complex' and `double complex'. */ 65 #define _Mdouble_ double 85 /* And the long double versions. It is non-critical to define them 86 here unconditionally since `long double' is required in ISO C99. */ 96 # define _Mlong_double_ long double
|
/external/llvm/test/CodeGen/Thumb/ |
2010-07-15-debugOrdering.ll | 6 %0 = type { [3 x double] } 25 %storemerge = phi double [ -1.000000e+00, %4 ], [ 1.000000e+00, %3 ], [ 1.000000e+00, %3 ] ; <double> [#uses=1] 27 %storemerge1 = select i1 %v_6, double 1.000000e+00, double -1.000000e+00 ; <double> [#uses=3] 28 call void @llvm.dbg.value(metadata !{double %storemerge}, i64 0, metadata !91), !dbg !0 30 %storemerge2 = select i1 %v_7, double 1.000000e+00, double -1.000000e+00 ; <double> [#uses=3 [all...] |
/external/opencv/cvaux/src/ |
cvtrifocal.cpp | 60 CvMat** resultProjMatrs, CvMat* resultPoints4D,int maxIter,double epsilon ); 79 double threshold,/* Threshold for good point */ 80 double p,/* Probability of good result. */ 86 double threshold,/* Threshold for good point */ 87 double p,/* Probability of good result. */ 154 double fx,fy,cx,cy; 239 double transMatr_dat[9]; 245 double corrPoints_dat[3*3*2];/* 3-point(images) by 3-coordinates by 2-correspondence*/ 260 double trPoint_dat[3*3]; 272 double resPnts_dat[9] [all...] |
/cts/apps/CtsVerifier/jni/audioquality/ |
CompareSpectra.cpp | 37 double sum = 0.0; 64 static void accumulateMagnitude(float* im, float* re, int size, double* mag) { 77 double* getAverageSpectrum(short* pcm, int numSamples, int fftSize, 84 double* mag = new double[numMag]; 102 double averageEnergy = 0.0; // per frame average energy 104 double e = mag[i]/numFrames; 148 double* spect1 = getAverageSpectrum(refPcm + onset, offset - onset, 152 double* spect2 = getAverageSpectrum(pcm + onset, offset - onset, 163 double val = 1.0 [all...] |
/external/emma/core/java12/com/vladium/emma/report/ |
IItemAttribute.java | 46 boolean passes (IItem item, int criterion); // ideally, criteria should come from a double-dispatched API 141 final double n_scaled = (double) n / m_scale; 169 return ((double) n) * IItem.PRECISION >= ((double) d) * m_scale * criterion; 180 final double nil = il.getAggregate (m_numeratorAggregateID); 181 final double dil = il.getAggregate (m_denominatorAggregateID); 183 final double nig = ig.getAggregate (m_numeratorAggregateID); 184 final double dig = ig.getAggregate (m_denominatorAggregateID); 186 final double diff = nil * dig - nig * dil; [all...] |
/external/fdlibm/ |
e_exp.c | 65 * For IEEE double 79 static const double 81 static double 102 double __ieee754_exp(double x) /* default IEEE double exp */ 104 double __ieee754_exp(x) /* default IEEE double exp */ 105 double x; 108 double y,hi,lo,c,t [all...] |
s_log1p.c | 14 /* double ieee_log1p(double x) 82 static const double 84 static double 97 static double zero = 0.0; 100 double ieee_log1p(double x) 102 double ieee_log1p(x) 103 double x; 106 double hfsq,f,c,s,z,R,u [all...] |
/external/llvm/lib/Target/ARM/ |
ARMScheduleA8.td | 258 // Double-precision FP Unary 267 // Double-precision FP Compare 272 // Single to Double FP Convert 277 // Double to Single FP Convert 286 // Double-Precision FP to Integer Convert 295 // Integer to Double-Precision FP Convert 304 // Double-precision FP ALU 313 // Double-precision FP Multiply 322 // Double-precision FP MAC 332 // Double-precision FP DI [all...] |