| /src/external/mpl/bind/dist/lib/isc/ |
| work.c | 1 /* $NetBSD: work.c,v 1.4 2026/04/08 00:16:16 christos Exp $ */ 12 * See the COPYRIGHT file distributed with this work for additional 23 #include <isc/work.h> 29 isc_work_t *work = uv_req_get_data((uv_req_t *)req); local 35 work->work_cb(work->cbarg); 44 isc_work_t *work = uv_req_get_data((uv_req_t *)req); local 45 isc_loop_t *loop = work->loop; 49 work->after_work_cb(work->cbarg) 59 isc_work_t *work = NULL; local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/ |
| drm_flip_work.c | 36 * 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, 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: the flip-wor 121 struct drm_flip_work *work = container_of(w, struct drm_flip_work, worker); local [all...] |
| /src/sys/sys/ |
| workqueue.h | 39 * 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 *);
|
| /src/external/bsd/atf/dist/atf-sh/ |
| tp_test.sh | 38 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
|
| /src/external/bsd/pcc/ |
| prepare-import.sh | 20 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...] |
| /src/external/bsd/openldap/ |
| Makefile | 40 configure: work/config.status .PHONY 42 work/config.status: ${LDAP_BUILDDIR}/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/doc/man -name '*.[0-9].tmp'` ; do [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| data-streamer.cc | 31 /* Pack WORK into BP in a variant of uleb format. */ 34 bp_pack_var_len_unsigned (struct bitpack_d *bp, unsigned HOST_WIDE_INT work) 38 unsigned int half_byte = (work & 0x7); 39 work >>= 3; 40 if (work != 0) 46 while (work != 0); 50 /* Pack WORK into BP in a variant of sleb format. */ 53 bp_pack_var_len_int (struct bitpack_d *bp, HOST_WIDE_INT work) 59 half_byte = (work & 0x7); 61 work >>= 3 [all...] |
| data-streamer-out.cc | 206 /* Write an unsigned HOST_WIDE_INT value WORK to OB->main_stream. */ 209 streamer_write_uhwi (struct output_block *ob, unsigned HOST_WIDE_INT work) 211 streamer_write_uhwi_stream (ob->main_stream, work); 215 /* Write a HOST_WIDE_INT value WORK to OB->main_stream. */ 218 streamer_write_hwi (struct output_block *ob, HOST_WIDE_INT work) 220 streamer_write_hwi_stream (ob->main_stream, work); 223 /* Write a poly_uint64 value WORK to OB->main_stream. */ 226 streamer_write_poly_uint64 (struct output_block *ob, poly_uint64 work) 229 streamer_write_uhwi_stream (ob->main_stream, work.coeffs[i]); 232 /* Write a poly_int64 value WORK to OB->main_stream. * [all...] |
| /src/sys/external/bsd/common/linux/ |
| linux_work.c | 58 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*/, "struct workqueue_struct *"/*wq*/) 405 struct work_struct marker, *work; local [all...] |
| /src/sys/external/bsd/drm2/dist/include/drm/ |
| drm_flip_work.h | 38 * 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, void *val) [all...] |
| /src/external/mit/libuv/dist/include/uv/ |
| threadpool.h | 31 void (*work)(struct uv__work *w); member in struct:uv__work
|
| /src/external/bsd/wpa/dist/src/crypto/ |
| des-internal.c | 320 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 << 2) 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...] |
| /src/sys/external/bsd/drm2/amdgpu/ |
| amdgpu_task.h | 41 struct work work; member in union:amdgpu_task::__anon4280
|
| /src/sys/external/bsd/drm2/i915drm/ |
| i915_pci.h | 41 struct work work; member in union:i915drmkms_task::__anon6009
|
| /src/sys/external/bsd/drm2/nouveau/ |
| nouveau_pci.h | 41 struct work work; member in union:nouveau_pci_task::__anon6034
|
| /src/sys/external/bsd/drm2/radeon/ |
| radeon_task.h | 41 struct work work; member in union:radeon_task::__anon6035
|
| /src/sys/external/bsd/drm2/vmwgfx/ |
| vmwgfx_task.h | 38 struct work work; member in union:vmwgfx_task::__anon6037
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_write_set_format_shar.c | 58 struct archive_string work; member in struct:shar 121 archive_string_init(&shar->work); 168 archive_strcat(&shar->work, "#!/bin/sh\n"); 169 archive_strcat(&shar->work, "# This is a shell archive\n"); 209 archive_string_sprintf(&shar->work, "echo x %s\n", shar->quoted_name.s); 228 archive_strcat(&shar->work, "mkdir -p "); 229 shar_quote(&shar->work, p, 1); 230 archive_strcat(&shar->work, 241 archive_strcat(&shar->work, "mkdir -p "); 242 shar_quote(&shar->work, p, 1) [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
| lsan_mac.cc | 139 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)) { 159 GET_LSAN_BLOCK(work); 164 dispatch_queue_t dq, void (^work)(void)) [all...] |
| /src/sys/external/bsd/drm2/linux/ |
| linux_firmware.c | 119 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), gfp) [all...] |
| /src/external/gpl3/gcc/dist/libsanitizer/lsan/ |
| lsan_mac.cpp | 137 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)) { 157 GET_LSAN_BLOCK(work); 162 dispatch_queue_t dq, void (^work)(void)) [all...] |
| /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/ |
| lsan_mac.cpp | 138 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)) { 158 GET_LSAN_BLOCK(work); 163 dispatch_queue_t dq, void (^work)(void)) [all...] |
| /src/distrib/sparc/instfs/ |
| Makefile | 16 WORKDIR= ${MINIROOTDIR}/work 17 WORKBUILT= ${MINIROOTDIR}/work.built 20 ${WORKSPEC}: ${MINIROOTDIR}/work.spec
|
| /src/sys/netinet/ |
| wqinput.c | 67 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 271 struct wqinput_work *work; local [all...] |
| /src/external/gpl3/binutils/dist/gas/ |
| flonum-mult.c | 82 unsigned long work; 120 work = carry; 129 A, a->low[A], B, b->low[B], work); 135 work += (unsigned long) a->low[A] * (unsigned long) b->low[B]; 136 carry += work >> LITTLENUM_NUMBER_OF_BITS; 137 work &= LITTLENUM_MASK; 139 printf ("work=%08x carry=%04x\n", work, carry); 143 significant |= work; 148 product->low[P] = work; 81 unsigned long work; local [all...] |