Home
last modified time | relevance | path

Searched refs:x_step (Results 1 – 8 of 8) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/util/
Du_format.c544 unsigned x_step, y_step; in util_format_translate() local
576 x_step = MAX2(dst_format_desc->block.width, src_format_desc->block.width); in util_format_translate()
593 assert(x_step == 1); in util_format_translate()
637 tmp_stride = MAX2(width, x_step) * 4 * sizeof *tmp_row; in util_format_translate()
662 tmp_stride = MAX2(width, x_step) * 4 * sizeof *tmp_row; in util_format_translate()
/external/opencv/cxcore/src/
Dcxdrawing.cpp303 int x_step, y_step; in icvLineAA() local
346 x_step = XY_ONE; in icvLineAA()
370 x_step = (int) (((int64) dx << XY_SHIFT) / (ay | 1)); in icvLineAA()
375 pt1.x += (int) ((((int64) x_step) * j) >> XY_SHIFT) + (XY_ONE >> 1); in icvLineAA()
376 slope = (x_step >> (XY_SHIFT - 5)) & 0x3f; in icvLineAA()
377 slope ^= (x_step < 0 ? 0x3f : 0); in icvLineAA()
474 pt1.x += x_step; in icvLineAA()
549 pt1.x += x_step; in icvLineAA()
567 int x_step, y_step; in icvLine2() local
609 x_step = XY_ONE; in icvLine2()
[all …]
/external/opencv3/modules/imgproc/src/
Ddrawing.cpp290 int x_step, y_step; in LineAA() local
337 x_step = XY_ONE; in LineAA()
361 x_step = (int) (((int64) dx << XY_SHIFT) / (ay | 1)); in LineAA()
366 pt1.x += (int) ((((int64) x_step) * j) >> XY_SHIFT) + (XY_ONE >> 1); in LineAA()
367 slope = (x_step >> (XY_SHIFT - 5)) & 0x3f; in LineAA()
368 slope ^= (x_step < 0 ? 0x3f : 0); in LineAA()
465 pt1.x += x_step; in LineAA()
540 pt1.x += x_step; in LineAA()
623 pt1.x += x_step; in LineAA()
641 int x_step, y_step; in Line2() local
[all …]
/external/webp/src/enc/
Dpicture_csp.c40 int x_step, int y_step) { in CheckNonOpaque() argument
44 for (x = 0; x < width * x_step; x += x_step) { in CheckNonOpaque()
/external/opencv3/3rdparty/libwebp/enc/
Dpicture.c520 int x_step, int y_step) { in CheckNonOpaque() argument
524 for (x = 0; x < width * x_step; x += x_step) { in CheckNonOpaque()
/external/opencv3/modules/videoio/src/
Dcap_mjpeg_encoder.cpp1145 int x_step = x_scale * 8; in writeFrameData() local
1266 for( x = 0; x < width; x += x_step ) in writeFrameData()
1268 int x_limit = x_step; in writeFrameData()
/external/opencv/otherlibs/highgui/
Dgrfmt_jpeg.cpp1643 int x_step = x_scale * 8; in WriteImage() local
1743 for( x = 0; x < width; x += x_step ) in WriteImage()
1745 int x_limit = x_step; in WriteImage()
/external/opencv3/modules/core/test/
Dtest_math.cpp1397 int x_step = x ? x->step/sizeof(double) : 0; in cvTsLU() local
1467 t -= a1[k]*x0[k*x_step + j]; in cvTsLU()
1468 x0[i*x_step + j] = t/a1[i]; in cvTsLU()