Lines Matching full:double
50 double* _x = (x); \
51 double* _y = (y); \
55 double t0 = _x[_i]; \
56 double t1 = _y[_i]; \
65 icvMatrAXPY_64f( int m, int n, const double* x, int dx,
66 const double* a, double* y, int dy )
72 double s = a[i];
76 double t0 = y[j] + s*x[j];
77 double t1 = y[j+1] + s*x[j+1];
94 icvMatrAXPY3_64f( int m, int n, const double* x, int l, double* y, double h )
100 double s = 0;
114 double t0 = y[j] + s*x[j];
115 double t1 = y[j+1] + s*x[j+1];
137 double t0 = _x[_i]; \
138 double t1 = _y[_i]; \
152 double s = a[i];
156 double t0 = y[j] + s*x[j];
157 double t1 = y[j+1] + s*x[j+1];
173 icvMatrAXPY3_32f( int m, int n, const float* x, int l, float* y, double h )
179 double s = 0;
192 double t0 = y[j] + s*x[j];
193 double t1 = y[j+1] + s*x[j+1];
207 static double
208 pythag( double a, double b )
232 icvSVD_64f( double* a, int lda, int m, int n,
233 double* w,
234 double* uT, int lduT, int nu,
235 double* vT, int ldvT,
236 double* buffer )
238 double* e;
239 double* temp;
240 double *w1, *e1;
241 double *hv;
242 double ku0 = 0, kv0 = 0;
243 double anorm = 0;
244 double *a1, *u0 = uT, *v0 = vT;
245 double scale, h;
250 double* hv0 = (double*)cvStackAlloc( (m+2)*sizeof(hv0[0])) + 1;
280 double t = a1[0];
286 double f = 1./scale, g, s = 0;
290 double t = (hv[j] *= f);
337 double t = a[j];
343 double f = 1./scale, g, s = 0;
347 double t = (hv[j] *= f);
397 double s;
441 double s;
473 double tnorm = fabs( w[i] );
485 double z = 0;
490 double c, s, f, g, x, y;
611 double t;
637 double ku0 = 0, kv0 = 0;
638 double anorm = 0;
640 double
677 double t = a1[0];
683 double f = 1./scale, g, s = 0;
687 double t = (hv[j] = (float)(hv[j]*f));
734 double t = a[j];
740 double f = 1./scale, g, s = 0;
744 double t = (hv[j] = (float)(hv[j]*f));
794 double s;
838 double s;
870 double tnorm = fabs( w[i] );
882 double z = 0;
887 double c, s, f, g, x, y;
1023 icvSVBkSb_64f( int m, int n, const double* w,
1024 const double* uT, int lduT,
1025 const double* vT, int ldvT,
1026 const double* b, int ldb, int nb,
1027 double* x, int ldx, double* buffer )
1029 double threshold = 0;
1045 double wi = w[i];
1053 double s = 0;
1076 double t0 = x[j] + s*vT[j];
1077 double t1 = x[j+1] + s*vT[j+1];
1139 double wi = w[i];
1147 double s = 0;
1171 double t0 = x[j] + s*vT[j];
1172 double t1 = x[j+1] + s*vT[j+1];
1403 icvSVD_64f( a->data.db, a->step/sizeof(double), a->rows, a->cols,
1404 (double*)tw, u->data.db, u->step/sizeof(double), u_cols,
1405 v->data.db, v->step/sizeof(double), (double*)buffer );
1421 ((double*)(w->data.ptr + i*w->step))[i*shift] = ((double*)tw)[i];
1605 icvSVBkSb_64f( m, n, (double*)tw, u->data.db, u->step/sizeof(double),
1606 v->data.db, v->step/sizeof(double),
1607 b->data.db, b->step/sizeof(double), b->cols,
1608 x->data.db, x->step/sizeof(double),
1609 (double*)(buffer + t_buf_offset) );