Searched refs:sync (Results 1 - 25 of 185) sorted by relevance

12345678

/openbsd-current/bin/sync/
H A DMakefile3 PROG= sync
4 MAN= sync.8
H A Dsync.c1 /* $OpenBSD: sync.c,v 1.7 2009/10/27 23:59:22 deraadt Exp $ */
2 /* $NetBSD: sync.c,v 1.7 1995/03/21 09:11:37 cgd Exp $ */
38 sync();
/openbsd-current/distrib/special/sync/
H A DMakefile3 PROG= sync
5 .PATH: ${.CURDIR}/../../../bin/sync
/openbsd-current/sys/dev/pci/drm/i915/selftests/
H A Di915_syncmap.c101 static int check_syncmap_free(struct i915_syncmap **sync) argument
103 i915_syncmap_free(sync);
104 if (*sync) {
105 pr_err("sync not cleared after free\n");
112 static int dump_syncmap(struct i915_syncmap *sync, int err) argument
117 return check_syncmap_free(&sync);
123 if (i915_syncmap_print_to_buf(sync, buf, PAGE_SIZE))
129 i915_syncmap_free(&sync);
135 struct i915_syncmap *sync = (void *)~0ul; local
142 i915_syncmap_init(&sync);
163 check_one(struct i915_syncmap **sync, u64 context, u32 seqno) argument
206 struct i915_syncmap *sync; local
238 check_leaf(struct i915_syncmap **sync, u64 context, u32 seqno) argument
273 struct i915_syncmap *sync; local
334 struct i915_syncmap *sync; local
404 struct i915_syncmap *sync; local
448 struct i915_syncmap *sync; local
546 struct i915_syncmap *sync; local
[all...]
/openbsd-current/sys/dev/pci/drm/amd/amdgpu/
H A Damdgpu_sync.h43 * Container for fences used to sync command submissions.
49 void amdgpu_sync_create(struct amdgpu_sync *sync);
50 int amdgpu_sync_fence(struct amdgpu_sync *sync, struct dma_fence *f);
51 int amdgpu_sync_resv(struct amdgpu_device *adev, struct amdgpu_sync *sync,
54 struct dma_fence *amdgpu_sync_peek_fence(struct amdgpu_sync *sync,
56 struct dma_fence *amdgpu_sync_get_fence(struct amdgpu_sync *sync);
58 int amdgpu_sync_push_to_job(struct amdgpu_sync *sync, struct amdgpu_job *job);
59 int amdgpu_sync_wait(struct amdgpu_sync *sync, bool intr);
60 void amdgpu_sync_free(struct amdgpu_sync *sync);
H A Damdgpu_sync.c46 * amdgpu_sync_create - zero init sync object
48 * @sync: sync object to initialize
50 * Just clear the sync object for now.
52 void amdgpu_sync_create(struct amdgpu_sync *sync) argument
54 hash_init(sync->fences);
127 * @sync: sync object to add the fence to
133 static bool amdgpu_sync_add_later(struct amdgpu_sync *sync, struct dma_fence *f) argument
137 hash_for_each_possible(sync
155 amdgpu_sync_fence(struct amdgpu_sync *sync, struct dma_fence *f) argument
239 amdgpu_sync_resv(struct amdgpu_device *adev, struct amdgpu_sync *sync, struct dma_resv *resv, enum amdgpu_sync_mode mode, void *owner) argument
288 amdgpu_sync_peek_fence(struct amdgpu_sync *sync, struct amdgpu_ring *ring) argument
328 amdgpu_sync_get_fence(struct amdgpu_sync *sync) argument
391 amdgpu_sync_push_to_job(struct amdgpu_sync *sync, struct amdgpu_job *job) argument
415 amdgpu_sync_wait(struct amdgpu_sync *sync, bool intr) argument
439 amdgpu_sync_free(struct amdgpu_sync *sync) argument
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/gwp_asan/platform_specific/
H A Dmutex_fuchsia.h13 #include <lib/sync/mutex.h>
H A Dmutex_fuchsia.cpp11 #include <lib/sync/mutex.h>
/openbsd-current/sys/dev/pci/drm/radeon/
H A Dradeon_sync.c35 * radeon_sync_create - zero init sync object
37 * @sync: sync object to initialize
39 * Just clear the sync object for now.
41 void radeon_sync_create(struct radeon_sync *sync) argument
46 sync->semaphores[i] = NULL;
49 sync->sync_to[i] = NULL;
51 sync->last_vm_update = NULL;
55 * radeon_sync_fence - use the semaphore to sync to a fence
57 * @sync
62 radeon_sync_fence(struct radeon_sync *sync, struct radeon_fence *fence) argument
89 radeon_sync_resv(struct radeon_device *rdev, struct radeon_sync *sync, struct dma_resv *resv, bool shared) argument
121 radeon_sync_rings(struct radeon_device *rdev, struct radeon_sync *sync, int ring) argument
196 radeon_sync_free(struct radeon_device *rdev, struct radeon_sync *sync, struct radeon_fence *fence) argument
[all...]
H A Drv770_dma.c36 * @resv: reservation object to sync to
48 struct radeon_sync sync; local
55 radeon_sync_create(&sync);
62 radeon_sync_free(rdev, &sync, NULL);
66 radeon_sync_resv(rdev, &sync, resv, false);
67 radeon_sync_rings(rdev, &sync, ring->idx);
86 radeon_sync_free(rdev, &sync, NULL);
91 radeon_sync_free(rdev, &sync, fence);
H A Devergreen_dma.c113 struct radeon_sync sync; local
120 radeon_sync_create(&sync);
127 radeon_sync_free(rdev, &sync, NULL);
131 radeon_sync_resv(rdev, &sync, resv, false);
132 radeon_sync_rings(rdev, &sync, ring->idx);
151 radeon_sync_free(rdev, &sync, NULL);
156 radeon_sync_free(rdev, &sync, fence);
H A Dradeon_ib.c70 radeon_sync_create(&ib->sync);
99 radeon_sync_free(rdev, &ib->sync, ib->fence);
148 radeon_sync_fence(&ib->sync, vm_id_fence);
151 /* sync with other rings */
152 r = radeon_sync_rings(rdev, &ib->sync, ib->ring);
154 dev_err(rdev->dev, "failed to sync rings (%d)\n", r);
161 ib->sync.last_vm_update);
165 radeon_sync_free(rdev, &const_ib->sync, NULL);
H A Dsi_dma.c224 * @resv: reservation object to sync to
236 struct radeon_sync sync; local
243 radeon_sync_create(&sync);
250 radeon_sync_free(rdev, &sync, NULL);
254 radeon_sync_resv(rdev, &sync, resv, false);
255 radeon_sync_rings(rdev, &sync, ring->idx);
274 radeon_sync_free(rdev, &sync, NULL);
279 radeon_sync_free(rdev, &sync, fence);
/openbsd-current/sys/dev/pci/drm/i915/gt/selftests/
H A Dmock_timeline.c21 i915_syncmap_init(&timeline->sync);
28 i915_syncmap_free(&timeline->sync);
/openbsd-current/bin/
H A DMakefile6 sync test
/openbsd-current/libexec/spamd/
H A DMakefile4 SRCS= spamd.c sdl.c gdcopy.c grey.c sync.c
/openbsd-current/libexec/spamlogd/
H A DMakefile4 SRCS= spamlogd.c sync.c gdcopy.c
/openbsd-current/sys/arch/powerpc64/powerpc64/
H A Dsyncicache.c54 __asm volatile ("sync");
60 __asm volatile ("sync; isync");
62 sync();
/openbsd-current/gnu/gcc/gcc/config/mips/
H A Dsync.S1 /* $OpenBSD: sync.S,v 1.3 2017/08/20 11:12:42 visa Exp $ */
69 sync; \
76 sync; \
100 sync; \
110 sync; \
136 sync; \
144 sync; \
168 sync; \
179 sync; \
205 sync; \
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_thread.cpp24 ThreadContext::ThreadContext(Tid tid) : ThreadContextBase(tid), thr(), sync() {}
31 void ThreadContext::OnReset() { CHECK(!sync); }
111 VectorClock *sync; member in struct:__tsan::OnCreatedArgs
125 thr->clock.ReleaseStore(&arg.sync);
137 sync = args->sync;
158 thr->clock.Acquire(thr->tctx->sync);
161 Free(thr->tctx->sync);
233 thr->clock.ReleaseStore(&thr->tctx->sync);
289 VectorClock *sync; member in struct:__tsan::JoinArg
[all...]
H A Dtsan_fd.cpp31 FdSync *sync; member in struct:__tsan::FdDesc
106 if (d->sync) {
107 unref(thr, pc, d->sync);
108 d->sync = 0;
117 d->sync = s;
120 d->sync = &fdctx.globsync;
182 FdSync *s = d->sync;
193 FdSync *s = d->sync;
242 unref(thr, pc, d->sync);
243 d->sync
[all...]
/openbsd-current/gnu/usr.bin/perl/ext/GDBM_File/t/
H A Dsnapshot.t61 createdb($odd, GDBM_NUMSYNC, sub { shift->sync });
93 $dbh->sync;
94 $dbh->sync;
/openbsd-current/sys/dev/wscons/
H A Dwsmouse.c586 if (btn->sync)
588 btn->buttons ^= btn->sync;
590 btn->sync = btn->buttons ^ buttons;
605 motion->sync |= SYNC_DELTAS;
609 set_x(struct position *pos, int x, u_int *sync, u_int mask) argument
611 if (*sync & mask) {
623 *sync |= mask;
628 set_y(struct position *pos, int y, u_int *sync, u_int mask) argument
630 if (*sync & mask) {
642 *sync |
979 u_int bit, sync; local
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/27_io/
H A Dostream_sentry.cc42 virtual int sync () function in struct:buf
/openbsd-current/gnu/usr.bin/perl/dist/IO/t/
H A Dio_xs.t43 ok($x->sync, "sync on a writable handle")
44 or diag "sync(): ", $!;
48 { # [perl #64772] IO::Handle->sync fails on an O_RDONLY descriptor
59 ok($fh->sync, "sync to a read only handle")
60 or diag "sync(): ", $!;

Completed in 999 milliseconds

12345678