Home
last modified time | relevance | path

Searched refs:dst_x (Results 1 – 7 of 7) sorted by relevance

/external/libyuv/files/source/
Dplanar_functions.cc978 int dst_x, int dst_y, in ARGBRect() argument
983 dst_x < 0 || dst_y < 0) { in ARGBRect()
986 uint8* dst = dst_argb + dst_y * dst_stride_argb + dst_x * 4; in ARGBRect()
1119 int dst_x, int dst_y, in ARGBGray() argument
1121 if (!dst_argb || width <= 0 || height <= 0 || dst_x < 0 || dst_y < 0) { in ARGBGray()
1132 uint8* dst = dst_argb + dst_y * dst_stride_argb + dst_x * 4; in ARGBGray()
1143 int dst_x, int dst_y, int width, int height) { in ARGBSepia() argument
1144 if (!dst_argb || width <= 0 || height <= 0 || dst_x < 0 || dst_y < 0) { in ARGBSepia()
1154 uint8* dst = dst_argb + dst_y * dst_stride_argb + dst_x * 4; in ARGBSepia()
1166 int dst_x, int dst_y, int width, int height) { in ARGBColorMatrix() argument
[all …]
/external/qemu/
Dconsole.h177 int dst_x, int dst_y, int w, int h);
342 int dst_x, int dst_y, int w, int h) { in dpy_copy() argument
346 dcl->dpy_copy(s, src_x, src_y, dst_x, dst_y, w, h); in dpy_copy()
348 dcl->dpy_update(s, dst_x, dst_y, w, h); in dpy_copy()
453 int dst_x, int dst_y, int w, int h);
Dvnc.c655 static void vnc_copy(VncState *vs, int src_x, int src_y, int dst_x, int dst_y, int w, int h) in vnc_copy() argument
660 vnc_framebuffer_update(vs, dst_x, dst_y, w, h, VNC_ENCODING_COPYRECT); in vnc_copy()
666 static void vnc_dpy_copy(DisplayState *ds, int src_x, int src_y, int dst_x, int dst_y, int w, int h) in vnc_dpy_copy() argument
682 vnc_copy(vs, src_x, src_y, dst_x, dst_y, w, h); in vnc_dpy_copy()
684 vnc_update(vs, dst_x, dst_y, w, h); in vnc_dpy_copy()
Dvnc-android.c661 static void vnc_copy(VncState *vs, int src_x, int src_y, int dst_x, int dst_y, int w, int h) in vnc_copy() argument
666 vnc_framebuffer_update(vs, dst_x, dst_y, w, h, VNC_ENCODING_COPYRECT); in vnc_copy()
672 static void vnc_dpy_copy(DisplayState *ds, int src_x, int src_y, int dst_x, int dst_y, int w, int h) in vnc_dpy_copy() argument
688 vnc_copy(vs, src_x, src_y, dst_x, dst_y, w, h); in vnc_dpy_copy()
690 vnc_update(vs, dst_x, dst_y, w, h); in vnc_dpy_copy()
Dconsole.c1656 int dst_x, int dst_y, int w, int h) in qemu_console_copy() argument
1659 dpy_copy(ds, src_x, src_y, dst_x, dst_y, w, h); in qemu_console_copy()
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
Dbilin_scaler.c1329 unsigned int dst_x; in bilinear_scale_line_w8() local
1330 for( dst_x=0; dst_x<dst_width; dst_x+=8) { in bilinear_scale_line_w8()
1333 vector unsigned int vui_dst_x_tmp = spu_splats( dst_x ); in bilinear_scale_line_w8()
1612 unsigned int dst_x; in bilinear_scale_line_w16() local
1613 for( dst_x=0; dst_x<dst_width; dst_x+=16) { in bilinear_scale_line_w16()
1616 vector unsigned int vui_dst_x_tmp = spu_splats( dst_x ); in bilinear_scale_line_w16()
/external/chromium/chrome/browser/ui/views/tabs/
Dbase_tab.cc86 int dst_x = bounds.x() - (icon_width - bounds.width()) / 2; in DrawIconCenter() local
90 canvas->ClipRectInt(dst_x, dst_y, icon_width, icon_height); in DrawIconCenter()
93 dst_x, dst_y, icon_width, icon_height, in DrawIconCenter()