HomeSort by: relevance | last modified time | path
    Searched defs:dispatcher (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/arch/playstation2/ee/
intc.c 87 struct _ipl_dispatcher *dispatcher; local
106 SLIST_FOREACH(dispatcher, &__intc_dispatcher_head, link) {
107 if (dispatcher->bit & dispatch) {
108 KDASSERT(dispatcher->func);
109 (*dispatcher->func)(dispatcher->arg);
110 dispatch &= ~dispatcher->bit;
162 struct _ipl_dispatcher *dispatcher = &__intc_dispatcher[ch]; local
167 KDASSERT(dispatcher->func == NULL);
170 dispatcher->func = func
209 struct _ipl_dispatcher *dispatcher = &__intc_dispatcher[ch]; local
    [all...]
dmac.c 116 struct _ipl_dispatcher *dispatcher; local
135 SLIST_FOREACH(dispatcher, &__dmac_dispatcher_head, link) {
136 if (dispatcher->bit & dispatch) {
137 KDASSERT(dispatcher->func);
138 (*dispatcher->func)(dispatcher->arg);
139 dispatch &= ~dispatcher->bit;
194 struct _ipl_dispatcher *dispatcher = &__dmac_dispatcher[ch]; local
198 KDASSERT(dispatcher->func == NULL);
201 dispatcher->func = func
241 struct _ipl_dispatcher *dispatcher = &__dmac_dispatcher[ch]; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/async/
async_local.h 34 async_fibre dispatcher; member in struct:async_ctx_st
  /src/crypto/external/bsd/openssl/dist/crypto/async/
async_local.h 34 async_fibre dispatcher; member in struct:async_ctx_st
  /src/crypto/external/bsd/openssl.old/dist/crypto/async/
async_local.h 34 async_fibre dispatcher; member in struct:async_ctx_st
  /src/sys/kern/
kern_threadpool.c 36 * jobs, together with a dispatcher thread that does not run jobs but
61 * | | <dispatcher 0> | | <dispatcher 1> | ... | <dispatcher n> | |
69 * | | <dispatcher n+1> | |
75 * XXX Why one dispatcher per CPU? I did that originally to avoid
78 * with a single dispatcher thread, at the expense of another pointer
80 * order for the dispatcher to schedule it correctly.
393 /* XXX dispatcher */
396 pool->tp_refcnt = 1; /* dispatcher's reference *
966 struct threadpool_thread *const dispatcher = arg; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/cp/
coroutines.cc 1696 destroy dispatcher should be used and then calls into the actor.
1701 the relevant dispatcher, and one representing the suspend point.
1936 /* Resume - so restart the dispatcher, since we do not know if this
2390 /* Build the dispatcher; for each await expression there is an odd entry
2457 /* Finish the destroy dispatcher. */
2470 tree dispatcher = begin_switch_stmt (); local
2471 finish_switch_cond (rat, dispatcher);
2498 /* Finish the resume dispatcher. */
2499 finish_switch_stmt (dispatcher);
  /src/external/gpl3/gcc/dist/gcc/
tree-cfg.cc 711 that the dispatcher's basic block, otherwise return NULL. */
740 basic_block *dispatcher = dispatcher_bbs + (computed_goto ? 1 : 0); local
747 dispatcher = dispatcher_bbs + 2 * bb_to_omp_idx[for_bb->index];
752 /* If the dispatcher has been created already, then there are basic
755 if (*dispatcher == NULL)
758 abnormal edges to this dispatcher. If there are none, return
774 /* Create the dispatcher bb. */
775 *dispatcher = create_basic_block (NULL, for_bb);
781 gimple_stmt_iterator gsi = gsi_start_bb (*dispatcher);
816 edge e = make_edge (bb, *dispatcher, EDGE_FALLTHRU)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/cp/
coroutines.cc 1487 destroy dispatcher should be used and then calls into the actor.
1492 the relevant dispatcher, and one representing the suspend point.
2249 /* Insert the prototype dispatcher. */
2255 tree dispatcher = begin_switch_stmt (); local
2256 finish_switch_cond (rat, dispatcher);
2289 /* Insert the prototype dispatcher. */
2290 finish_switch_stmt (dispatcher);
  /src/external/gpl3/gcc.old/dist/gcc/
tree-cfg.cc 708 that the dispatcher's basic block, otherwise return NULL. */
737 basic_block *dispatcher = dispatcher_bbs + (computed_goto ? 1 : 0); local
744 dispatcher = dispatcher_bbs + 2 * bb_to_omp_idx[for_bb->index];
749 /* If the dispatcher has been created already, then there are basic
752 if (*dispatcher == NULL)
755 abnormal edges to this dispatcher. If there are none, return
771 /* Create the dispatcher bb. */
772 *dispatcher = create_basic_block (NULL, for_bb);
778 gimple_stmt_iterator gsi = gsi_start_bb (*dispatcher);
813 edge e = make_edge (bb, *dispatcher, EDGE_FALLTHRU)
    [all...]

Completed in 37 milliseconds