Home
last modified time | relevance | path

Searched refs:sync (Results 551 - 575 of 1899) sorted by relevance

1...<<21222324252627282930>>...76

/kernel/linux/linux-6.6/tools/testing/selftests/sync/
H A DMakefile16 OBJS = sync_test.o sync.o
/kernel/liteos_m/components/fs/vfs/
H A Dvfs_files.h66 int (*sync)(struct File *); member
/kernel/uniproton/src/fs/vfs/
H A Dvfs_files.h45 S32 (*sync)(struct TagFile *); member
/kernel/linux/linux-6.6/drivers/s390/cio/
H A Dorb.h24 u32 sync:1; /* synchronize control */ member
/third_party/mesa3d/.gitlab-ci/container/
H A Dbuild-skqp.sh73 python tools/git-sync-deps
/third_party/mesa3d/src/glx/
H A Ddri3_priv.h60 #include <xcb/sync.h>
/third_party/toybox/toys/other/
H A Doneit.c46 // point it calls sync() and reboot(). I could stick a kill -1 in there.
59 sync(); in oneit_signaled()
/third_party/rust/crates/once_cell/examples/
H A Dbench_vs_lazy_static.rs2 use once_cell::sync::Lazy;
/third_party/rust/crates/regex/examples/
H A Dshootout-regex-dna.rs9 use std::sync::Arc;
/third_party/rust/crates/rustix/src/fs/
H A Dstatx.rs7 use core::sync::atomic::{AtomicU8, Ordering};
/kernel/linux/linux-5.10/drivers/video/fbdev/aty/
H A Daty128fb.c131 .sync = 0,
1037 u32 left, right, upper, lower, hslen, vslen, sync, vmode; in aty128_var_to_crtc() local
1057 sync = var->sync; in aty128_var_to_crtc()
1125 h_sync_pol = sync & FB_SYNC_HOR_HIGH_ACT ? 0 : 1; in aty128_var_to_crtc()
1126 v_sync_pol = sync & FB_SYNC_VERT_HIGH_ACT ? 0 : 1; in aty128_var_to_crtc()
1128 c_sync = sync & FB_SYNC_COMP_HIGH_ACT ? (1 << 4) : 0; in aty128_var_to_crtc()
1226 u32 xres, yres, left, right, upper, lower, hslen, vslen, sync; in aty128_crtc_to_var() local
1255 sync = (h_sync_pol ? 0 : FB_SYNC_HOR_HIGH_ACT) | in aty128_crtc_to_var()
1273 var->sync in aty128_crtc_to_var()
[all...]
/kernel/linux/linux-6.6/drivers/video/fbdev/aty/
H A Daty128fb.c131 .sync = 0,
1035 u32 left, right, upper, lower, hslen, vslen, sync, vmode; in aty128_var_to_crtc() local
1055 sync = var->sync; in aty128_var_to_crtc()
1123 h_sync_pol = sync & FB_SYNC_HOR_HIGH_ACT ? 0 : 1; in aty128_var_to_crtc()
1124 v_sync_pol = sync & FB_SYNC_VERT_HIGH_ACT ? 0 : 1; in aty128_var_to_crtc()
1126 c_sync = sync & FB_SYNC_COMP_HIGH_ACT ? (1 << 4) : 0; in aty128_var_to_crtc()
1224 u32 xres, yres, left, right, upper, lower, hslen, vslen, sync; in aty128_crtc_to_var() local
1253 sync = (h_sync_pol ? 0 : FB_SYNC_HOR_HIGH_ACT) | in aty128_crtc_to_var()
1271 var->sync in aty128_crtc_to_var()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_cs.c67 amdgpu_sync_create(&p->sync); in amdgpu_cs_parser_init()
426 r = amdgpu_sync_fence(&p->sync, fence); in amdgpu_cs_p2_dependencies()
448 r = amdgpu_sync_fence(&p->sync, fence); in amdgpu_syncobj_lookup_and_add()
1104 r = amdgpu_sync_fence(&p->sync, fpriv->prt_va->last_pt_update); in amdgpu_cs_vm_handling()
1115 r = amdgpu_sync_fence(&p->sync, bo_va->last_pt_update); in amdgpu_cs_vm_handling()
1129 r = amdgpu_sync_fence(&p->sync, bo_va->last_pt_update); in amdgpu_cs_vm_handling()
1142 r = amdgpu_sync_fence(&p->sync, vm->last_update); in amdgpu_cs_vm_handling()
1196 r = amdgpu_sync_resv(p->adev, &p->sync, resv, sync_mode, in amdgpu_cs_sync_rings()
1203 r = amdgpu_sync_push_to_job(&p->sync, p->jobs[i]); in amdgpu_cs_sync_rings()
1209 while ((fence = amdgpu_sync_get_fence(&p->sync))) { in amdgpu_cs_sync_rings()
[all...]
/kernel/linux/linux-6.6/kernel/
H A Dcpu.c314 int sync; in cpuhp_wait_for_sync_state() local
318 sync = atomic_read(st); in cpuhp_wait_for_sync_state()
320 if (sync == state) { in cpuhp_wait_for_sync_state()
321 if (!atomic_try_cmpxchg(st, &sync, next_state)) in cpuhp_wait_for_sync_state()
336 sync = atomic_read(st); in cpuhp_wait_for_sync_state()
364 int sync = atomic_read(st); in cpuhp_bp_sync_dead() local
368 if (sync == SYNC_STATE_DEAD) in cpuhp_bp_sync_dead()
370 } while (!atomic_try_cmpxchg(st, &sync, SYNC_STATE_SHOULD_DIE)); in cpuhp_bp_sync_dead()
406 int sync = atomic_read(st); in cpuhp_can_boot_ap() local
409 switch (sync) { in cpuhp_can_boot_ap()
[all...]
/kernel/linux/linux-5.10/drivers/base/regmap/
H A Dregcache.c283 /* If we don't know the chip just got reset, then sync everything. */ in regcache_reg_needs_sync()
318 dev_err(map->dev, "Unable to sync register %#x. %d\n", in regcache_default_sync()
376 if (map->cache_ops->sync) in regcache_sync()
377 ret = map->cache_ops->sync(map, 0, map->max_register); in regcache_sync()
402 * @map: map to sync.
403 * @min: first register to sync
404 * @max: last register to sync
438 if (map->cache_ops->sync) in regcache_sync_region()
439 ret = map->cache_ops->sync(map, min, max); in regcache_sync_region()
699 dev_err(map->dev, "Unable to sync registe in regcache_sync_block_single()
[all...]
/kernel/linux/linux-5.10/drivers/lightnvm/
H A Dpblk-write.c279 int sync; in pblk_end_io_write_meta() local
292 sync = atomic_add_return(rqd->nr_ppas, &emeta->sync); in pblk_end_io_write_meta()
293 if (sync == emeta->nr_entries) in pblk_end_io_write_meta()
604 pblk_err(pblk, "bad buffer sync calculation\n"); in pblk_submit_write()
/kernel/linux/linux-5.10/drivers/video/fbdev/kyro/
H A Dfbdev.c470 var->sync |= FB_SYNC_HOR_HIGH_ACT; in kyrofb_check_var()
472 var->sync |= FB_SYNC_VERT_HIGH_ACT; in kyrofb_check_var()
522 par->HSP = (info->var.sync & FB_SYNC_HOR_HIGH_ACT) ? 1 : 0; in kyrofb_set_par()
523 par->VSP = (info->var.sync & FB_SYNC_VERT_HIGH_ACT) ? 1 : 0; in kyrofb_set_par()
/kernel/linux/linux-6.6/drivers/video/fbdev/kyro/
H A Dfbdev.c471 var->sync |= FB_SYNC_HOR_HIGH_ACT; in kyrofb_check_var()
473 var->sync |= FB_SYNC_VERT_HIGH_ACT; in kyrofb_check_var()
525 par->HSP = (info->var.sync & FB_SYNC_HOR_HIGH_ACT) ? 1 : 0; in kyrofb_set_par()
526 par->VSP = (info->var.sync & FB_SYNC_VERT_HIGH_ACT) ? 1 : 0; in kyrofb_set_par()
/kernel/linux/linux-6.6/drivers/base/regmap/
H A Dregcache.c290 /* If we don't know the chip just got reset, then sync everything. */ in regcache_reg_needs_sync()
327 dev_err(map->dev, "Unable to sync register %#x. %d\n", in regcache_default_sync()
389 if (map->cache_ops->sync) in regcache_sync()
390 ret = map->cache_ops->sync(map, 0, map->max_register); in regcache_sync()
405 * have gone out of sync, force writes of all the paging in regcache_sync()
412 /* If there's nothing in the cache there's nothing to sync */ in regcache_sync()
437 * @map: map to sync.
438 * @min: first register to sync
439 * @max: last register to sync
473 if (map->cache_ops->sync) in regcache_sync_region()
[all...]
/kernel/linux/linux-6.6/sound/pci/emu10k1/
H A Dp16v.c177 runtime->sync.id32[0] = substream->pcm->card->number; in snd_p16v_pcm_open_playback_channel()
178 runtime->sync.id32[1] = 'P'; in snd_p16v_pcm_open_playback_channel()
179 runtime->sync.id32[2] = 16; in snd_p16v_pcm_open_playback_channel()
180 runtime->sync.id32[3] = 'V'; in snd_p16v_pcm_open_playback_channel()
/third_party/ffmpeg/libavfilter/
H A Dvf_deinterlace_qsv.c454 mfxSyncPoint sync = NULL; in process_frame() local
471 NULL, &sync); in process_frame()
486 if (!sync) { in process_frame()
487 av_log(ctx, AV_LOG_ERROR, "No sync during deinterlacing\n"); in process_frame()
495 err = MFXVideoCORE_SyncOperation(s->session, sync, 1000); in process_frame()
H A Dvf_scale_qsv.c551 mfxSyncPoint sync = NULL; in qsvscale_filter_frame() local
567 NULL, &sync); in qsvscale_filter_frame()
577 if (!sync) { in qsvscale_filter_frame()
578 av_log(ctx, AV_LOG_ERROR, "No sync during scaling\n"); in qsvscale_filter_frame()
584 err = MFXVideoCORE_SyncOperation(s->session, sync, 1000); in qsvscale_filter_frame()
/third_party/mesa3d/src/freedreno/ir2/
H A Ddisasm-a2xx.c230 disasm_alu(uint32_t *dwords, uint32_t alu_off, int level, int sync, in disasm_alu() argument
241 printf(" %sALU:\t", sync ? "(S)" : " "); in disasm_alu()
475 disasm_fetch(uint32_t *dwords, uint32_t alu_off, int level, int sync) in disasm_fetch() argument
485 printf(" %sFETCH:\t", sync ? "(S)" : " "); in disasm_fetch()
/third_party/mesa3d/src/nouveau/codegen/
H A Dnv50_ir_lowering_gv100.cpp205 Instruction *sync = new_Instruction(func, OP_WARPSYNC, TYPE_NONE); in handleSHFL() local
206 sync->fixed = 1; in handleSHFL()
207 sync->setSrc(0, bld.mkImm(0xffffffff)); in handleSHFL()
208 i->bb->insertBefore(i, sync); in handleSHFL()
/kernel/linux/linux-5.10/drivers/acpi/apei/
H A Dghes.c478 int sev, bool sync) in ghes_handle_memory_failure()
492 flags = sync ? MF_ACTION_REQUIRED : 0; in ghes_handle_memory_failure()
501 int sev, bool sync) in ghes_handle_arm_hw_error()
504 int flags = sync ? MF_ACTION_REQUIRED : 0; in ghes_handle_arm_hw_error()
650 bool sync = is_hest_sync_notify(ghes); in ghes_do_proc() local
668 queued = ghes_handle_memory_failure(gdata, sev, sync); in ghes_do_proc()
674 queued = ghes_handle_arm_hw_error(gdata, sev, sync); in ghes_do_proc()
477 ghes_handle_memory_failure(struct acpi_hest_generic_data *gdata, int sev, bool sync) ghes_handle_memory_failure() argument
500 ghes_handle_arm_hw_error(struct acpi_hest_generic_data *gdata, int sev, bool sync) ghes_handle_arm_hw_error() argument

Completed in 22 milliseconds

1...<<21222324252627282930>>...76