/src/sys/external/bsd/drm2/dist/drm/ |
drm_modeset_helper.c | 107 * creating the primary plane. However drivers that still call 117 struct drm_plane *primary; local in function:create_primary_plane 120 primary = kzalloc(sizeof(*primary), GFP_KERNEL); 121 if (primary == NULL) { 122 DRM_DEBUG_KMS("Failed to allocate primary plane\n"); 130 primary->format_default = true; 133 ret = drm_universal_plane_init(dev, primary, 0, 140 kfree(primary); 141 primary = NULL 177 struct drm_plane *primary; local in function:drm_crtc_init [all...] |
drm_client_modeset.c | 894 * This function checks if the primary plane in @modeset can hw rotate 905 struct drm_plane *plane = modeset->crtc->primary; 1006 /* disable non-primary: */ 1016 struct drm_plane *primary = mode_set->crtc->primary; local in function:drm_client_modeset_commit_atomic 1023 plane_state = drm_atomic_get_new_plane_state(state, primary);
|
drm_atomic_helper.c | 754 * only be false for primary planes. 825 * (including those that use the primary plane helper's 1153 struct drm_plane *primary = crtc->primary; local in function:drm_atomic_helper_update_legacy_modeset_state 1160 drm_atomic_get_new_plane_state(old_state, primary); 2242 * The primary use of this function is writeback connectors working in oneshot 2851 * drm_atomic_helper_update_plane - Helper for primary plane update using atomic 2855 * @crtc_x: x offset of primary plane on @crtc 2856 * @crtc_y: y offset of primary plane on @crtc 2857 * @crtc_w: width of primary plane rectangle on @crt [all...] |
/src/sys/external/bsd/drm2/dist/drm/ast/ |
ast_drv.c | 75 bool primary = false; local in function:ast_kick_out_firmware_fb 85 primary = pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW; 87 drm_fb_helper_remove_conflicting_framebuffers(ap, "astdrmfb", primary);
|
/src/sys/external/bsd/drm2/dist/drm/i915/gvt/ |
cfg_space.c | 360 * @primary: is the vGPU presented as primary 364 bool primary) 373 if (!primary) { 415 bool primary = vgpu_cfg_space(vgpu)[PCI_CLASS_DEVICE] != local in function:intel_vgpu_reset_cfg_space 428 intel_vgpu_init_cfg_space(vgpu, primary);
|
fb_decoder.h | 156 struct intel_vgpu_primary_plane_format primary; member in struct:intel_vgpu_pipe_format
|
gvt.h | 432 __s32 primary; member in struct:intel_vgpu_creation_params 529 bool primary);
|
/src/bin/sh/ |
arithmetic.c | 207 primary(int token, union a_token_val *val, int op, int noeval) function in typeref:typename:intmax_t 212 VTRACE(DBG_ARITH, ("Arith primary: token %d op %d%s\n", 240 return primary(op, val, arith_token(), noeval); 243 return -primary(op, val, arith_token(), noeval); 246 return !primary(op, val, arith_token(), noeval); 249 return ~primary(op, val, arith_token(), noeval); 263 arith_err("expecting primary"); 283 b = primary(token, &val, arith_token(), noeval); 305 intmax_t a = primary(token, val, op, noeval);
|
/src/sys/external/bsd/drm2/dist/drm/virtio/ |
virtgpu_display.c | 265 struct drm_plane *primary, *cursor; local in function:vgdev_output_init 274 primary = virtio_gpu_plane_init(vgdev, DRM_PLANE_TYPE_PRIMARY, index); 275 if (IS_ERR(primary)) 276 return PTR_ERR(primary); 280 drm_crtc_init_with_planes(dev, crtc, primary, cursor,
|
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
vmwgfx_ldu.c | 105 fb = entry->base.crtc.primary->state->fb; 114 fb = entry->base.crtc.primary->state->fb; 364 struct drm_plane *primary, *cursor; local in function:vmw_ldu_init 376 primary = &ldu->base.primary; 392 /* Initialize primary plane */ 393 vmw_du_plane_reset(primary); 395 ret = drm_universal_plane_init(dev, &ldu->base.primary, 401 DRM_ERROR("Failed to initialize primary plane"); 405 drm_plane_helper_add(primary, &vmw_ldu_primary_plane_helper_funcs) [all...] |
vmwgfx_kms.h | 342 struct drm_plane primary; member in struct:vmw_display_unit
|
vmwgfx_scrn.c | 229 ps = crtc->primary->state; 837 struct drm_plane *primary, *cursor; local in function:vmw_sou_init 849 primary = &sou->base.primary; 863 /* Initialize primary plane */ 864 vmw_du_plane_reset(primary); 866 ret = drm_universal_plane_init(dev, &sou->base.primary, 872 DRM_ERROR("Failed to initialize primary plane"); 876 drm_plane_helper_add(primary, &vmw_sou_primary_plane_helper_funcs); 877 drm_plane_enable_fb_damage_clips(primary); [all...] |
vmwgfx_stdu.c | 1736 struct drm_plane *primary, *cursor; local in function:vmw_stdu_init 1749 primary = &stdu->base.primary; 1757 /* Initialize primary plane */ 1758 vmw_du_plane_reset(primary); 1760 ret = drm_universal_plane_init(dev, primary, 1766 DRM_ERROR("Failed to initialize primary plane"); 1770 drm_plane_helper_add(primary, &vmw_stdu_primary_plane_helper_funcs); 1771 drm_plane_enable_fb_damage_clips(primary); 1783 drm_plane_cleanup(&stdu->base.primary); [all...] |
/src/sys/external/bsd/drm/dist/shared-core/ |
mga_dma.c | 80 drm_mga_primary_buffer_t *primary = &dev_priv->prim; local in function:mga_do_dma_reset 84 /* The primary DMA stream should look like new right about now. 86 primary->tail = 0; 87 primary->space = primary->size; 88 primary->last_flush = 0; 102 * Primary DMA stream 107 drm_mga_primary_buffer_t *primary = &dev_priv->prim; local in function:mga_do_dma_flush 122 if (primary->tail == primary->last_flush) 163 drm_mga_primary_buffer_t *primary = &dev_priv->prim; local in function:mga_do_dma_wrap_start 204 drm_mga_primary_buffer_t *primary = &dev_priv->prim; local in function:mga_do_dma_wrap_end [all...] |
/src/sys/external/bsd/drm2/dist/drm/mga/ |
mga_dma.c | 83 drm_mga_primary_buffer_t *primary = &dev_priv->prim; local in function:mga_do_dma_reset 87 /* The primary DMA stream should look like new right about now. 89 primary->tail = 0; 90 primary->space = primary->size; 91 primary->last_flush = 0; 105 * Primary DMA stream 110 drm_mga_primary_buffer_t *primary = &dev_priv->prim; local in function:mga_do_dma_flush 125 if (primary->tail == primary->last_flush) 165 drm_mga_primary_buffer_t *primary = &dev_priv->prim; local in function:mga_do_dma_wrap_start 205 drm_mga_primary_buffer_t *primary = &dev_priv->prim; local in function:mga_do_dma_wrap_end [all...] |
/src/sys/external/bsd/drm2/dist/drm/radeon/ |
radeon_dp_mst.c | 33 static int radeon_dp_mst_set_be_cntl(struct radeon_encoder *primary, 37 struct drm_device *dev = primary->base.dev; 43 reg = RREG32(NI_DIG_BE_CNTL + primary->offset); 55 DRM_DEBUG_KMS("writing 0x%08x 0x%08x\n", NI_DIG_BE_CNTL + primary->offset, reg); 56 WREG32(NI_DIG_BE_CNTL + primary->offset, reg); 65 DRM_ERROR("timed out waiting for FE %d %d\n", primary->offset, mst_enc->fe); 70 static int radeon_dp_mst_set_stream_attrib(struct radeon_encoder *primary, 75 struct drm_device *dev = primary->base.dev; 84 temp = RREG32(NI_DP_MSE_SAT0 + satreg + primary->offset); 94 DRM_DEBUG_KMS("writing 0x%08x 0x%08x\n", NI_DP_MSE_SAT0 + satreg + primary->offset, temp) 392 struct radeon_encoder *radeon_encoder, *primary; local in function:radeon_mst_encoder_dpms 546 struct radeon_encoder *radeon_encoder, *primary; local in function:radeon_mst_encoder_prepare [all...] |
/src/sys/external/bsd/drm2/dist/include/drm/ |
drm_device.h | 86 /** @primary: Primary node */ 87 struct drm_minor *primary; member in struct:drm_device
|
drm_crtc.h | 916 * @primary: 917 * Primary plane for this CRTC. Note that this is only 922 struct drm_plane *primary; member in struct:drm_crtc 994 * drivers should look at &drm_plane_state.crtc_x of the primary plane 1002 * drivers should look at &drm_plane_state.crtc_y of the primary plane 1150 struct drm_plane *primary,
|
/src/sys/arch/alpha/alpha/ |
cpu.c | 129 * primary and announce the AMASK extensions if they exist. 303 * the primary (although the primary idles on lwp0's PCB until its 333 /* XXX CHECK PRIMARY? */ 346 const bool primary = ma->ma_slot == hwrpb->rpb_primary_cpu_id; local in function:cpuattach 356 aprint_normal(": ID %d%s, ", ma->ma_slot, primary ? " (primary)" : ""); 386 pe = ", Primary Eligible"; 400 if (primary) 401 panic("cpu_attach: primary CPU ID too large") [all...] |
/src/bin/test/ |
test.c | 35 nexpr ::= primary | "!" primary 36 primary ::= unary-operator operand 175 static int primary(enum token); 454 return primary(n); 458 primary(enum token n) function in typeref:typename:int
|
/src/sys/arch/ia64/include/ |
dig64.h | 35 * This header file written refer to 'DIG64 Descriptions for Primary Console & 147 uint8_t primary; member in struct:dig64_pcdp_entry
|
/src/sys/external/bsd/drm2/dist/drm/vboxvideo/ |
vbox_mode.c | 38 struct drm_framebuffer *fb = crtc->primary->state->fb; 137 fb = crtci->primary->state->fb; 564 struct drm_plane *primary; local in function:vbox_crtc_init 577 primary = vbox_create_plane(vbox, 1 << i, DRM_PLANE_TYPE_PRIMARY); 578 if (IS_ERR(primary)) { 579 ret = PTR_ERR(primary); 595 ret = drm_crtc_init_with_planes(dev, &vbox_crtc->base, primary, cursor, 611 drm_plane_cleanup(primary); 612 kfree(primary);
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/ |
nouveau_dispnv04_crtc.c | 242 struct drm_framebuffer *fb = crtc->primary->fb; 468 const struct drm_framebuffer *fb = crtc->primary->fb; 497 /* Except for rare conditions I2C is enabled on the primary crtc */ 613 struct nouveau_framebuffer *nvfb = nouveau_framebuffer(crtc->primary->fb); 811 if (!nv_crtc->base.primary->fb) { 837 if (!atomic && !crtc->primary->fb) { 849 drm_fb = crtc->primary->fb; 850 fb = nouveau_framebuffer(crtc->primary->fb); 1151 struct nouveau_bo *old_bo = nouveau_framebuffer(crtc->primary->fb)->nvbo; 1228 crtc->primary->fb = fb 1277 struct drm_plane *primary; local in function:create_primary_plane [all...] |
/src/sys/external/bsd/drm2/dist/drm/qxl/ |
qxl_display.c | 324 DRM_DEBUG_KMS("no primary surface, skip (%s)\n", reason); 430 /* if we aren't primary surface ignore this */ 546 struct qxl_bo *primary; local in function:qxl_primary_atomic_update 555 primary = bo->shadow ? bo->shadow : bo; 557 if (!primary->is_primary) { 560 qxl_io_create_primary(qdev, primary); 943 struct drm_plane *primary, *cursor; local in function:qdev_crtc_init 951 primary = qxl_create_plane(qdev, 1 << crtc_id, DRM_PLANE_TYPE_PRIMARY); 952 if (IS_ERR(primary)) { 963 r = drm_crtc_init_with_planes(dev, &qxl_crtc->base, primary, cursor [all...] |
/src/usr.sbin/sysinst/ |
mbr.c | 1321 const mbr_info_t *mb, int i, bool primary, 1368 const mbr_info_t *mb, int i, bool primary, 1438 const mbr_info_t *mb, int i, bool primary, 1466 const mbr_info_t *mb, int i, bool primary, 1475 return primary && mb->extended == NULL; 1493 const mbr_info_t *mb, int i, bool primary, 1543 const mbr_info_t *mb, int i, bool primary, 1969 mbr_fixup_ext_chain(mbr_info_t *primary, uint ext_start, uint ext_end) 1971 for (mbr_info_t *m = primary->extended; m != NULL; m = m->extended) { 1997 const mbr_info_t *mb, int i, bool primary, 2128 bool primary = true; local in function:mbr_ptr_from_start 2153 bool primary = true; local in function:mbr_type_from_start [all...] |