HomeSort by relevance Sort by last modified time
    Searched defs:x1 (Results 926 - 950 of 2879) sorted by null

<<31323334353637383940>>

  /external/opencv/cxcore/src/
cxutils.cpp 275 double x0 = 0., x1 = 0., x2 = 0.; local
345 x1 = a3 / q;
370 x1 = t0 * cos(t1 + (2.*CV_PI/3)) - t2;
394 r[step] = (float)x1;
403 r[step] = x1;
    [all...]
  /external/opencv/ml/src/
mlann_mlp.cpp 449 double x0 = 1.+data[i], x1 = 1.+data[i+1], x2 = 1.+data[i+2], x3 = 1.+data[i+3]; local
450 double a = x0*x1, b = x2*x3, d = scale2/(a*b), t0, t1;
452 t0 = (2 - x0)*b*x1; t1 = (2 - x1)*b*x0;
529 double x0 = 1.+xf[i], x1 = 1.+xf[i+1], x2 = 1.+xf[i+2], x3 = 1.+xf[i+3]; local
530 double a = x0*x1, b = x2*x3, d = 1./(a*b), t0, t1;
533 t0 = b*x1; t1 = b*x0;
536 t0 *= scale2*(2 - x0); t1 *= scale2*(2 - x1);
937 CvMat *x1 = &hdr1, *x2 = &hdr2, *grad1 = &ghdr1, *grad2 = &ghdr2, *temp; local
971 cvInitMatHeader( x1, 1, ivcount, CV_64F, x[0] )
1132 CvMat *x1, *x2, *grad1, *grad2, *temp; local
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
types.hpp 1768 _Tp x1 = std::max(a.x, b.x); local
1782 _Tp x1 = std::min(a.x, b.x); local
    [all...]
  /external/opencv3/modules/features2d/src/
brisk.cpp 495 const float x1 = xf + sigma_half;
501 const int x_right = int(x1 + 0.5);
507 const float r_x1 = x1 - float(x_right) + 0.5f;
2224 const float x1 = xf + sigma_half; local
    [all...]
  /external/opencv3/modules/features2d/src/kaze/
KAZEFeatures.cpp 661 int x1 = 0, y1 = 0, sample_step = 0, pattern_size = 0; local
715 x1 = (int)(sample_x - 0.5f);
717 checkDescriptorLimits(x1, y1, options_.img_width, options_.img_height);
724 fx = sample_x - x1;
727 res1 = *(evolution[level].Lx.ptr<float>(y1)+x1);
729 res3 = *(evolution[level].Lx.ptr<float>(y2)+x1);
733 res1 = *(evolution[level].Ly.ptr<float>(y1)+x1);
735 res3 = *(evolution[level].Ly.ptr<float>(y2)+x1);
790 int x1 = 0, y1 = 0, x2 = 0, y2 = 0, sample_step = 0, pattern_size = 0; local
918 int x1 = 0, y1 = 0, sample_step = 0, pattern_size = 0; local
1073 int x1 = 0, y1 = 0, x2 = 0, y2 = 0, sample_step = 0, pattern_size = 0; local
    [all...]
  /external/opencv3/modules/imgproc/src/
hough.cpp 1063 int sx, sy, x0, y0, x1, y1, r; local
    [all...]
moments.cpp 224 int operator() (const uchar * ptr, int len, int & x0, int & x1, int & x2, int & x3)
250 x1 = buf[0] + buf[1] + buf[2] + buf[3];
276 int operator() (const uchar * ptr, int len, int & x0, int & x1, int & x2, int & x3)
317 x1 = buf[0] + buf[1] + buf[2] + buf[3];
342 int operator() (const ushort * ptr, int len, int & x0, int & x1, int & x2, int64 & x3)
374 x1 = buf[0] + buf[1] + buf[2] + buf[3];
407 WT x0 = 0, x1 = 0, x2 = 0; local
409 x = vop(ptr, size.width, x0, x1, x2, x3);
417 x1 += xp;
426 mom[8] += ((MT)x1) * sy; // m1
    [all...]
shapedescr.cpp 46 static int intersectLines( double x1, double dx1, double y1, double dy1,
54 *t2 = ((x2 - x1) * dy1 - (y2 - y1) * dx1) / d;
63 double x1 = (pt0.x + pt1.x) * 0.5; local
73 if( intersectLines( x1, dx1, y1, dy1, x2, dx2, y2, dy2, &t ) >= 0 )
templmatch.cpp 753 int x1 = std::max(0, x0), y1 = std::max(0, y0); local
756 Mat src0(img0, Range(y1, y2), Range(x1, x2));
758 Mat dst1(dftImg, Rect(x1-x0, y1-y0, x2-x1, y2-y1));
768 src = depth == maxDepth ? dst1 : Mat(y2-y1, x2-x1, depth, &buf[0]);
776 if( x2 - x1 < dsz.width || y2 - y1 < dsz.height )
778 x1-x0, dst.cols-dst1.cols-(x1-x0), borderType);
    [all...]
undistort.cpp 441 double x1 = std::max(std::min(x*k*iR, 1.), -1.); local
446 double fx1 = iR/std::sqrt(1 - x1*x1);
450 return Point2f((float)asin(x1), (float)asin(y1));
  /external/opencv3/modules/ts/src/
ts_perf.cpp 374 int x1 = rng1["x"]; local
379 // it is safe to use x1 and y1 without checks here because we have already
381 double actual_rng1 = getElem(actual, y1, x1, cn1);
384 << argname << " has unexpected value of the ["<< x1 << ":" << y1 << ":" << cn1 <<"] element" << std::endl;
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page.cpp 964 int x0, y0, x1, y1, x2, y2; local
970 x1 = xPos;
978 x1 = xPos + xSize;
986 x1 = xPos + xSize;
994 x1 = xPos;
1002 FXSYS_Div((FX_FLOAT)(x1 - x0), m_PageHeight),
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_pattern.cpp 308 FX_FLOAT x1,
325 x = x1 + FXSYS_MulDiv(x2 - x1, y - y1, y2 - y1);
545 float x1,
551 x.FromPoints(x0, x1, x2, x3);
607 int x1 = c0 + (c3 - c0) * x / x_scale; local
609 return x1 + (x2 - x1) * y / y_scale;
    [all...]
  /external/pdfium/third_party/freetype/src/cff/
cf2intrp.c 719 CF2_Fixed x1 = cf2_stack_getReal( opStack, index + 0 ) + curX; local
721 CF2_Fixed x2 = cf2_stack_getReal( opStack, index + 2 ) + x1;
727 cf2_glyphpath_curveTo( &glyphPath, x1, y1, x2, y2, x3, y3 );
1280 CF2_Fixed x1 = cf2_stack_getReal( opStack, index + 0 ) + curX; local
1315 CF2_Fixed x1, y1, x2, y2, x3, y3; local
1360 CF2_Fixed x1, y1, x2, y2, x3, y3; local
1409 CF2_Fixed x1, x2, x3, y1, y2, y3; local
    [all...]
  /external/skia/tests/
MathTest.cpp 43 // float big = sk_fsel(x, 0x1.0p+23, -0x1.0p+23);
265 float x1 = SkIntToFloatCast(ival); local
266 REPORTER_ASSERT(reporter, x0 == x1);
  /external/webrtc/webrtc/base/
virtualsocketserver.cc 1038 double x1,
1044 double x = x1 + (x2 - x1) * i / (samples - 1);
1064 double x1 = (iter - 1)->first; local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
expand.cc 681 unvoiced_scale += ((unvoiced_scale & 0x1) ^ 0x1);
696 int16_t x1, x2, x3; local
698 x1 = static_cast<int16_t>(corr_coefficient);
699 x2 = (x1 * x1) >> 14; // Shift 14 to keep result in Q14.
700 x3 = (x1 * x2) >> 14;
703 temp_sum += kCoefficients[1] * x1;
    [all...]
  /frameworks/base/core/java/android/view/
GestureDetector.java 537 final float x1 = mVelocityTracker.getXVelocity(id1); local
543 final float x = x1 * mVelocityTracker.getXVelocity(id2);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/x86/
vp9_loopfilter_intrin_sse2.c 86 const __m128i t1 = _mm_set1_epi16(0x1);
460 const __m128i t1 = _mm_set1_epi8(0x1);
1469 __m128i x0, x1, x2, x3, x4, x5, x6, x7; local
1537 __m128i x0, x1, x2, x3, x4, x5, x6, x7; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMathUtils.java 129 float x1 = line[0]; local
133 float xdelt = x2 - x1;
137 float u = ((point[0] - x1) * xdelt + (point[1] - y1) * ydelt)
140 (x1 + u * (x2 - x1)), (y1 + u * (y2 - y1))
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Blend.cpp 144 double z, x0, y0, x1, y1, x2, y2, x3, y3; local
170 FrameToMosaic(mb->trs, 0.0, mb->height-1.0, x1, y1);
174 if(x0 < xLeftCorners[0] || x1 < xLeftCorners[1]) // If either of the left corners is lower
177 xLeftCorners[1] = x1;
200 FindQuadCentroid(x0, y0, x1, y1, x2, y2, x3, y3, csite->getVCenter().x, csite->getVCenter().y);
981 int x1 = (xx >= 0.0) ? (int) xx : (int) floor(xx); local
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state_utils.cpp 305 const int x1 = (*sampledInputXs)[index0]; local
309 return GeometryUtils::getAngle(x1, y1, x2, y2);
    [all...]
  /prebuilts/devtools/adt/lib/
sdktestutils.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
plexus-sec-dispatcher-1.3.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/
decentxml-1.3.jar 

Completed in 1915 milliseconds

<<31323334353637383940>>