Searched refs:src_x (Results 1 - 6 of 6) sorted by relevance

/freebsd-12-stable/sys/dev/vt/hw/vga/
H A Dvt_vga.c396 unsigned int src_x, unsigned int x_count, unsigned int dst_x,
401 n = src_x / 8;
413 if (n == (src_x + x_count - 1) / 8) {
416 if (dst_x >= src_x)
417 *pattern >>= (dst_x - src_x % 8);
419 *pattern <<= (src_x % 8 - dst_x);
422 if (dst_x >= src_x % 8) {
424 src[n] << (8 - dst_x - src_x % 8) |
425 src[n + 1] >> (dst_x - src_x % 8);
428 src[n] << (src_x
395 vga_compute_shifted_pattern(const uint8_t *src, unsigned int bytes, unsigned int src_x, unsigned int x_count, unsigned int dst_x, uint8_t *pattern, uint8_t *mask) argument
435 vga_copy_bitmap_portion(uint8_t *pattern_2colors, uint8_t *pattern_ncolors, const uint8_t *src, const uint8_t *src_mask, unsigned int src_width, unsigned int src_x, unsigned int dst_x, unsigned int x_count, unsigned int src_y, unsigned int dst_y, unsigned int y_count, term_color_t fg, term_color_t bg, int overwrite) argument
615 unsigned int i, col, row, src_x, x_count; local
960 unsigned int x1, y1, x2, y2, i, j, src_x, dst_x, x_count; local
[all...]
/freebsd-12-stable/sys/arm/nvidia/drm2/
H A Dtegra_dc.c93 u_int src_x; member in struct:dc_window
367 win->src_x, win->src_y, win->src_w, win->src_h);
387 h_offset = win->src_x * bpp;;
407 h_init_dda = dc_scaling_init(win->src_x);
413 v_init_dda = dc_scaling_init(win->src_x);
510 uint32_t src_x, uint32_t src_y, uint32_t src_w, uint32_t src_h)
525 win.src_x = src_x >> 16;
622 win.src_x = x;
696 win.src_x
507 dc_plane_update(struct drm_plane *drm_plane, struct drm_crtc *drm_crtc, struct drm_framebuffer *drm_fb, int crtc_x, int crtc_y, unsigned int crtc_w, unsigned int crtc_h, uint32_t src_x, uint32_t src_y, uint32_t src_w, uint32_t src_h) argument
[all...]
/freebsd-12-stable/sys/dev/drm2/
H A Ddrm_mode.h142 __u32 src_x, src_y; member in struct:drm_mode_set_plane
H A Ddrm_crtc.c1822 plane_req->src_x > fb_width - plane_req->src_w ||
1831 plane_req->src_x >> 16,
1832 ((plane_req->src_x & 0xffff) * 15625) >> 10,
1854 plane_req->src_x, plane_req->src_y,
H A Ddrm_crtc.h625 uint32_t src_x, uint32_t src_y,
/freebsd-12-stable/sys/dev/drm2/i915/
H A Dintel_sprite.c418 uint32_t src_x, uint32_t src_y,
431 int x = src_x >> 16, y = src_y >> 16;
415 intel_update_plane(struct drm_plane *plane, struct drm_crtc *crtc, struct drm_framebuffer *fb, int crtc_x, int crtc_y, unsigned int crtc_w, unsigned int crtc_h, uint32_t src_x, uint32_t src_y, uint32_t src_w, uint32_t src_h) argument

Completed in 201 milliseconds