HomeSort by: relevance | last modified time | path
    Searched refs:old_fb (Results 1 - 20 of 20) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/include/drm/
drm_crtc_helper.h 54 struct drm_framebuffer *old_fb);
drm_modeset_helper_vtables.h 210 struct drm_framebuffer *old_fb);
253 struct drm_framebuffer *old_fb);
drm_plane.h 646 * @old_fb:
651 struct drm_framebuffer *old_fb; member in struct:drm_plane
  /src/sys/external/bsd/drm2/dist/drm/
drm_plane.c 435 plane->old_fb = plane->fb;
439 plane->old_fb = NULL;
443 drm_framebuffer_put(plane->old_fb);
444 plane->old_fb = NULL;
694 plane->old_fb = plane->fb;
700 plane->old_fb = NULL;
711 plane->old_fb = plane->fb;
720 plane->old_fb = NULL;
724 if (plane->old_fb)
725 drm_framebuffer_put(plane->old_fb);
    [all...]
drm_crtc.c 442 plane->old_fb = plane->fb;
460 if (plane->old_fb)
461 drm_framebuffer_put(plane->old_fb);
462 plane->old_fb = NULL;
578 struct drm_framebuffer *old_fb; local in function:drm_mode_setcrtc
581 old_fb = plane->state->fb;
583 old_fb = plane->fb;
585 if (!old_fb) {
591 fb = old_fb;
drm_crtc_helper.c 267 * @old_fb: old framebuffer, for cleanup
284 struct drm_framebuffer *old_fb)
378 ret = !crtc_funcs->mode_set(crtc, mode, adjusted_mode, x, y, old_fb);
drm_atomic_helper.c 1754 struct drm_framebuffer *old_fb = plane->state->fb; local in function:drm_atomic_helper_async_commit
1774 WARN_ON_ONCE(plane_state->fb != old_fb);
drm_atomic.c 484 WARN_ON(plane->old_fb);
  /src/sys/arch/arm/ti/
ti_lcdc.c 156 struct drm_framebuffer *old_fb)
229 tilcdc_mode_do_set_base(crtc, old_fb, x, y, 0);
236 struct drm_framebuffer *old_fb)
238 tilcdc_mode_do_set_base(crtc, old_fb, x, y, 0);
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_legacy_crtc.c 366 struct drm_framebuffer *old_fb)
368 return radeon_crtc_do_set_base(crtc, old_fb, x, y, 0);
1054 int x, int y, struct drm_framebuffer *old_fb)
1059 radeon_crtc_set_base(crtc, x, y, old_fb);
radeon_mode.h 848 struct drm_framebuffer *old_fb);
857 struct drm_framebuffer *old_fb);
861 struct drm_framebuffer *old_fb);
radeon_atombios_crtc.c 1684 struct drm_framebuffer *old_fb)
1690 return dce4_crtc_do_set_base(crtc, old_fb, x, y, 0);
1692 return avivo_crtc_do_set_base(crtc, old_fb, x, y, 0);
1694 return radeon_crtc_do_set_base(crtc, old_fb, x, y, 0);
2064 int x, int y, struct drm_framebuffer *old_fb)
2095 atombios_crtc_set_base(crtc, x, y, old_fb);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/
nouveau_dispnv04_crtc.c 54 struct drm_framebuffer *old_fb);
610 nv_crtc_swap_fbs(struct drm_crtc *crtc, struct drm_framebuffer *old_fb)
638 int x, int y, struct drm_framebuffer *old_fb)
648 ret = nv_crtc_swap_fbs(crtc, old_fb);
903 struct drm_framebuffer *old_fb)
905 int ret = nv_crtc_swap_fbs(crtc, old_fb);
908 return nv04_crtc_do_mode_set_base(crtc, old_fb, x, y, false);
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_dce_virtual.c 186 int x, int y, struct drm_framebuffer *old_fb)
205 struct drm_framebuffer *old_fb)
amdgpu_dce_v10_0.c 2617 int x, int y, struct drm_framebuffer *old_fb)
2626 dce_v10_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
2672 struct drm_framebuffer *old_fb)
2674 return dce_v10_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
amdgpu_dce_v11_0.c 2706 int x, int y, struct drm_framebuffer *old_fb)
2734 dce_v11_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
2780 struct drm_framebuffer *old_fb)
2782 return dce_v11_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
amdgpu_dce_v6_0.c 2506 int x, int y, struct drm_framebuffer *old_fb)
2515 dce_v6_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
2562 struct drm_framebuffer *old_fb)
2564 return dce_v6_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
amdgpu_dce_v8_0.c 2525 int x, int y, struct drm_framebuffer *old_fb)
2534 dce_v8_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
2580 struct drm_framebuffer *old_fb)
2582 return dce_v8_0_crtc_do_set_base(crtc, old_fb, x, y, 0);
  /src/sys/arch/arm/nvidia/
tegra_drm_mode.c 572 struct drm_framebuffer *old_fb)
612 tegra_crtc_do_set_base(crtc, old_fb, x, y, 0);
693 struct drm_framebuffer *old_fb)
697 tegra_crtc_do_set_base(crtc, old_fb, x, y, 0);
  /src/sys/arch/arm/sunxi/
sunxi_mixer.c 492 struct drm_framebuffer *old_fb)
536 sunxi_mixer_mode_do_set_base(crtc, old_fb, x, y, 0);
543 struct drm_framebuffer *old_fb)
548 sunxi_mixer_mode_do_set_base(crtc, old_fb, x, y, 0);

Completed in 38 milliseconds