Searched defs:y_step (Results 1 - 6 of 6) sorted by relevance
/external/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_format.c | 544 unsigned x_step, y_step; local 575 y_step = MAX2(dst_format_desc->block.height, src_format_desc->block.height); 577 assert(y_step % dst_format_desc->block.height == 0); 578 assert(y_step % src_format_desc->block.height == 0); 580 dst_step = y_step / dst_format_desc->block.height * dst_stride; 581 src_step = y_step / src_format_desc->block.height * src_stride; 594 assert(y_step == 1); 638 tmp_row = MALLOC(y_step * tmp_stride); 642 while (height >= y_step) { 643 src_format_desc->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, y_step); [all...] |
/external/opencv/cxcore/src/ |
H A D | cxdrawing.cpp | 303 int x_step, y_step; local 347 y_step = (int) (((int64) dy << XY_SHIFT) / (ax | 1)); 351 pt1.y += (int) ((((int64) y_step) * j) >> XY_SHIFT) + (XY_ONE >> 1); 352 slope = (y_step >> (XY_SHIFT - 5)) & 0x3f; 353 slope ^= (y_step < 0 ? 0x3f : 0); 371 y_step = XY_ONE; 442 pt1.y += y_step; 517 pt1.y += y_step; 567 int x_step, y_step; local 610 y_step [all...] |
/external/opencv/otherlibs/highgui/ |
H A D | grfmt_jpeg.cpp | 1644 int y_step = y_scale * 8; local 1741 for( y = 0; y < height; y += y_step, data += y_step*step ) 1746 int y_limit = y_step;
|
/external/pdfium/core/src/fxge/dib/ |
H A D | fx_dib_composite.cpp | 4502 int y_step = dest_pitch; local 4505 y_step = -y_step; 4514 dest_scan += y_step; 4546 dest_scan += y_step;
|
/external/webp/src/enc/ |
H A D | picture_csp.c | 44 int x_step, int y_step) { 51 alpha += y_step; 43 CheckNonOpaque(const uint8_t* alpha, int width, int height, int x_step, int y_step) argument
|
/external/libvncserver/x11vnc/ |
H A D | userinput.c | 884 int y_start, y_stop, y_step; local 896 y_step = lw*pixelsize; 900 y_step = max*pixelsize; 915 src = save[i]->data + (yu-y_start)*y_step; 953 int y_start, y_stop, y_step; local 971 y_step = lw*pixelsize; 990 y_step = max*pixelsize; 1022 dst = save[i]->data + (yu-y_start)*y_step;
|
Completed in 442 milliseconds