/src/sys/external/bsd/drm2/dist/drm/ |
drm_atomic_helper.c | 54 * This helper library provides implementations of check and commit functions on 61 * drm_atomic_helper_check() and for the commit callback with 331 * atomic check or commit, this is racy. But that's OK: all we care 1099 * Drivers can use this for building their own atomic commit if they don't have 1237 * drm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs 1245 * drm_atomic_helper_commit_planes(), which is what the default commit function 1283 * drm_atomic_helper_commit_modeset_enables - modeset commit to enable outputs 1291 * drm_atomic_helper_commit_planes(), which is what the default commit function 1323 else if (funcs->commit) 1324 funcs->commit(crtc) 1527 struct drm_crtc_commit *commit = old_state->crtcs[i].commit; local in function:drm_atomic_helper_wait_for_flip_done 1929 struct drm_crtc_commit *commit, *stall_commit = NULL; local in function:stall_checks 1973 struct drm_crtc_commit *commit = container_of(completion, local in function:release_crtc_commit 2064 struct drm_crtc_commit *commit; local in function:drm_atomic_helper_setup_commit 2167 struct drm_crtc_commit *commit; local in function:drm_atomic_helper_wait_for_dependencies 2294 struct drm_crtc_commit *commit; local in function:drm_atomic_helper_commit_hw_done 2339 struct drm_crtc_commit *commit; local in function:drm_atomic_helper_commit_cleanup_done 2749 struct drm_crtc_commit *commit; local in function:drm_atomic_helper_swap_state [all...] |
drm_atomic_state_helper.c | 150 state->commit = NULL; 193 if (state->commit) { 195 * In the event that a non-blocking commit returns 197 * have an extra reference to the commit object. Release it, if 203 if (state->event && state->commit->abort_completion) 204 drm_crtc_commit_put(state->commit); 206 kfree(state->commit->event); 207 state->commit->event = NULL; 209 drm_crtc_commit_put(state->commit); 312 state->commit = NULL [all...] |
drm_atomic.c | 52 struct drm_crtc_commit *commit = local in function:__drm_crtc_commit_free 56 destroy_completion(&commit->flip_done); 57 destroy_completion(&commit->hw_done); 58 destroy_completion(&commit->cleanup_done); 60 kfree(commit); 194 if (state->crtcs[i].commit) { 195 drm_crtc_commit_put(state->crtcs[i].commit); 196 state->crtcs[i].commit = NULL; 693 * objects. Drivers then need to do similar state tracking and commit ordering for 704 * directly. Sequence of the actual hardware state commit is not handled [all...] |
drm_crtc_helper.c | 398 crtc_funcs->commit(crtc); 409 if (encoder_funcs->commit) 410 encoder_funcs->commit(encoder); 514 * and ->commit() CRTC and encoder helper operations, in that order.
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/amdgpu_dm/ |
amdgpu_dm_crc.c | 150 struct drm_crtc_commit *commit; local in function:amdgpu_dm_crtc_set_crc_source 168 commit = list_first_entry_or_null(&crtc->commit_list, 170 if (commit) 171 drm_crtc_commit_get(commit); 174 if (commit) { 177 * in commit tail since it can modify CRC related fields and 179 * guaranteed that no other commit work can be queued off 183 &commit->hw_done, 10 * HZ); 275 if (commit) 276 drm_crtc_commit_put(commit); [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/fifo/ |
nouveau_nvkm_engine_fifo_gk110.c | 51 .commit = gk104_fifo_runlist_commit,
|
nouveau_nvkm_engine_fifo_tu102.c | 56 .commit = tu102_fifo_runlist_commit,
|
gk104.h | 79 void (*commit)(struct gk104_fifo *, int runl, member in struct:gk104_fifo_func::gk104_fifo_runlist_func
|
nouveau_nvkm_engine_fifo_gm107.c | 50 .commit = gk104_fifo_runlist_commit,
|
/src/usr.sbin/inetd/ |
ipsec.c | 126 ipsecsetup0(int af, int fd, const char *policy, int commit) 151 if (commit && setsockopt(fd, level, opt,
|
/src/lib/libc/stdio/ |
vfwscanf.c | 765 wchar_t *commit, *p; local in function:parsefloat 776 * We set commit = p whenever the string we have read so far 779 * or fail, and we will ungetc() back to the last commit point. 784 commit = buf - 1; 801 commit = p; 822 commit = p; /* inf or infinity */ 837 commit = p; 845 commit = p; 872 commit = p; 883 commit = p [all...] |
vfscanf.c | 963 char *commit, *p; local in function:parsefloat 974 * We set commit = p whenever the string we have read so far 977 * or fail, and we will ungetc() back to the last commit point. 982 commit = buf - 1; 997 commit = p; 1018 commit = p; /* inf or infinity */ 1033 commit = p; 1041 commit = p; 1067 commit = p; 1077 commit = p [all...] |
/src/tools/make/ |
configure.ac | 17 # 4. cvs commit files that you edited. 18 # 5. Regen again, to pick up changed RCS IDs from the above commit: 21 # 6. cvs commit files that were generated.
|
/src/share/examples/puffs/pgfs/ |
pgfs_puffs.c | 99 error = commit(xc); 273 error = commit(xc); 355 error = commit(xc); 371 error = commit(xc); 406 error = commit(xc); 446 error = commit(xc); 518 error = commit(xc); 574 error = commit(xc); 617 error = commit(xc); 654 error = commit(xc) [all...] |
pgfs_db.h | 66 int commit(struct Xconn *);
|
/src/sys/arch/x86/include/ |
mtrr.h | 123 void (*commit)(void); member in struct:mtrr_funcs 137 #define mtrr_commit() mtrr_funcs->commit()
|
/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
amdgpu_vm_cpu.c | 111 * amdgpu_vm_cpu_commit - commit page table update to the HW 131 .commit = amdgpu_vm_cpu_commit
|
/src/sys/external/bsd/drm2/dist/drm/i915/display/ |
intel_dvo_dev.h | 91 void (*commit)(struct intel_dvo_device *dvo); member in struct:intel_dvo_dev_ops
|
/src/usr.bin/make/unit-tests/ |
compat-error.mk | 23 # The commit that added the NULL command to gn->commands: 29 # The commit that skipped NULL commands for .ERROR_CMD:
|
cond-cmp-unary.mk | 50 # a commit from 1992-04-15 saying "A variable is empty when it just contains
|
comment.mk | 19 # they are just makefile comments. Before that commit, these comments
|
/src/sys/external/bsd/drm2/dist/include/drm/ |
drm_atomic.h | 40 * This structure is used to track pending modeset changes and atomic commit on 48 * atomic commit thread hardware 77 * DRM CRTC for this commit. 95 * commit is sent to userspace, or when an out-fence is singalled. Note 107 * Will be signalled when all hw register changes for this commit have 156 * used by the free code to remove the second reference if commit fails. 171 * @commit: 173 * A reference to the CRTC commit object that is kept for use by 176 * concurrent commit won't free a commit object that is still in use 178 struct drm_crtc_commit *commit; member in struct:__drm_crtcs_state [all...] |
drm_modeset_helper_vtables.h | 98 * @commit: 100 * This callback should commit the new mode on the CRTC after a modeset, 110 void (*commit)(struct drm_crtc *crtc); member in struct:drm_crtc_helper_funcs 133 * commit, and the mode validation in the probe paths it is not allowed 300 * Therefore @disable must be the inverse of @mode_set plus @commit for 328 * can add more state objects to the atomic commit if needed. Care must 368 * This hook is called before any plane commit functions are called. 373 * the tradeoffs and variants of plane commit helpers. 388 * Simple hardware or hardware with special requirements can commit and 390 * other commit hooks for plane updates 599 void (*commit)(struct drm_encoder *encoder); member in struct:drm_encoder_helper_funcs [all...] |
/src/sys/external/mit/xen-include-public/dist/xen/include/public/xsm/ |
flask_op.h | 99 /* IN: commit new value instead of only setting pending [SET] */ 100 uint8_t commit; member in struct:xen_flask_boolean
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/falcon/ |
nouveau_nvkm_falcon_msgq.c | 40 nvkm_falcon_msgq_close(struct nvkm_falcon_msgq *msgq, bool commit) 44 if (commit)
|