HomeSort by relevance Sort by last modified time
    Searched refs:XY_ONE (Results 1 - 2 of 2) sorted by null

  /external/opencv/cxcore/src/
cxdrawing.cpp 44 #define XY_ONE (1 << XY_SHIFT)
315 pt1.x -= XY_ONE*2;
316 pt1.y -= XY_ONE*2;
317 pt2.x -= XY_ONE*2;
318 pt2.y -= XY_ONE*2;
346 x_step = XY_ONE;
348 pt2.x += XY_ONE;
350 j = -(pt1.x & (XY_ONE - 1));
351 pt1.y += (int) ((((int64) y_step) * j) >> XY_SHIFT) + (XY_ONE >> 1);
371 y_step = XY_ONE;
    [all...]
  /external/opencv3/modules/imgproc/src/
drawing.cpp 46 enum { XY_SHIFT = 16, XY_ONE = 1 << XY_SHIFT, DRAWING_STORAGE_BLOCK = (1<<12) - 256 };
306 pt1.x -= XY_ONE*2;
307 pt1.y -= XY_ONE*2;
308 pt2.x -= XY_ONE*2;
309 pt2.y -= XY_ONE*2;
337 x_step = XY_ONE;
339 pt2.x += XY_ONE;
341 j = -(pt1.x & (XY_ONE - 1));
342 pt1.y += (int) ((((int64) y_step) * j) >> XY_SHIFT) + (XY_ONE >> 1);
362 y_step = XY_ONE;
    [all...]

Completed in 74 milliseconds