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

<<51525354555657585960>>

  /external/opencv/cxcore/src/
cxdrawing.cpp 89 int x1, y1, x2, y2; local
99 x1 = pt1->x; y1 = pt1->y; x2 = pt2->x; y2 = pt2->y;
100 c1 = (x1 < 0) + (x1 > right) * 2 + (y1 < 0) * 4 + (y1 > bottom) * 8;
110 x1 += (int) (((int64) (a - y1)) * (x2 - x1) / (y2 - y1));
112 c1 = (x1 < 0) + (x1 > right) * 2;
117 x2 += (int) (((int64) (a - y2)) * (x2 - x1) / (y2 - y1));
126 y1 += (int) (((int64) (a - x1)) * (y2 - y1) / (x2 - x1))
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.cpp 665 int x0 = src[5], x1 = src[3]; local
668 int x4 = x0 + x1; x0 -= x1;
670 x1 = x2 + x3; x2 -= x3;
671 x3 = x1 + x4; x1 -= x4;
676 x1 = descale( x1*C1_414, fixb);
679 x1 -= x0;
680 x2 += x1;
717 int x0 = work[8*5], x1 = work[8*3]; local
1112 int i, s = 0, mcu, x1 = 0, y1 = 0; local
1522 int x0 = src[0], x1 = src[7]; local
1569 int x0 = work[8*0], x1 = work[8*7]; local
    [all...]
  /external/opencv3/modules/calib3d/test/
test_fundam.cpp 1031 double x1 = p1.at<Point2d>(i).x; local
1035 double n1 = 1./sqrt(x1*x1 + y1*y1 + 1);
1037 double t0 = fabs(f0[0]*x2*x1 + f0[1]*x2*y1 + f0[2]*x2 +
1038 f0[3]*y2*x1 + f0[4]*y2*y1 + f0[5]*y2 +
1039 f0[6]*x1 + f0[7]*y1 + f0[8])*n1*n2;
1040 double t = fabs(f[0]*x2*x1 + f[1]*x2*y1 + f[2]*x2 +
1041 f[3]*y2*x1 + f[4]*y2*y1 + f[5]*y2 +
1042 f[6]*x1 + f[7]*y1 + f[8])*n1*n2;
1070 double sampson_error(const double* f, double x1, double y1, double x2, double y2)
1367 double x1 = p1.at<Point2d>(i).x; local
    [all...]
  /external/opencv3/modules/features2d/src/kaze/
AKAZEFeatures.cpp 862 int x1 = 0, y1 = 0, sample_step = 0, pattern_size = 0; local
915 x1 = (int)(sample_x - .5);
920 fx = sample_x - x1;
923 res1 = *(evolution[level].Lx.ptr<float>(y1)+x1);
925 res3 = *(evolution[level].Lx.ptr<float>(y2)+x1);
929 res1 = *(evolution[level].Ly.ptr<float>(y1)+x1);
931 res3 = *(evolution[level].Ly.ptr<float>(y2)+x1);
986 int x1 = 0, y1 = 0, x2 = 0, y2 = 0, sample_step = 0, pattern_size = 0; local
1109 int x1 = 0, y1 = 0, sample_step = 0, pattern_size = 0; local
1334 int x1 = fRound(sample_x); local
1436 int x1 = 0, y1 = 0; local
1530 int x1 = 0, y1 = 0; local
    [all...]
  /external/opencv3/modules/imgproc/src/
demosaicing.cpp 1279 __m128i x1 = _mm_loadl_u8_s16(srow, -1 - bstep ); local
    [all...]
drawing.cpp 82 int64 x1, y1, x2, y2; local
89 x1 = pt1.x; y1 = pt1.y; x2 = pt2.x; y2 = pt2.y;
90 c1 = (x1 < 0) + (x1 > right) * 2 + (y1 < 0) * 4 + (y1 > bottom) * 8;
99 x1 += (a - y1) * (x2 - x1) / (y2 - y1);
101 c1 = (x1 < 0) + (x1 > right) * 2;
106 x2 += (a - y2) * (x2 - x1) / (y2 - y1);
115 y1 += (a - x1) * (y2 - y1) / (x2 - x1)
1280 int x1 = e1.x + (e1.y1 - e1.y0) * e1.dx; local
    [all...]
generalized_hough.cpp 255 int x1 = xCell - 1; local
261 x1 = std::max(0, x1);
268 for (int xx = x1; xx <= x2; ++xx)
lsd.cpp 80 inline double distSq(const double x1, const double y1,
83 return (x2 - x1)*(x2 - x1) + (y2 - y1)*(y2 - y1);
86 inline double dist(const double x1, const double y1,
89 return sqrt(distSq(x1, y1, x2, y2));
195 * Where Vec4i/Vec4f is (x1, y1, x2, y2), point 1 is the start, point 2 - end.
275 double x1, y1, x2, y2; // first and second point of the line segment member in struct:cv::LineSegmentDetectorImpl::rect
290 * Where Vec4f is (x1, y1, x2, y2), point 1 is the start, point 2 - end.
509 rec.x1 += 0.5; rec.y1 += 0.5;
515 rec.x1 /= SCALE; rec.y1 /= SCALE
    [all...]
morph.cpp 195 __m128i x0, x1; local
201 x1 = _mm_load_si128((const __m128i*)(sptr + 16));
203 s1 = updateOp(s1, x1);
208 x1 = _mm_load_si128((const __m128i*)(sptr + 16));
210 _mm_storeu_si128((__m128i*)(dst + i + 16), updateOp(s1, x1));
214 x1 = _mm_load_si128((const __m128i*)(sptr + 16));
216 _mm_storeu_si128((__m128i*)(dst + dststep + i + 16), updateOp(s1, x1));
243 __m128i x0, x1; local
249 x1 = _mm_load_si128((const __m128i*)(sptr + 16));
251 s1 = updateOp(s1, x1);
304 __m128 x0, x1, x2, x3; local
366 __m128 x0, x1, x2, x3; local
423 __m128i x0, x1; local
473 __m128 x0, x1, x2, x3; local
    [all...]
  /external/opencv3/modules/imgproc/test/
test_convhull.cpp 721 double x1 = (box_pt[1].x + box_pt[3].x)*0.5; local
724 if( fabs(d0 - d1) + fabs(x0 - x1) + fabs(y0 - y1) > eps*MAX(d0,d1) )
    [all...]
test_imgwarp.cpp 1582 int x1 = x << 1; local
    [all...]
  /external/opencv3/modules/objdetect/test/
test_cascadeandhog.cpp 1247 int x1 = xmap[x]; local
1256 int x1 = xmap[x]*3; local
    [all...]
  /external/opencv3/modules/video/src/
optflowgf.cpp 240 int x1 = cvFloor(fx), y1 = cvFloor(fy); local
241 const float* ptr = R1 + y1*step1 + x1*5;
244 fx -= x1; fy -= y1;
246 if( (unsigned)x1 < (unsigned)(width-1) &&
263 int x1 = cvRound(fx), y1 = cvRound(fy); local
264 const float* ptr = R1 + y1*step1 + x1*5;
267 if( (unsigned)x1 < (unsigned)width &&
475 __m128 x0, x1; local
479 x1 = _mm_add_ps(_mm_loadu_ps(sptr0 + x + 4), _mm_loadu_ps(sptr1 + x + 4));
481 s1 = _mm_add_ps(s1, _mm_mul_ps(x1, g4))
542 __m128 x1 = _mm_add_ps(_mm_loadu_ps(vsum + x - i*5 + 4), local
    [all...]
  /external/opencv3/modules/videoio/src/
cap_mjpeg_encoder.cpp 805 int16x8_t x0 = vld1q_s16(src); int16x8_t x1 = vld1q_s16(src + step*7); local
808 int16x8_t x4 = vaddq_s16(x0, x1); x0 = vsubq_s16(x0, x1);
809 x1 = vaddq_s16(x2, x3); x2 = vsubq_s16(x2, x3);
813 x2 = vaddq_s16(x4, x1); x4 = vsubq_s16(x4, x1);
817 x1 = vaddq_s16(x0, x3); x0 = vsubq_s16(x0, x3);
825 x3 = vaddq_s16(x0, x1); x0 = vsubq_s16(x0, x1);
826 x1 = vaddq_s16(x2, x3); x2 = vsubq_s16(x2, x3)
1013 int x0 = src[0], x1 = src[7]; local
1060 int x0 = work[8*0], x1 = work[8*7]; local
    [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
annotations.jar 
  /external/pdfium/core/src/fxge/win32/
fx_win32_device.cpp 77 #define TT_MAKE_TAG(x1, x2, x3, x4) \
78 (((FX_DWORD)x1 << 24) | ((FX_DWORD)x2 << 16) | ((FX_DWORD)x3 << 8) | \
806 void CGdiDeviceDriver::DrawLine(FX_FLOAT x1,
810 int flag1 = (x1 < 0) | ((x1 > m_Width) << 1) | ((y1 < 0) << 2) |
821 int np = agg::clip_liang_barsky<FX_FLOAT>(x1, y1, x2, y2, rect, x, y);
829 x1 = x[0];
835 MoveToEx(m_hDC, FXSYS_round(x1), FXSYS_round(y1), NULL);
917 FX_FLOAT x1 = pPathData->GetPointX(0), y1 = pPathData->GetPointY(0); local
919 pMatrix->Transform(x1, y1)
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
CollisionSystem.java 704 final float x1 = mStartPoint.x; local
713 final float denom = (y4 - y3) * (x2 - x1) - (x4 - x3) * (y2 - y1);
715 final float uA = ((x4 - x3) * (y1 - y3) - (y4 - y3) * (x1 - x3)) / denom;
716 final float uB = ((x2 - x1) * (y1 - y3) - (y2 - y1) * (x1 - x3)) / denom;
719 final float hitX = x1 + (uA * (x2 - x1));
732 final float x1 = mStartPoint.x; local
    [all...]
  /external/skia/src/core/
SkMatrix.cpp 1294 float x0, y0, x1, y1, x2, y2; local
    [all...]
  /external/svox/pico/lib/
picocep.c 108 #define POW1 (0x1)
196 picoos_int32 xi[5], x1[2], x2[3], xm[3], xn[2]; member in struct:cep_subobj
822 cep->x1[0] = -1;
823 cep->x1[1] = 2;
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
intra_est.cpp 737 int x0, x1, x2, x3, x4, x5; local
1151 x1 = P_B + P_C + 1;
1165 temp1 |= ((x1 >> 1) << 8);
1171 temp2 = ((x0 + x1) >> 2);
1172 temp2 |= (((x1 + x2) >> 2) << 8);
    [all...]
  /frameworks/base/core/jni/android/opengl/
util.cpp 353 float x1 = x0; local
365 else if (x > x1) {
366 x1 = x;
392 float dx = x1 - x0;
410 static inline float dot3(float x0, float y0, float z0, float x1, float y1, float z1) {
411 return x0 * x1 + y0 * y1 + z0 * z1;
    [all...]
  /frameworks/minikin/libs/minikin/
Layout.cpp 72 int x1 = std::min(width, x + bmw); local
78 for (int xx = x0; xx < x1; xx++) {
92 const int kDirection_Mask = 0x1;
    [all...]
  /hardware/intel/img/psb_video/src/
psb_overlay.h 98 #define MIRROR_HORIZONTAL (0x1<<17)
102 #define UV_SWAP (0x1<<14)
106 #define RGB_888 (0x1<<10)
115 #define TVSYNC_FLIP_PARITY (0x1<<9)
116 #define TVSYNC_FLIP_ENABLE (0x1<<7)
117 #define BUF_TYPE (0x1<<5)
119 #define BUF_TYPE_FIELD (0x1<<5)
120 #define TEST_MODE (0x1<<4)
123 #define BUFFER1 (0x1<<2)
124 #define FIELD_SELECT (0x1<<1
185 uint32_t x1; member in struct:__anon31011
    [all...]
  /hardware/qcom/msm8960/kernel-headers/linux/
msm_q6vdec.h 162 u32 x1; member in struct:vdec_cropping_window
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_q6vdec.h 138 u32 x1; member in struct:vdec_cropping_window

Completed in 1252 milliseconds

<<51525354555657585960>>