Home
last modified time | relevance | path

Searched refs:rowstride (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/video/fbdev/core/
H A Dsvgalib.c223 int rowstride = colstride * (info->var.xres_virtual / 8); in svga_tilecopy() local
229 src = fb + area->sx * colstride + area->sy * rowstride; in svga_tilecopy()
230 dst = fb + area->dx * colstride + area->dy * rowstride; in svga_tilecopy()
233 + (area->sy + area->height - 1) * rowstride; in svga_tilecopy()
235 + (area->dy + area->height - 1) * rowstride; in svga_tilecopy()
238 rowstride = -rowstride; in svga_tilecopy()
250 src += rowstride; in svga_tilecopy()
251 dst += rowstride; in svga_tilecopy()
260 int rowstride = colstride * (info->var.xres_virtual / 8); in svga_tilefill() local
263 fb += rect->sx * colstride + rect->sy * rowstride; in svga_tilefill()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-navigation/orrery/orrery/
H A Duse.GdkPixbuf.patch25 + int rowstride = gdk_pixbuf_get_rowstride (starDrawingBuf);
34 + p = pixels + darkGreyPoints[pointNum].y * rowstride + darkGreyPoints[pointNum].x * n_channels;
42 + p = pixels + greyPoints[pointNum].y * rowstride + greyPoints[pointNum].x * n_channels;
50 + p = pixels + whitePoints[pointNum].y * rowstride + whitePoints[pointNum].x * n_channels;
/OK3568_Linux_fs/yocto/poky/meta/recipes-multimedia/ffmpeg/ffmpeg/
H A D0001-avcodec-rpzaenc-stop-accessing-out-of-bounds-frame.patch54 dest_pixels += bi->rowstride;
55 src_pixels += bi->rowstride;
76 row_ptr += bi.rowstride;
/OK3568_Linux_fs/buildroot/package/pixman/
H A D0005-pixman_image_composite32-Support-rockchip-RGA-2D-acc.patch116 + if (image->bits.rowstride <= 0)
251 + /* rowstride = rowstride_bytes / (int) sizeof (uint32_t) */
252 + src_stride = src->bits.rowstride * (int) sizeof (uint32_t);
256 + src_stride = src->bits.rowstride;
312 + dest->bits.rowstride, dest->bits.height,
H A D0002-Support-PIXMAN_nv12-format.patch28 + int stride = __bits_image->rowstride; \
/OK3568_Linux_fs/kernel/drivers/gpu/drm/vmwgfx/device_include/
H A Dsvga3d_surfacedefs.h1328 const u32 rowstride = __KERNEL_DIV_ROUND_UP(width, bw) * in svga3dsurface_get_pixel_offset() local
1330 const u32 imgstride = __KERNEL_DIV_ROUND_UP(height, bh) * rowstride; in svga3dsurface_get_pixel_offset()
1332 y / bh * rowstride + in svga3dsurface_get_pixel_offset()