| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.linespec/ |
| keywords.c | 19 task (int task) function 21 return task - 1; 27 return task (thread) + 1;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.linespec/ |
| keywords.c | 19 task (int task) function 21 return task - 1; 27 return task (thread) + 1;
|
| /src/external/mpl/dhcp/bind/dist/lib/isc/ |
| task.c | 1 /* $NetBSD: task.c,v 1.1 2024/02/18 20:57:50 christos Exp $ */ 19 * XXXRTH Need to document the states a task can be in, and the rules 39 #include <isc/task.h> 56 * Task manager is built around 'as little locking as possible' concept. 57 * Each thread has his own queue of tasks to be run, if a task is in running 58 * state it will stay on the runner it's currently on, if a task is in idle 62 * To make load even some tasks (from task pools) are bound to specific 69 fprintf(stderr, "task %p thread %zu: %s\n", task, isc_tid_v, (m)) 71 fprintf(stderr, "task %p thread %zu: %s\n", (t), isc_tid_v, (m) 206 isc_task_t *task = NULL; local 387 isc_task_t *task; local 505 isc_task_t *task; local 1033 isc_task_t *task; local 1318 isc_task_t *task = NULL; local 1409 isc_task_t *task = NULL; local [all...] |
| /src/external/bsd/ntp/dist/libntp/lib/isc/ |
| task.c | 1 /* $NetBSD: task.c,v 1.2 2024/08/18 20:47:14 christos Exp $ */ 27 * XXXRTH Need to document the states a task can be in, and the rules 40 #include <isc/task.h> 53 * when built without threads we share a single global task manager and use 54 * an integrated event loop for socket, timer, and other generic task events. 56 * we don't use either of them: an application can have multiple task managers 72 #define XTRACE(m) fprintf(stderr, "task %p thread %lu: %s\n", \ 73 task, isc_thread_self(), (m)) 74 #define XTTRACE(t, m) fprintf(stderr, "task %p thread %lu: %s\n", \ 110 /* Locked by task lock. * 335 isc__task_t *task; local 508 isc__task_t *task; local 563 isc__task_t *task = (isc__task_t *)task0; local 606 isc__task_t *task; local 683 isc__task_t *task = (isc__task_t *)task0; local 726 isc__task_t *task = (isc__task_t *)task0; local 800 isc__task_t *task = (isc__task_t *)task0; local 838 isc__task_t *task = (isc__task_t *)task0; local 870 isc__task_t *task = (isc__task_t *)task0; local 887 isc__task_t *task = (isc__task_t *)task0; local 896 isc__task_t *task = (isc__task_t *)task0; local 905 isc__task_t *task = (isc__task_t *)task0; local 948 isc__task_t *task; local 981 isc__task_t *task; local 1460 isc__task_t *task; local 1645 isc__task_t *task = (isc__task_t *)task0; local 1667 isc__task_t *task = (isc__task_t *)task0; local 1683 isc__task_t *task = (isc__task_t *)task0; local 1710 isc__task_t *task = (isc__task_t *)task0; local 1728 isc__task_t *task = (isc__task_t *)t; local 1739 isc__task_t *task; local [all...] |
| ondestroy.c | 31 #include <isc/task.h> 44 isc_ondestroy_register(isc_ondestroy_t *ondest, isc_task_t *task, 51 REQUIRE(task != NULL); 58 isc_task_attach(task, &thetask); 70 isc_task_t *task; local 78 task = eventp->ev_sender; 81 isc_task_sendanddetach(&task, &eventp);
|
| /src/external/bsd/ntp/dist/libntp/lib/isc/include/isc/ |
| task.h | 1 /* $NetBSD: task.h,v 1.2 2024/08/18 20:47:15 christos Exp $ */ 29 /*! \file isc/task.h 30 * \brief The task system provides a lightweight execution context, which is 33 * When a task's event queue is non-empty, the 34 * task is runnable. A small work crew of threads, typically one per CPU, 58 * Events which have been queued for a task but not delivered may be removed 59 * from the task's event queue by purging or unsending. 111 /*% Task and task manager methods */ 126 void (*send)(isc_task_t *task, isc_event_t **eventp) [all...] |
| /src/external/mit/libuv/dist/test/ |
| runner.c | 27 #include "task.h" 75 task_entry_t* task; local 80 for (task = TASKS; task->main; task++, actual++) { 81 if (!task->is_helper) { 96 for (task = TASKS; task->main; task++) { 97 if (task->is_helper) 164 task_entry_t* task; local 366 task_entry_t* task; local 402 const task_entry_t* task; local [all...] |
| /src/external/gpl3/gcc/dist/libgomp/ |
| taskloop.c | 29 /* Called when encountering an explicit task directive. If IF_CLAUSE is 30 false, then we must not delay in executing the task. If UNTIED is true, 31 then the task may be executed by any member of the team. */ 43 /* If pthread_mutex_* is used for omp_*lock*, then each task must be 184 && thr->task 185 && thr->task->taskgroup) 187 if (thr->task->taskgroup->cancelled) 189 if (thr->task->taskgroup->workshare 190 && thr->task->taskgroup->prev 191 && thr->task->taskgroup->prev->cancelled 216 struct gomp_task task[num_tasks]; local 263 struct gomp_task task; local 303 struct gomp_task *task local 365 struct gomp_task *task = tasks[i]; local [all...] |
| task.c | 26 /* This file handles the maintenance of tasks in response to task 63 /* Create a new task data structure. */ 66 gomp_init_task (struct gomp_task *task, struct gomp_task *parent_task, 71 overhead of task creation low. In the nqueens-1.c test, for a 77 task->parent = parent_task; 78 priority_queue_init (&task->children_queue); 79 task->taskgroup = NULL; 80 task->dependers = NULL; 81 task->depend_hash = NULL; 82 task->taskwait = NULL 101 struct gomp_task *task = thr->task; local 538 struct gomp_task task; local 611 struct gomp_task *task; local 850 struct gomp_task *task = ttask->task; local 894 struct gomp_task *task; local 1371 struct gomp_task *task = child_task->dependers->elem[i]; local 1556 struct gomp_task *task = thr->task; local 1702 struct gomp_task *task = thr->task; local 1915 struct gomp_task *task = thr->task; local 2190 struct gomp_task *task = thr->task; local 2206 struct gomp_task *task = thr->task; local 2467 struct gomp_task *task = thr->task; local 2525 struct gomp_task *task; local 2565 struct gomp_task *task = thr->task; local 2641 struct gomp_task *task = thr->task; local 2652 struct gomp_task *task; local 2668 struct gomp_task *task = thr->task; local 2694 struct gomp_task *task = thr->task; local 2703 struct gomp_task *task = (struct gomp_task *) event; local [all...] |
| /src/external/gpl3/gcc.old/dist/libgomp/ |
| taskloop.c | 29 /* Called when encountering an explicit task directive. If IF_CLAUSE is 30 false, then we must not delay in executing the task. If UNTIED is true, 31 then the task may be executed by any member of the team. */ 43 /* If pthread_mutex_* is used for omp_*lock*, then each task must be 184 && thr->task 185 && thr->task->taskgroup) 187 if (thr->task->taskgroup->cancelled) 189 if (thr->task->taskgroup->workshare 190 && thr->task->taskgroup->prev 191 && thr->task->taskgroup->prev->cancelled 216 struct gomp_task task[num_tasks]; local 263 struct gomp_task task; local 303 struct gomp_task *task local 365 struct gomp_task *task = tasks[i]; local [all...] |
| task.c | 26 /* This file handles the maintenance of tasks in response to task 63 /* Create a new task data structure. */ 66 gomp_init_task (struct gomp_task *task, struct gomp_task *parent_task, 71 overhead of task creation low. In the nqueens-1.c test, for a 77 task->parent = parent_task; 78 priority_queue_init (&task->children_queue); 79 task->taskgroup = NULL; 80 task->dependers = NULL; 81 task->depend_hash = NULL; 82 task->taskwait = NULL 100 struct gomp_task *task = thr->task; local 396 struct gomp_task task; local 469 struct gomp_task *task; local 695 struct gomp_task *task = ttask->task; local 741 struct gomp_task *task; local 1216 struct gomp_task *task = child_task->dependers->elem[i]; local 1369 struct gomp_task *task = thr->task; local 1515 struct gomp_task *task = thr->task; local 1718 struct gomp_task *task = thr->task; local 1949 struct gomp_task *task = thr->task; local 1965 struct gomp_task *task = thr->task; local 2226 struct gomp_task *task = thr->task; local 2284 struct gomp_task *task; local 2324 struct gomp_task *task = thr->task; local 2400 struct gomp_task *task = thr->task; local 2411 struct gomp_task *task; local 2427 struct gomp_task *task = thr->task; local 2452 struct gomp_task *task = (struct gomp_task *) event; local [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/ |
| task.h | 1 /* $NetBSD: task.h,v 1.1 2024/02/18 20:57:54 christos Exp $ */ 22 /*! \file isc/task.h 23 * \brief The task system provides a lightweight execution context, which is 26 * When a task's event queue is non-empty, the 27 * task is runnable. A small work crew of threads, typically one per CPU, 51 * Events which have been queued for a task but not delivered may be removed 52 * from the task's event queue by purging or unsending. 112 * Create a task, optionally bound to a particular threadid. 117 * before the task must yield to other tasks waiting to execute. If 118 * quantum is zero, then the default quantum of the task manager wil [all...] |
| /src/sys/external/bsd/drm2/dist/drm/ |
| drm_flip_work.c | 36 * drm_flip_work_allocate_task - allocate a flip-work task 37 * @data: data associated to the task 44 struct drm_flip_task *task; local 46 task = kzalloc(sizeof(*task), flags); 47 if (task) 48 task->data = data; 50 return task; 55 * drm_flip_work_queue_task - queue a specific task 57 * @task: the task to handl 83 struct drm_flip_task *task; local 126 struct drm_flip_task *task, *tmp; local [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| break-cond-parse.h | 22 task and force-condition flag, as accepted by the 'break' command, 23 extract the condition string, thread, inferior, task number, and the 24 force_condition flag, then set *COND_STRING, *THREAD, *INFERIOR, *TASK, 36 *INFERIOR is set to -1. If no task is found, *TASK is set to -1. If 49 int *thread, int *inferior, int *task,
|
| /src/external/gpl3/gdb/dist/gdb/ |
| break-cond-parse.h | 22 task and force-condition flag, as accepted by the 'break' command, 23 extract the condition string, thread, inferior, task number, and the 24 force_condition flag, then set *COND_STRING, *THREAD, *INFERIOR, *TASK, 36 *INFERIOR is set to -1. If no task is found, *TASK is set to -1. If 49 int *thread, int *inferior, int *task,
|
| /src/sbin/dmctl/ |
| dmctl.c | 152 libdm_task_t task; local 198 * Create libdm task, and pass it to command handler later. 202 task = libdm_task_create(cmdname); 204 (*commands[i].cmd_func)(argc, argv, task); 214 dmctl_get_version(int argc __unused, char *argv[] __unused, libdm_task_t task) 218 (void)libdm_task_get_cmd_version(task, ver, sizeof(ver)); 222 if (libdm_task_run(task) != 0) 225 (void)libdm_task_get_cmd_version(task, ver, 3); 228 libdm_task_destroy(task); 236 dmctl_get_targets(int argc __unused, char *argv[] __unused, libdm_task_t task) [all...] |
| /src/sys/external/bsd/drm2/amdgpu/ |
| amdgpu_task.h | 47 amdgpu_task_init(struct amdgpu_task *task, void (*fn)(struct amdgpu_task *)) 50 task->rt_fn = fn;
|
| /src/sys/external/bsd/drm2/i915drm/ |
| i915_pci.h | 47 i915drmkms_task_init(struct i915drmkms_task *task, 51 task->ift_fn = fn;
|
| /src/sys/external/bsd/drm2/nouveau/ |
| nouveau_pci.h | 47 nouveau_pci_task_init(struct nouveau_pci_task *task, 51 task->nt_fn = fn;
|
| /src/sys/external/bsd/drm2/radeon/ |
| radeon_task.h | 47 radeon_task_init(struct radeon_task *task, void (*fn)(struct radeon_task *)) 50 task->rt_fn = fn;
|
| /src/sys/external/bsd/drm2/vmwgfx/ |
| vmwgfx_task.h | 44 vmwgfx_task_init(struct vmwgfx_task *task, void (*fn)(struct vmwgfx_task *)) 47 task->vt_fn = fn;
|
| /src/sys/dev/sdmmc/ |
| ld_sdmmc.c | 71 #define LD_SDMMC_MAXTASKCNT 8 /* number of tasks in task pool */ 76 struct sdmmc_task task; member in struct:ld_sdmmc_task 130 struct ld_sdmmc_task *task; local 134 if (sc->sc_dying || (task = TAILQ_FIRST(&sc->sc_freeq)) == NULL) 136 TAILQ_REMOVE(&sc->sc_freeq, task, task_entry); 137 TAILQ_INSERT_TAIL(&sc->sc_xferq, task, task_entry); 138 KASSERT(task->task_bp == NULL); 139 KASSERT(task->task_errorp == NULL); 141 return task; 145 ld_sdmmc_task_put(struct ld_sdmmc_softc *sc, struct ld_sdmmc_task *task) 248 struct ld_sdmmc_task *task; local 357 struct ld_sdmmc_task *task; local 404 struct ld_sdmmc_task *task; local 429 struct ld_sdmmc_task *task = (struct ld_sdmmc_task *)arg; local 445 struct ld_sdmmc_task *task = (struct ld_sdmmc_task *)arg; local 527 struct ld_sdmmc_task *task = arg; local 559 struct ld_sdmmc_task *task; local 587 struct ld_sdmmc_task *task = arg; local 611 struct ld_sdmmc_task *task; local [all...] |
| /src/external/bsd/zstd/dist/contrib/pzstd/utils/ |
| ThreadPool.h | 31 std::function<void()> task; 32 while (tasks_.pop(task)) { 33 task(); 48 * Adds `task` to the queue of tasks to execute. Since `task` is a 52 * @param task The task to execute. 54 void add(std::function<void()> task) { 55 tasks_.push(std::move(task));
|
| /src/external/gpl3/gcc/dist/libgomp/config/nvptx/ |
| team.c | 134 struct gomp_task *task = thr->task; local 136 gomp_finish_task (task); 152 struct gomp_task *task; local 159 task = thr->task; 160 icv = task ? &task->icv : &gomp_global_icv; 176 thr->task = &team->implicit_task[0]; 178 gomp_init_task (thr->task, task, icv) [all...] |
| /src/external/gpl3/gcc.old/dist/libgomp/config/gcn/ |
| team.c | 142 struct gomp_task *task = thr->task; local 144 gomp_finish_task (task); 157 struct gomp_task *task; local 164 task = thr->task; 165 icv = task ? &task->icv : &gomp_global_icv; 181 thr->task = &team->implicit_task[0]; 183 gomp_init_task (thr->task, task, icv) [all...] |