Home
last modified time | relevance | path

Searched refs:y_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
575 y_step = MAX2(dst_format_desc->block.height, src_format_desc->block.height); in util_format_translate()
577 assert(y_step % dst_format_desc->block.height == 0); in util_format_translate()
578 assert(y_step % src_format_desc->block.height == 0); in util_format_translate()
580 dst_step = y_step / dst_format_desc->block.height * dst_stride; in util_format_translate()
581 src_step = y_step / src_format_desc->block.height * src_stride; in util_format_translate()
594 assert(y_step == 1); in util_format_translate()
638 tmp_row = MALLOC(y_step * tmp_stride); in util_format_translate()
642 while (height >= y_step) { in util_format_translate()
643 … src_format_desc->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, y_step); in util_format_translate()
[all …]
/external/opencv/cxcore/src/
Dcxdrawing.cpp303 int x_step, y_step; in icvLineAA() local
347 y_step = (int) (((int64) dy << XY_SHIFT) / (ax | 1)); in icvLineAA()
351 pt1.y += (int) ((((int64) y_step) * j) >> XY_SHIFT) + (XY_ONE >> 1); in icvLineAA()
352 slope = (y_step >> (XY_SHIFT - 5)) & 0x3f; in icvLineAA()
353 slope ^= (y_step < 0 ? 0x3f : 0); in icvLineAA()
371 y_step = XY_ONE; in icvLineAA()
442 pt1.y += y_step; in icvLineAA()
517 pt1.y += y_step; in icvLineAA()
567 int x_step, y_step; in icvLine2() local
610 y_step = (int) (((int64) dy << XY_SHIFT) / (ax | 1)); in icvLine2()
[all …]
/external/opencv3/modules/imgproc/src/
Ddrawing.cpp290 int x_step, y_step; in LineAA() local
338 y_step = (int) (((int64) dy << XY_SHIFT) / (ax | 1)); in LineAA()
342 pt1.y += (int) ((((int64) y_step) * j) >> XY_SHIFT) + (XY_ONE >> 1); in LineAA()
343 slope = (y_step >> (XY_SHIFT - 5)) & 0x3f; in LineAA()
344 slope ^= (y_step < 0 ? 0x3f : 0); in LineAA()
362 y_step = XY_ONE; in LineAA()
433 pt1.y += y_step; in LineAA()
508 pt1.y += y_step; in LineAA()
591 pt1.y += y_step; in LineAA()
641 int x_step, y_step; in Line2() local
[all …]
/external/opencv/otherlibs/highgui/
Dgrfmt_jpeg.cpp1644 int y_step = y_scale * 8; in WriteImage() local
1741 for( y = 0; y < height; y += y_step, data += y_step*step ) in WriteImage()
1746 int y_limit = y_step; in WriteImage()
/external/opencv3/modules/videoio/src/
Dcap_mjpeg_encoder.cpp1146 int y_step = y_scale * 8; in writeFrameData() local
1264 for( y = 0; y < height; y += y_step, data += y_step*step ) in writeFrameData()
1269 int y_limit = y_step; in writeFrameData()
/external/webp/src/enc/
Dpicture_csp.c40 int x_step, int y_step) { in CheckNonOpaque() argument
47 alpha += y_step; in CheckNonOpaque()
/external/opencv3/3rdparty/libwebp/enc/
Dpicture.c520 int x_step, int y_step) { in CheckNonOpaque() argument
527 alpha += y_step; in CheckNonOpaque()
/external/pdfium/core/src/fxge/dib/
Dfx_dib_composite.cpp5136 int y_step = dest_pitch; in ComposeScanlineV() local
5139 y_step = -y_step; in ComposeScanlineV()
5148 dest_scan += y_step; in ComposeScanlineV()
5183 dest_scan += y_step; in ComposeScanlineV()