HomeSort by: relevance | last modified time | path
    Searched defs:pending (Results 1 - 25 of 370) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/drm2/dist/drm/qxl/
qxl_irq.c 41 uint32_t pending; local
43 pending = xchg(&qdev->ram_header->int_pending, 0);
45 if (!pending)
50 if (pending & QXL_INTERRUPT_DISPLAY) {
55 if (pending & QXL_INTERRUPT_CURSOR) {
59 if (pending & QXL_INTERRUPT_IO_CMD) {
63 if (pending & QXL_INTERRUPT_ERROR) {
71 if (pending & QXL_INTERRUPT_CLIENT_MONITORS_CONFIG) {
qxl_irq.c 41 uint32_t pending; local
43 pending = xchg(&qdev->ram_header->int_pending, 0);
45 if (!pending)
50 if (pending & QXL_INTERRUPT_DISPLAY) {
55 if (pending & QXL_INTERRUPT_CURSOR) {
59 if (pending & QXL_INTERRUPT_IO_CMD) {
63 if (pending & QXL_INTERRUPT_ERROR) {
71 if (pending & QXL_INTERRUPT_CLIENT_MONITORS_CONFIG) {
  /src/sys/arch/evbmips/evbmips/
interrupt.c 54 uint32_t pending; local
65 while (ppl < (ipl = splintr(&pending))) {
72 KASSERT(pending != 0);
81 if (pending & MIPS_INT_MASK_5) {
88 pending ^= MIPS_INT_MASK_5;
92 if (pending != 0) {
94 evbmips_iointr(ipl, pending, &cf);
interrupt.c 54 uint32_t pending; local
65 while (ppl < (ipl = splintr(&pending))) {
72 KASSERT(pending != 0);
81 if (pending & MIPS_INT_MASK_5) {
88 pending ^= MIPS_INT_MASK_5;
92 if (pending != 0) {
94 evbmips_iointr(ipl, pending, &cf);
  /src/sys/arch/pmax/pmax/
interrupt.c 90 uint32_t pending; local
94 while (ppl < (ipl = splintr(&pending))) {
96 if (pending & (MIPS_INT_MASK_0|MIPS_INT_MASK_1|MIPS_INT_MASK_2|
98 (*platform.iointr)(status, pc, pending);
102 if (pending & MIPS_INT_MASK_5) {
interrupt.c 90 uint32_t pending; local
94 while (ppl < (ipl = splintr(&pending))) {
96 if (pending & (MIPS_INT_MASK_0|MIPS_INT_MASK_1|MIPS_INT_MASK_2|
98 (*platform.iointr)(status, pc, pending);
102 if (pending & MIPS_INT_MASK_5) {
  /src/sys/arch/algor/algor/
algor_intr.c 105 evbmips_iointr(int ipl, uint32_t pending, struct clockframe *cf)
107 (*algor_iointr)(ipl, cf->pc, pending);
125 uint32_t pending; local
130 while (ppl < (ipl = splintr(&pending))) {
132 if (pending & MIPS_INT_MASK_5) {
141 if (pending & (MIPS_INT_MASK_0|MIPS_INT_MASK_1|MIPS_INT_MASK_2|
144 (*algor_iointr)(ipl, pc, pending);
algor_intr.c 105 evbmips_iointr(int ipl, uint32_t pending, struct clockframe *cf)
107 (*algor_iointr)(ipl, cf->pc, pending);
125 uint32_t pending; local
130 while (ppl < (ipl = splintr(&pending))) {
132 if (pending & MIPS_INT_MASK_5) {
141 if (pending & (MIPS_INT_MASK_0|MIPS_INT_MASK_1|MIPS_INT_MASK_2|
144 (*algor_iointr)(ipl, pc, pending);
  /src/sys/arch/riscv/riscv/
interrupt.c 150 csr_sip_clear(SIP_SSIP); /* clean pending interrupt status */
152 unsigned long pending; local
153 while ((pending = atomic_swap_ulong(&ci->ci_request_ipis, 0)) != 0) {
155 atomic_or_ulong(&ci->ci_active_ipis, pending);
157 ipi_process(ci, pending);
159 atomic_and_ulong(&ci->ci_active_ipis, pending);
interrupt.c 150 csr_sip_clear(SIP_SSIP); /* clean pending interrupt status */
152 unsigned long pending; local
153 while ((pending = atomic_swap_ulong(&ci->ci_request_ipis, 0)) != 0) {
155 atomic_or_ulong(&ci->ci_active_ipis, pending);
157 ipi_process(ci, pending);
159 atomic_and_ulong(&ci->ci_active_ipis, pending);
  /src/sys/arch/sgimips/sgimips/
cpu.c 107 uint32_t pending; local
119 while (ppl < (ipl = splintr(&pending))) {
122 if (pending & MIPS_INT_MASK_5) {
123 (void)(*platform.intr5)(pc, status, pending);
127 if (pending & MIPS_INT_MASK_4) {
128 (void)(*platform.intr4)(pc, status, pending);
132 if (pending & MIPS_INT_MASK_3) {
133 (void)(*platform.intr3)(pc, status, pending);
137 if (pending & MIPS_INT_MASK_2) {
138 (void)(*platform.intr2)(pc, status, pending);
    [all...]
cpu.c 107 uint32_t pending; local
119 while (ppl < (ipl = splintr(&pending))) {
122 if (pending & MIPS_INT_MASK_5) {
123 (void)(*platform.intr5)(pc, status, pending);
127 if (pending & MIPS_INT_MASK_4) {
128 (void)(*platform.intr4)(pc, status, pending);
132 if (pending & MIPS_INT_MASK_3) {
133 (void)(*platform.intr3)(pc, status, pending);
137 if (pending & MIPS_INT_MASK_2) {
138 (void)(*platform.intr2)(pc, status, pending);
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/uc/
intel_guc_ct.h 56 spinlock_t lock; /* protects pending requests list */
57 struct list_head pending; /* requests waiting for response */ member in struct:intel_guc_ct::__anon5003
intel_guc_ct.h 56 spinlock_t lock; /* protects pending requests list */
57 struct list_head pending; /* requests waiting for response */ member in struct:intel_guc_ct::__anon5003
  /src/sys/external/bsd/drm2/include/linux/
timer.h 64 int pending; local
66 pending = callout_pending(&timer->tl_callout);
68 return pending;
88 * callout was EXPIRED.', meaning it is no longer pending.
103 * pending timer or not.'
106 * callout was EXPIRED.', meaning it is no longer pending.
timer.h 64 int pending; local
66 pending = callout_pending(&timer->tl_callout);
68 return pending;
88 * callout was EXPIRED.', meaning it is no longer pending.
103 * pending timer or not.'
106 * callout was EXPIRED.', meaning it is no longer pending.
  /src/external/mit/libuv/dist/docs/code/multi-echo-server/
worker.c 61 fprintf(stderr, "No pending count\n");
65 uv_handle_type pending = uv_pipe_pending_type(pipe); local
66 assert(pending == UV_TCP);
worker.c 61 fprintf(stderr, "No pending count\n");
65 uv_handle_type pending = uv_pipe_pending_type(pipe); local
66 assert(pending == UV_TCP);
  /src/sys/arch/arm/marvell/
mvsoc_intr.c 133 uint32_t pending; local
135 pending =
138 if (pending == 0)
141 return pic_mark_pending_sources(pic, 0, pending);
mvsoc_intr.c 133 uint32_t pending; local
135 pending =
138 if (pending == 0)
141 return pic_mark_pending_sources(pic, 0, pending);
  /src/sys/arch/hpcarm/hpcarm/
softintr.c 104 register int pending, saved_cpsr; local
106 pending = 1;
107 __asm("swp %0, %0, [%1]" : "+r" (pending) : "r" (&sh->sh_pending));
109 if (pending)
  /src/tests/lib/libc/sys/
t_aio_cancel.c 77 int pending, rv; local
80 pending = 0;
91 pending = 1;
95 if (!pending) {
t_aio_rw.c 77 int pending, rv, error; local
80 pending = 0;
89 pending = 1;
93 if (!pending) {
  /src/external/bsd/openldap/dist/servers/slapd/
ctxcsn.c 188 struct slap_csn_entry *pending; local
191 pending = (struct slap_csn_entry *) ch_calloc( 1,
194 Debug( LDAP_DEBUG_SYNC, "slap_queue_csn: queueing %p %s\n", pending, csn->bv_val );
196 ber_dupbv( &pending->ce_csn, csn );
197 ber_bvreplace_x( &op->o_csn, &pending->ce_csn, op->o_tmpmemctx );
198 pending->ce_sid = slap_parse_csn_sid( csn );
199 pending->ce_op = op;
200 pending->ce_state = SLAP_CSN_PENDING;
204 pending, ce_csn_link );
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
sigprocmask.c 91 /* Set of currently blocked and pending signals. */
105 sigset_t pending = 0; local
110 pending |= 1U << sig;
111 return pending;

Completed in 46 milliseconds

1 2 3 4 5 6 7 8 91011>>