Searched refs:pending (Results 76 - 100 of 382) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/amd64/vmm/intel/
H A Dvmx.h104 uint64_t pending; member in struct:pir_desc
/freebsd-11-stable/sys/arm/freescale/imx/
H A Dimx6_sdma.c86 int pending; local
92 pending = READ4(sc, SDMAARM_INTR);
95 WRITE4(sc, SDMAARM_INTR, pending);
98 if ((pending & (1 << i)) == 0)
/freebsd-11-stable/sys/dev/beri/virtio/
H A Dvirtio_block.c413 int pending; local
423 pending = htobe32(reg);
425 if (pending & Q_PFN) {
429 if (pending & Q_NOTIFY) {
/freebsd-11-stable/sys/dev/sfxge/
H A Dsfxge_tx.h232 unsigned int pending __aligned(CACHE_LINE_SIZE);
H A Dsfxge_ev.c76 if (txq->pending != txq->completed)
83 if (rxq->pending != rxq->completed)
126 id = rxq->pending & rxq->ptr_mask;
128 rxq->pending += delta;
160 if (rxq->pending - rxq->completed >= SFXGE_RX_BATCH)
301 id = txq->pending & txq->ptr_mask;
304 txq->pending += delta;
314 if (txq->pending - txq->completed >= SFXGE_TX_BATCH)
709 /* Perform any pending completion processing */
/freebsd-11-stable/sys/dev/ixl/
H A Dixlvc.c1127 TAILQ_INIT(&mgr->pending);
1195 if (TAILQ_EMPTY(&mgr->pending))
1198 cmd = TAILQ_FIRST(&mgr->pending);
1199 TAILQ_REMOVE(&mgr->pending, cmd, next);
1222 TAILQ_REMOVE(&mgr->pending, cmd, next);
1229 TAILQ_INSERT_TAIL(&mgr->pending, cmd, next);
1240 KASSERT(TAILQ_EMPTY(&mgr->pending) || mgr->current != NULL,
1241 ("ixlv: pending commands waiting but no command in progress"));
1250 while ((cmd = TAILQ_FIRST(&mgr->pending)) != NULL) {
1251 TAILQ_REMOVE(&mgr->pending, cm
[all...]
/freebsd-11-stable/sys/dev/cxgbe/
H A Dt4_filter.c62 uint32_t pending:1; /* filter action is pending firmware reply */ member in struct:filter_entry
570 busy += f[i].pending + f[i].valid;
588 f->pending = 1;
703 if (f->pending == 0) {
1013 if (f->pending) {
1030 f->pending = 1;
1035 if (f->pending == 0) {
1153 KASSERT(f->pending, ("%s: reply %d for filter[%u] that isn't pending
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.h97 Bytef *pending_buf; /* output still pending */
99 Bytef *pending_out; /* next pending byte to output to the stream */
100 uInt pending; /* nb of bytes in the pending buffer */ member in struct:internal_state
268 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}
/freebsd-11-stable/sys/kern/
H A Dsubr_rtc.c118 static void settime_task_func(void *arg, int pending);
135 settime_task_func(void *arg, int pending) argument
/freebsd-11-stable/sys/netpfil/ipfw/
H A Dip_dn_private.h164 struct mq pending; member in struct:dn_parms
393 void dummynet_task(void *context, int pending);
/freebsd-11-stable/sys/contrib/zlib/
H A Ddeflate.h103 Bytef *pending_buf; /* output still pending */
105 Bytef *pending_out; /* next pending byte to output to the stream */
106 ulg pending; /* nb of bytes in the pending buffer */ member in struct:internal_state
281 #define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);}
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector2.cpp61 Link pending[kMaxMutex]; member in struct:__sanitizer::DDPhysicalThread
367 pt->pending[npending++] = mtx->link[li];
370 Link link = pt->pending[--npending];
385 pt->pending[npending++] = Link(kEndId);
393 // FIXME(dvyukov): fast pending check?
395 pt->pending[npending++] = *link1;
/freebsd-11-stable/gnu/usr.bin/grep/
H A Dgrep.c538 static int pending; /* Pending lines of output. variable
662 /* Print pending lines of trailing context prior to LIM. Trailing context ends
669 while (pending > 0 && lastout < lim)
673 --pending;
679 pending = 0;
693 if (!out_quiet && pending > 0)
743 pending = out_quiet ? 0 : out_after;
839 pending = 0;
888 if (pending)
890 if((!outleft && !pending) || (nline
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dlin-lwp.c546 /* If we have a pending wait status for this thread, there is no
835 there's no SIGSTOP pending. */
844 /* Check whether PID has any pending signals in FLUSH_MASK. If so set
848 lin_lwp_has_pending (int pid, sigset_t *pending, sigset_t *flush_mask)
853 linux_proc_pending_signals (pid, pending, &blocked, &ignored);
859 if (sigismember (pending, i))
863 sigdelset (pending, i);
865 if (sigisemptyset (pending))
872 signals pending, and they are all in the flush mask, then arrange local
880 sigset_t pending, intersectio
840 lin_lwp_has_pending(int pid, sigset_t *pending, sigset_t *flush_mask) argument
[all...]
H A Dgdb-events.sh267 /* Deliver any pending events. */
523 /* Process any pending events. Because one of the deliveries could
524 bail out we move everything off of the pending queue onto an
H A Dbreakpoint.h391 /* Was breakpoint issued from a tty? Saved for the use of pending breakpoints. */
394 /* Flag value for pending breakpoint.
399 /* Is breakpoint pending on shlib loads? */ member in struct:breakpoint
400 int pending;
/freebsd-11-stable/sys/netpfil/ipfw/test/
H A Dmain.c27 uint32_t pending; member in struct:cfg_s
228 c->pending++;
236 c->pending--;
241 D("--- ouch, cannot operate on iteration %d, pending %d", i, c->pending);
656 if (c->state == 0 && c->pending >= (uint32_t)c->th_max)
658 else if (c->state == 1 && c->pending <= (uint32_t)c->th_min)
660 ND(1, "state %d pending %2d", c->state, c->pending);
/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dosm_pkey_mgr.c86 * Insert new pending pkey entry to the specific port pkey table
87 * pending pkeys. New entries are inserted at the back.
104 "Failed to allocate new pending pkey entry for node "
185 cl_qlist_insert_tail(&p_pkey_tbl->pending,
188 cl_qlist_insert_head(&p_pkey_tbl->pending,
420 process every pending pkey in order -
424 (osm_pending_pkey_t *) cl_qlist_remove_head(&p_pkey_tbl->pending);
426 (osm_pending_pkey_t *) cl_qlist_end(&p_pkey_tbl->pending)) {
451 cl_qlist_insert_tail(&p_pkey_tbl->pending,
454 (osm_pending_pkey_t *) cl_qlist_remove_head(&p_pkey_tbl->pending);
[all...]
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Dgas_query.c65 struct dl_list pending; /* struct gas_query_pending */ member in struct:gas_query
106 dl_list_init(&gas->pending);
187 dl_list_for_each_safe(query, next, &gas->pending,
199 dl_list_for_each(q, &gas->pending, struct gas_query_pending, list) {
553 wpa_printf(MSG_DEBUG, "GAS: No pending query found for " MACSTR
669 dl_list_for_each(q, &gas->pending, struct gas_query_pending, list) {
739 return -1; /* Too many pending queries */
843 dl_list_add(&gas->pending, &query->list);
866 dl_list_for_each(query, &gas->pending, struct gas_query_pending, list) {
869 /* The pending radi
[all...]
/freebsd-11-stable/sys/netgraph/bluetooth/hci/
H A Dng_hci_evnt.c264 * and the smallest number of pending packets
276 if (con->pending < min_pending) {
278 min_pending = con->pending;
331 winner->pending ++;
1131 con->pending -= p;
1132 if (con->pending < 0) {
1134 "%s: %s - pending packet counter is out of sync! " \
1135 "handle=%d, pending=%d, ncp=%d\n", __func__, NG_NODE_NAME(unit->node),
1136 con->con_handle, con->pending, p);
1138 con->pending
[all...]
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_work.c126 * [re-]queued. Else the work is already pending for completion.
161 * work was successfully [re-]queued. Else the work is already pending
211 linux_work_fn(void *context, int pending) argument
272 linux_delayed_work_fn(void *context, int pending) argument
285 linux_work_fn(&dwork->work, pending);
516 * This function returns true if the given work is pending, and not
/freebsd-11-stable/sys/dev/ce/
H A Dceddk.h145 int pending; member in struct:_ce_conf_req
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dr600_audio.c125 void r600_audio_update_hdmi(void *arg, int pending) argument
/freebsd-11-stable/contrib/ofed/opensm/include/opensm/
H A Dosm_pkey.h89 cl_qlist_t pending; member in struct:osm_pkeybl
111 * pending
/freebsd-11-stable/contrib/xz/src/liblzma/lz/
H A Dlz_encoder.h84 uint32_t pending; member in struct:lzma_mf_s

Completed in 194 milliseconds

1234567891011>>