HomeSort by: relevance | last modified time | path
    Searched defs:hdisplay (Results 1 - 14 of 14) sorted by relevancy

  /src/sys/dev/videomode/
videomode.h 35 int hdisplay; member in struct:videomode
  /src/sys/external/bsd/drm2/dist/drm/
drm_crtc.c 504 int hdisplay, vdisplay; local in function:drm_crtc_check_viewport
506 drm_mode_get_hv_timing(mode, &hdisplay, &vdisplay);
510 swap(hdisplay, vdisplay);
513 hdisplay << 16, vdisplay << 16,
drm_atomic.c 1370 int hdisplay, vdisplay; local in function:__drm_atomic_helper_set_config
1413 drm_mode_get_hv_timing(set->mode, &hdisplay, &vdisplay);
1418 primary_state->crtc_w = hdisplay;
1424 primary_state->src_h = hdisplay << 16;
1426 primary_state->src_w = hdisplay << 16;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/
nouveau_dispnv04_tvnv17.c 212 for (tv_mode = nv17_tv_modes; tv_mode->hdisplay; tv_mode++) {
224 if (mode->hdisplay == tv_norm->tv_enc_mode.hdisplay &&
242 int hdisplay; member in struct:nv17_tv_get_hd_modes::__anon97b413c70108
258 if (modes[i].hdisplay > output_mode->hdisplay ||
262 if (modes[i].hdisplay == output_mode->hdisplay &&
268 mode = drm_cvt_mode(encoder->dev, modes[i].hdisplay,
275 if (output_mode->hdisplay <= 72
    [all...]
tvnv17.h 100 int hdisplay; member in struct:nv17_tv_norm_params::__anonef7288b3020a::__anonef7288b30308
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_connector.c 81 if (mode->hdisplay < high_w)
84 if (mode->hdisplay == high_w && mode->vdisplay < high_h)
87 if (mode->hdisplay == high_w && mode->vdisplay == high_h &&
91 high_w = mode->hdisplay;
814 int hdisplay; member in struct:moderec
848 while (mode->hdisplay) {
849 if (mode->hdisplay <= native->hdisplay &&
851 (mode->hdisplay != native->hdisplay ||
    [all...]
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_modes.h 139 .hdisplay = (hd), .hsync_start = (hss), .hsync_end = (hse), \
156 .hdisplay = (hd), .hsync_start = (hd), .hsync_end = (hd), \
177 * @hdisplay: horizontal display size
284 int hdisplay; member in struct:drm_display_mode
445 (m)->hdisplay, (m)->hsync_start, (m)->hsync_end, (m)->htotal, \
484 int hdisplay, int vdisplay, int vrefresh,
488 int hdisplay, int vdisplay, int vrefresh,
491 int hdisplay, int vdisplay,
509 int *hdisplay, int *vdisplay);
  /src/sys/external/bsd/drm/dist/shared-core/
drm_mode.h 87 uint16_t hdisplay, hsync_start, hsync_end, htotal, hskew; member in struct:drm_mode_modeinfo
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_stdu.c 186 cmd->body.width = mode->hdisplay;
199 stdu->display_width = mode->hdisplay;
1047 uint32_t hdisplay = new_state->crtc_w, vdisplay = new_state->crtc_h; local in function:vmw_stdu_primary_plane_prepare_fb
1063 if (new_vfbs && new_vfbs->surface->base_size.width == hdisplay &&
1075 display_base_size.width = hdisplay;
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_tv.c 1002 mode->hdisplay =
1004 mode->hsync_start = mode->hdisplay +
1048 mode->hdisplay, mode->vdisplay,
1054 int hdisplay, int left_margin,
1057 int hsync_start = mode->hsync_start - mode->hdisplay + right_margin;
1058 int hsync_end = mode->hsync_end - mode->hdisplay + right_margin;
1059 int new_htotal = mode->htotal * hdisplay /
1060 (mode->hdisplay - left_margin - right_margin);
1064 mode->hdisplay = hdisplay;
1097 int hdisplay = adjusted_mode->crtc_hdisplay; local in function:intel_tv_get_config
1197 int hdisplay = adjusted_mode->crtc_hdisplay; local in function:intel_tv_compute_config
    [all...]
intel_display_types.h 1212 u16 hdisplay, vdisplay; member in struct:intel_dp_compliance_data
  /src/sys/dev/pci/
machfb.c 519 default_mode.hdisplay = width;
625 ((m)->hdisplay <= 1280))
642 "(%d x %d)\n", m->hdisplay, m->vdisplay);
676 default_mode.hdisplay = width;
693 if ((width == sc->sc_my_mode->hdisplay) &&
698 sc->virt_x = sc->sc_my_mode->hdisplay;
714 sc->sc_my_mode->hdisplay, sc->sc_my_mode->vdisplay,
829 ri->ri_width = sc->sc_my_mode->hdisplay;
846 sc->sc_my_mode->hdisplay / ri->ri_font->fontwidth);
932 int htotal, hdisplay, hsync_start, hsync_end local in function:mach64_get_mode
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/
intel_pm.c 2244 int hdisplay = crtc->config->pipe_src_w; local in function:i965_update_wm
2249 hdisplay, cpp, sr_latency_ns / 100);
2404 int hdisplay = enabled->config->pipe_src_w; local in function:i9xx_update_wm
2413 entries = intel_wm_method2(clock, htotal, hdisplay, cpp,
3970 int hdisplay, vdisplay; local in function:skl_ddb_get_pipe_allocation_limits
3975 drm_mode_get_hv_timing(adjusted_mode, &hdisplay, &vdisplay);
3976 total_width += hdisplay;
3979 width_before_pipe += hdisplay;
3981 pipe_width = hdisplay;
6272 * surface width = hdisplay for normal plane and 64 for curso
    [all...]
  /src/sys/external/bsd/drm2/dist/include/uapi/drm/
drm_mode.h 225 __u16 hdisplay; member in struct:drm_mode_modeinfo

Completed in 26 milliseconds