Searched refs:work (Results 1 - 25 of 1241) sorted by relevance

1234567891011>>

/netbsd-current/sys/external/bsd/drm2/dist/drm/
H A Ddrm_flip_work.c36 * drm_flip_work_allocate_task - allocate a flip-work task
56 * @work: the flip-work
60 * func) on a work queue after drm_flip_work_commit() is called.
62 void drm_flip_work_queue_task(struct drm_flip_work *work, argument
67 spin_lock_irqsave(&work->lock, flags);
68 list_add_tail(&task->node, &work->queued);
69 spin_unlock_irqrestore(&work->lock, flags);
74 * drm_flip_work_queue - queue work
75 * @work
81 drm_flip_work_queue(struct drm_flip_work *work, void *val) argument
106 drm_flip_work_commit(struct drm_flip_work *work, struct workqueue_struct *wq) argument
121 struct drm_flip_work *work = container_of(w, struct drm_flip_work, worker); local
152 drm_flip_work_init(struct drm_flip_work *work, const char *name, drm_flip_func_t func) argument
171 drm_flip_work_cleanup(struct drm_flip_work *work) argument
[all...]
/netbsd-current/sys/sys/
H A Dworkqueue.h39 * this framework is designed to make struct work small as
44 struct work { struct
55 void (*)(struct work *, void *), void *, pri_t, int, int);
57 void workqueue_wait(struct workqueue *, struct work *);
59 void workqueue_enqueue(struct workqueue *, struct work *, struct cpu_info *);
/netbsd-current/external/bsd/atf/dist/atf-sh/
H A Dtp_test.sh38 mkdir work
39 atf_check -s eq:0 -o empty -e empty cp "$(atf_get_srcdir)/misc_helpers" work
40 cat >work/subrs <<EOF
47 -o match:'This is a helper subroutine' -e ignore ./work/misc_helpers \
48 -s "$(pwd)"/work tp_srcdir
/netbsd-current/external/bsd/pcc/
H A Dprepare-import.sh20 if [ ! -d work -o ! -d work/pcc ]; then
21 echo "checkout or unpack pcc to work/ first, eg"
23 echo " cvs -d :pserver:anonymous@pcc.ludd.ltu.se:/cvsroot -f checkout -P -d work -N pcc"
29 find work -type d -name CVS | xargs rm -Rf
32 find work -type d -exec chmod u=rwx,go=rx {} \;
33 find work -type f -exec chmod u=rw,go=r {} \;
37 for f in $(grep -RL '\$(NetBSD|Id).*\$' work); do
47 mkdir work/tmp
48 cd work/tm
[all...]
/netbsd-current/external/bsd/openldap/
H A DMakefile40 configure: work/config.status .PHONY
42 work/config.status: ${LDAP_DISTDIR}/configure Makefile openldap.mk
43 mkdir -p work
44 (cd work \
48 update-include: work/config.status .PHONY
49 (cd work/include \
52 @for wf in `find work/include -name '*.h'`; do \
62 update-man: work/config.status .PHONY
63 (cd work/doc/man \
66 @for wf in `find work/do
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Ddata-streamer.c34 bp_pack_var_len_unsigned (struct bitpack_d *bp, unsigned HOST_WIDE_INT work) argument
38 unsigned int half_byte = (work & 0x7);
39 work >>= 3;
40 if (work != 0)
46 while (work != 0);
53 bp_pack_var_len_int (struct bitpack_d *bp, HOST_WIDE_INT work) argument
59 half_byte = (work & 0x7);
61 work >>= 3;
62 more = !((work == 0 && (half_byte & 0x4) == 0)
63 || (work
[all...]
H A Ddata-streamer-out.c209 streamer_write_uhwi (struct output_block *ob, unsigned HOST_WIDE_INT work) argument
211 streamer_write_uhwi_stream (ob->main_stream, work);
218 streamer_write_hwi (struct output_block *ob, HOST_WIDE_INT work) argument
220 streamer_write_hwi_stream (ob->main_stream, work);
226 streamer_write_poly_uint64 (struct output_block *ob, poly_uint64 work) argument
229 streamer_write_uhwi_stream (ob->main_stream, work.coeffs[i]);
235 streamer_write_gcov_count (struct output_block *ob, gcov_type work) argument
237 streamer_write_gcov_count_stream (ob->main_stream, work);
244 unsigned HOST_WIDE_INT work)
253 unsigned int byte = (work
243 streamer_write_uhwi_stream(struct lto_output_stream *obs, unsigned HOST_WIDE_INT work) argument
293 streamer_write_hwi_stream(struct lto_output_stream *obs, HOST_WIDE_INT work) argument
350 streamer_write_gcov_count_stream(struct lto_output_stream *obs, gcov_type work) argument
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Ddata-streamer.cc34 bp_pack_var_len_unsigned (struct bitpack_d *bp, unsigned HOST_WIDE_INT work) argument
38 unsigned int half_byte = (work & 0x7);
39 work >>= 3;
40 if (work != 0)
46 while (work != 0);
53 bp_pack_var_len_int (struct bitpack_d *bp, HOST_WIDE_INT work) argument
59 half_byte = (work & 0x7);
61 work >>= 3;
62 more = !((work == 0 && (half_byte & 0x4) == 0)
63 || (work
[all...]
H A Ddata-streamer-out.cc209 streamer_write_uhwi (struct output_block *ob, unsigned HOST_WIDE_INT work) argument
211 streamer_write_uhwi_stream (ob->main_stream, work);
218 streamer_write_hwi (struct output_block *ob, HOST_WIDE_INT work) argument
220 streamer_write_hwi_stream (ob->main_stream, work);
226 streamer_write_poly_uint64 (struct output_block *ob, poly_uint64 work) argument
229 streamer_write_uhwi_stream (ob->main_stream, work.coeffs[i]);
235 streamer_write_poly_int64 (struct output_block *ob, poly_int64 work) argument
238 streamer_write_hwi_stream (ob->main_stream, work.coeffs[i]);
244 streamer_write_gcov_count (struct output_block *ob, gcov_type work) argument
246 streamer_write_gcov_count_stream (ob->main_stream, work);
252 streamer_write_uhwi_stream(struct lto_output_stream *obs, unsigned HOST_WIDE_INT work) argument
302 streamer_write_hwi_stream(struct lto_output_stream *obs, HOST_WIDE_INT work) argument
359 streamer_write_gcov_count_stream(struct lto_output_stream *obs, gcov_type work) argument
[all...]
/netbsd-current/sys/external/bsd/common/linux/
H A Dlinux_work.c58 struct dwork_head wq_delayed; /* delayed work scheduled */
59 struct work_head wq_rcu; /* RCU work scheduled */
60 struct work_head wq_queue; /* work to run */
61 struct work_head wq_dqueue; /* delayed work to run now */
89 SDT_PROBE_DEFINE2(sdt, linux, work, acquire,
90 "struct work_struct *"/*work*/, "struct workqueue_struct *"/*wq*/);
91 SDT_PROBE_DEFINE2(sdt, linux, work, release,
92 "struct work_struct *"/*work*/, "struct workqueue_struct *"/*wq*/);
93 SDT_PROBE_DEFINE2(sdt, linux, work, queue,
94 "struct work_struct *"/*work*/, "struc
405 struct work_struct marker, *work; local
561 INIT_WORK(struct work_struct *work, void (*fn)(struct work_struct *)) argument
576 work_claimed(struct work_struct *work, struct workqueue_struct *wq) argument
592 work_pending(const struct work_struct *work) argument
605 work_queue(struct work_struct *work) argument
623 acquire_work(struct work_struct *work, struct workqueue_struct *wq) argument
656 release_work(struct work_struct *work, struct workqueue_struct *wq) argument
686 schedule_work(struct work_struct *work) argument
704 queue_work(struct workqueue_struct *wq, struct work_struct *work) argument
741 cancel_work(struct work_struct *work) argument
790 cancel_work_sync(struct work_struct *work) argument
840 wait_for_current_work(struct work_struct *work, struct workqueue_struct *wq) argument
1441 flush_work_cb(struct work_struct *work) argument
1522 flush_work(struct work_struct *work) argument
[all...]
/netbsd-current/sys/external/bsd/drm2/dist/include/drm/
H A Ddrm_flip_work.h38 * Util to queue up work to run from work-queue context after flip/vblank.
50 * @work: the flip work
53 * Callback function to be called for each of the queue'd work items after
56 typedef void (*drm_flip_func_t)(struct drm_flip_work *work, void *val);
59 * struct drm_flip_task - flip work task
69 * struct drm_flip_work - flip work queue
87 void drm_flip_work_queue_task(struct drm_flip_work *work,
89 void drm_flip_work_queue(struct drm_flip_work *work, voi
[all...]
/netbsd-current/external/mit/libuv/dist/include/uv/
H A Dthreadpool.h31 void (*work)(struct uv__work *w); member in struct:uv__work
/netbsd-current/external/bsd/wpa/dist/src/crypto/
H A Ddes-internal.c320 u32 work, right, leftt; local
326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
327 right ^= work;
328 leftt ^= (work << 4);
330 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
331 right ^= work;
332 leftt ^= (work << 16);
334 work = ((right >> 2) ^ leftt) & 0x33333333L;
335 leftt ^= work;
336 right ^= (work <<
403 u32 ek[32], work[2]; local
437 u32 work[2]; local
448 u32 work[2]; local
471 u32 work[2]; local
485 u32 work[2]; local
[all...]
/netbsd-current/sys/external/bsd/drm2/i915drm/
H A Di915_pci.h41 struct work work; member in union:i915drmkms_task::__anon2
/netbsd-current/sys/external/bsd/drm2/nouveau/
H A Dnouveau_pci.h41 struct work work; member in union:nouveau_pci_task::__anon3
/netbsd-current/sys/external/bsd/drm2/radeon/
H A Dradeon_task.h41 struct work work; member in union:radeon_task::__anon4
/netbsd-current/sys/external/bsd/drm2/amdgpu/
H A Damdgpu_task.h41 struct work work; member in union:amdgpu_task::__anon1
/netbsd-current/sys/external/bsd/drm2/vmwgfx/
H A Dvmwgfx_task.h38 struct work work; member in union:vmwgfx_task::__anon5
/netbsd-current/external/bsd/libarchive/dist/libarchive/
H A Darchive_write_set_format_shar.c58 struct archive_string work; member in struct:shar
121 archive_string_init(&shar->work);
166 archive_strcat(&shar->work, "#!/bin/sh\n");
167 archive_strcat(&shar->work, "# This is a shell archive\n");
207 archive_string_sprintf(&shar->work, "echo x %s\n", shar->quoted_name.s);
222 archive_strcat(&shar->work, "mkdir -p ");
223 shar_quote(&shar->work, p, 1);
224 archive_strcat(&shar->work,
235 archive_strcat(&shar->work, "mkdir -p ");
236 shar_quote(&shar->work,
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/lsan/
H A Dlsan_mac.cc139 void dispatch_async(dispatch_queue_t dq, void (^work)(void));
141 void (^work)(void));
143 void (^work)(void));
145 void (^work)(void));
147 void (^work)(void));
150 #define GET_LSAN_BLOCK(work) \
155 work(); \
158 INTERCEPTOR(void, dispatch_async, dispatch_queue_t dq, void (^work)(void)) { argument
159 GET_LSAN_BLOCK(work);
164 dispatch_queue_t dq, void (^work)(voi
163 INTERCEPTOR(void, dispatch_group_async, dispatch_group_t dg, dispatch_queue_t dq, void (^work)(void)) argument
169 INTERCEPTOR(void, dispatch_after, dispatch_time_t when, dispatch_queue_t queue, void (^work)(void)) argument
175 INTERCEPTOR(void, dispatch_source_set_cancel_handler, dispatch_source_t ds, void (^work)(void)) argument
185 INTERCEPTOR(void, dispatch_source_set_event_handler, dispatch_source_t ds, void (^work)(void)) argument
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/lsan/
H A Dlsan_mac.cc137 void dispatch_async(dispatch_queue_t dq, void (^work)(void));
139 void (^work)(void));
141 void (^work)(void));
143 void (^work)(void));
145 void (^work)(void));
148 #define GET_LSAN_BLOCK(work) \
153 work(); \
156 INTERCEPTOR(void, dispatch_async, dispatch_queue_t dq, void (^work)(void)) { argument
157 GET_LSAN_BLOCK(work);
162 dispatch_queue_t dq, void (^work)(voi
161 INTERCEPTOR(void, dispatch_group_async, dispatch_group_t dg, dispatch_queue_t dq, void (^work)(void)) argument
167 INTERCEPTOR(void, dispatch_after, dispatch_time_t when, dispatch_queue_t queue, void (^work)(void)) argument
173 INTERCEPTOR(void, dispatch_source_set_cancel_handler, dispatch_source_t ds, void (^work)(void)) argument
183 INTERCEPTOR(void, dispatch_source_set_event_handler, dispatch_source_t ds, void (^work)(void)) argument
[all...]
/netbsd-current/sys/external/bsd/drm2/linux/
H A Dlinux_firmware.c119 struct firmload_work *work = container_of(wk, struct firmload_work, local
125 ret = request_firmware(&fw, work->flw_name, work->flw_device);
130 (*work->flw_callback)(fw, work->flw_cookie);
140 if (work->flw_module)
141 module_rele(work->flw_module);
150 struct firmload_work *work; local
153 work = kzalloc(sizeof(*work), gf
[all...]
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/lsan/
H A Dlsan_mac.cpp138 void dispatch_async(dispatch_queue_t dq, void (^work)(void));
140 void (^work)(void));
142 void (^work)(void));
144 void (^work)(void));
146 void (^work)(void));
149 #define GET_LSAN_BLOCK(work) \
154 work(); \
157 INTERCEPTOR(void, dispatch_async, dispatch_queue_t dq, void (^work)(void)) { argument
158 GET_LSAN_BLOCK(work);
163 dispatch_queue_t dq, void (^work)(voi
162 INTERCEPTOR(void, dispatch_group_async, dispatch_group_t dg, dispatch_queue_t dq, void (^work)(void)) argument
168 INTERCEPTOR(void, dispatch_after, dispatch_time_t when, dispatch_queue_t queue, void (^work)(void)) argument
174 INTERCEPTOR(void, dispatch_source_set_cancel_handler, dispatch_source_t ds, void (^work)(void)) argument
184 INTERCEPTOR(void, dispatch_source_set_event_handler, dispatch_source_t ds, void (^work)(void)) argument
[all...]
/netbsd-current/distrib/sparc/instfs/
H A DMakefile16 WORKDIR= ${MINIROOTDIR}/work
17 WORKBUILT= ${MINIROOTDIR}/work.built
20 ${WORKSPEC}: ${MINIROOTDIR}/work.spec
/netbsd-current/sys/netinet/
H A Dwqinput.c67 struct work wwl_work;
78 static void wqinput_work(struct work *, void *);
205 struct wqinput_work *work; local
209 work = wwl->wwl_head;
210 if (work != NULL) {
213 wwl->wwl_head = work->ww_next;
214 work->ww_next = NULL;
222 return work;
226 wqinput_work(struct work *wk, void *arg)
229 struct wqinput_work *work; local
256 wqinput_work_put(struct wqinput_worklist *wwl, struct wqinput_work *work) argument
271 struct wqinput_work *work; local
[all...]

Completed in 376 milliseconds

1234567891011>>