Home
last modified time | relevance | path

Searched refs:pending (Results 1 – 25 of 443) sorted by relevance

12345678910>>...18

/NextBSD/contrib/gdb/gdb/
HDbuildsym.h101 struct pending struct
103 struct pending *next; argument
112 EXTERN struct pending *file_symbols; argument
116 EXTERN struct pending *global_symbols;
120 EXTERN struct pending *local_symbols;
124 EXTERN struct pending *param_symbols;
133 struct pending *locals;
137 struct pending *params;
227 extern void add_free_pendings (struct pending *list);
230 struct pending **listhead);
[all …]
HDbuildsym.c63 static struct pending *free_pendings;
85 add_free_pendings (struct pending *list) in add_free_pendings()
87 struct pending *link = list; in add_free_pendings()
103 add_symbol_to_list (struct symbol *symbol, struct pending **listhead) in add_symbol_to_list()
105 struct pending *link; in add_symbol_to_list()
122 link = (struct pending *) xmalloc (sizeof (struct pending)); in add_symbol_to_list()
143 find_symbol_in_list (struct pending *list, char *name, int length) in find_symbol_in_list()
170 struct pending *next, *next1; in really_free_pendings()
223 finish_block (struct symbol *symbol, struct pending **listhead, in finish_block()
228 struct pending *next, *next1; in finish_block()
[all …]
HDdictionary.h37 struct pending;
48 const struct pending
64 const struct pending
/NextBSD/tests/sys/aio/
HDaio_kqueue_test.c68 int failed = 0, fd, kq, pending, result, run; in main() local
103 pending = 0; in main()
105 pending++; in main()
134 pending--; in main()
140 cancel = nitems(iocb) - pending; in main()
144 while (pending) { in main()
173 pending, nitems(iocb), cancel); in main()
183 j, result, pending); in main()
191 " (errno=%d) should be %zu\n", run, pending, in main()
196 pending - 1); in main()
[all …]
/NextBSD/sys/arm/broadcom/bcm2835/
HDbcm2835_intr.c155 uint32_t pending; in arm_get_next_irq() local
174 pending = intc_read_4(sc, INTC_PENDING_BASIC); in arm_get_next_irq()
175 if ((pending & 0xFF) == 0) { in arm_get_next_irq()
178 if (pending & (1 << irq)) in arm_get_next_irq()
184 pending = intc_read_4(sc, INTC_PENDING_BANK1); in arm_get_next_irq()
185 if (pending == 0) { in arm_get_next_irq()
188 if (pending & (1 << IRQ_BANK1(irq))) in arm_get_next_irq()
194 pending = intc_read_4(sc, INTC_PENDING_BANK2); in arm_get_next_irq()
195 if (pending != 0) do { in arm_get_next_irq()
196 if (pending & (1 << IRQ_BANK2(irq))) in arm_get_next_irq()
/NextBSD/contrib/unbound/services/
HDoutside_network.h49 struct pending;
117 struct pending* udp_wait_first;
119 struct pending* udp_wait_last;
122 rbtree_t* pending; member
201 struct pending { struct
227 struct pending* next_waiting; argument
373 void* pending; member
432 struct pending* pending_udp_query(struct serviced_query* sq,
458 void pending_delete(struct outside_network* outnet, struct pending* p);
HDoutside_network.c81 static int randomize_and_send_udp(struct pending* pend, sldns_buffer* packet,
91 struct pending *p1 = (struct pending*)key1; in pending_cmp()
92 struct pending *p2 = (struct pending*)key2; in pending_cmp()
372 struct pending* pend;
403 struct pending key;
404 struct pending* p;
426 verbose(VERB_ALGO, "lookup size is %d entries", (int)outnet->pending->count);
427 p = (struct pending*)rbtree_search(outnet->pending, &key);
468 (void)rbtree_delete(outnet->pending, p->node.key);
510 struct pending* p = (struct pending*)arg;
[all …]
/NextBSD/contrib/gcc/
HDsched-deps.c885 rtx pending, pending_mem; in sched_analyze_1() local
887 pending = deps->pending_read_insns; in sched_analyze_1()
889 while (pending) in sched_analyze_1()
892 && ! sched_insns_conditions_mutex_p (insn, XEXP (pending, 0))) in sched_analyze_1()
893 add_dependence (insn, XEXP (pending, 0), REG_DEP_ANTI); in sched_analyze_1()
895 pending = XEXP (pending, 1); in sched_analyze_1()
899 pending = deps->pending_write_insns; in sched_analyze_1()
901 while (pending) in sched_analyze_1()
904 && ! sched_insns_conditions_mutex_p (insn, XEXP (pending, 0))) in sched_analyze_1()
905 add_dependence (insn, XEXP (pending, 0), REG_DEP_OUTPUT); in sched_analyze_1()
[all …]
HDdf-core.c524 gcc_assert (TEST_BIT (dataflow->pending, bb->index)); in df_hybrid_search_forward()
525 RESET_BIT (dataflow->pending, i); in df_hybrid_search_forward()
550 SET_BIT (dataflow->pending, e->dest->index); in df_hybrid_search_forward()
576 gcc_assert (TEST_BIT (dataflow->pending, bb->index)); in df_hybrid_search_backward()
577 RESET_BIT (dataflow->pending, i); in df_hybrid_search_backward()
604 SET_BIT (dataflow->pending, e->src->index); in df_hybrid_search_backward()
637 sbitmap pending = sbitmap_alloc (last_basic_block); in df_iterative_dataflow() local
642 dataflow->pending = pending; in df_iterative_dataflow()
646 sbitmap_zero (pending); in df_iterative_dataflow()
659 SET_BIT (pending, idx); in df_iterative_dataflow()
[all …]
/NextBSD/cddl/contrib/dtracetoolkit/Examples/
HDiopending_example.txt31 disk events were "pending" completion. In the above example the disks are
32 quiet - for all the samples there are zero disk events pending.
56 was 1 I/O event pending; for 80 samples there was 2, and so on.
121 In the first output, most of the time (67%) there was 1 event pending,
122 and for a short time there were 8 events pending. In the second output we
123 see many samples were off the scale - 650 samples at 32 or more pending
/NextBSD/contrib/jemalloc/src/
HDtsd.c42 bool pending[MALLOC_TSD_CLEANUPS_MAX], again; in _malloc_thread_cleanup() local
46 pending[i] = true; in _malloc_thread_cleanup()
51 if (pending[i]) { in _malloc_thread_cleanup()
52 pending[i] = cleanups[i](); in _malloc_thread_cleanup()
53 if (pending[i]) in _malloc_thread_cleanup()
/NextBSD/lib/libz/
HDdeflate.c407 s->pending = 0;
450 int ZEXPORT deflatePending (strm, pending, bits) in deflatePending() argument
451 unsigned *pending; in deflatePending()
456 if (pending != Z_NULL)
457 *pending = strm->state->pending;
516 if (err == Z_BUF_ERROR && s->pending == 0)
649 len = s->pending;
658 s->pending -= len;
659 if (s->pending == 0) {
730 s->pending);
[all …]
/NextBSD/contrib/gcclibs/libiberty/
HDsplay-tree.c54 splay_tree_node pending = 0; in splay_tree_delete_helper() local
67 node->key = (splay_tree_key)pending; in splay_tree_delete_helper()
68 pending = (splay_tree_node)node; in splay_tree_delete_helper()
74 while (pending) in splay_tree_delete_helper()
76 active = pending; in splay_tree_delete_helper()
77 pending = 0; in splay_tree_delete_helper()
89 active->left->key = (splay_tree_key)pending; in splay_tree_delete_helper()
90 pending = (splay_tree_node)(active->left); in splay_tree_delete_helper()
96 active->right->key = (splay_tree_key)pending; in splay_tree_delete_helper()
97 pending = (splay_tree_node)(active->right); in splay_tree_delete_helper()
HDmaint-tool253 @pending = &deps_for("$srcdir/$f");
254 while (@pending) {
255 @tmp = @pending;
256 @pending = ();
260 push(@pending, split(' ', $deps{$p}));
/NextBSD/contrib/binutils/libiberty/
HDsplay-tree.c54 splay_tree_node pending = 0; in splay_tree_delete_helper() local
67 node->key = (splay_tree_key)pending; in splay_tree_delete_helper()
68 pending = (splay_tree_node)node; in splay_tree_delete_helper()
74 while (pending) in splay_tree_delete_helper()
76 active = pending; in splay_tree_delete_helper()
77 pending = 0; in splay_tree_delete_helper()
89 active->left->key = (splay_tree_key)pending; in splay_tree_delete_helper()
90 pending = (splay_tree_node)(active->left); in splay_tree_delete_helper()
96 active->right->key = (splay_tree_key)pending; in splay_tree_delete_helper()
97 pending = (splay_tree_node)(active->right); in splay_tree_delete_helper()
HDmaint-tool253 @pending = &deps_for("$srcdir/$f");
254 while (@pending) {
255 @tmp = @pending;
256 @pending = ();
260 push(@pending, split(' ', $deps{$p}));
/NextBSD/sys/cddl/contrib/opensolaris/uts/common/zmod/
HDdeflate.c378 s->pending = 0;
541 unsigned len = strm->state->pending;
551 strm->state->pending -= len;
552 if (strm->state->pending == 0) {
623 s->pending);
660 uInt beg = s->pending; /* start of bytes to update crc */
663 if (s->pending == s->pending_buf_size) {
664 if (s->gzhead->hcrc && s->pending > beg)
666 s->pending - beg);
668 beg = s->pending;
[all …]
/NextBSD/contrib/ntp/lib/isc/
HDratelimiter.c48 ISC_LIST(isc_event_t) pending;
77 ISC_LIST_INIT(rl->pending); in isc_ratelimiter_create()
149 ISC_LIST_APPEND(rl->pending, ev, ev_link); in isc_ratelimiter_enqueue()
183 p = ISC_LIST_HEAD(rl->pending); in ratelimiter_tick()
188 ISC_LIST_UNLINK(rl->pending, p, ev_link); in ratelimiter_tick()
218 while ((ev = ISC_LIST_HEAD(rl->pending)) != NULL) { in isc_ratelimiter_shutdown()
219 ISC_LIST_UNLINK(rl->pending, ev, ev_link); in isc_ratelimiter_shutdown()
313 if (!ISC_LIST_EMPTY(rl->pending)) { in isc_ratelimiter_release()
/NextBSD/usr.sbin/bluetooth/btpand/
HDevent.c53 TAILQ_INSERT_TAIL(&pending, ev, next); \
65 static TAILQ_HEAD(, event) pending;
71 TAILQ_INIT(&pending); in event_init()
109 while (!TAILQ_EMPTY(&pending)) { in __event_dispatch()
110 ev = TAILQ_FIRST(&pending); in __event_dispatch()
244 TAILQ_REMOVE(&pending, ev, next); in __event_del()
/NextBSD/sys/arm/freescale/imx/
HDtzic.c165 uint32_t pending; in arm_get_next_irq() local
169 pending = tzic_read_4(TZIC_PND(i)); in arm_get_next_irq()
170 for (b = 0; pending != 0 && b < 32; b++) in arm_get_next_irq()
171 if (pending & (1 << b)) { in arm_get_next_irq()
/NextBSD/sys/compat/linuxkpi/common/include/linux/
HDworkqueue.h112 int pending; in queue_delayed_work() local
116 pending = work->work.work_task.ta_pending; in queue_delayed_work()
118 pending = work->work.work_task.ta_pending; in queue_delayed_work()
122 pending = taskqueue_enqueue(work->work.taskqueue, in queue_delayed_work()
125 return (!pending); in queue_delayed_work()
/NextBSD/usr.sbin/ypserv/
HDyp_dnslookup.c126 static int pending = 0; variable
330 pending--; in yp_prune_dnsq()
335 if (pending < 0) in yp_prune_dnsq()
336 pending = 0; in yp_prune_dnsq()
378 if (!pending || in yp_run_dnsq()
399 pending--; in yp_run_dnsq()
456 pending++; in yp_async_lookup_name()
544 pending++; in yp_async_lookup_addr()
/NextBSD/sys/dev/drm/
HDmach64_drv.h91 struct list_head pending; /* Buffers pending completion */ member
724 if (list_empty(&dev_priv->pending)) { in mach64_find_pending_buf_entry()
729 ptr = dev_priv->pending.prev; in mach64_find_pending_buf_entry()
732 if (ptr == &dev_priv->pending) { in mach64_find_pending_buf_entry()
759 if (_buf->pending) { \
794 if (_buf->pending) { \
812 _buf->pending = 1; \
814 list_add_tail(ptr, &dev_priv->pending); \
856 _entry->buf->pending = 1; \
857 list_add_tail(ptr, &dev_priv->pending); \
/NextBSD/bin/dd/
HDdd.c79 static off_t pending = 0; /* pending seek if sparse */ variable
410 if (out.dbcnt || pending) in dd_close()
459 pending += cnt; in dd_out()
463 if (pending != 0) { in dd_out()
469 pending -= last_sp; in dd_out()
473 if (lseek(out.fd, pending, SEEK_CUR) == in dd_out()
477 pending = last_sp = 0; in dd_out()
/NextBSD/contrib/xz/src/liblzma/lz/
HDlz_encoder.c138 if (coder->mf.pending > 0 in fill_window()
142 const uint32_t pending = coder->mf.pending; in fill_window() local
143 coder->mf.pending = 0; in fill_window()
147 assert(coder->mf.read_pos >= pending); in fill_window()
148 coder->mf.read_pos -= pending; in fill_window()
152 coder->mf.skip(&coder->mf, pending); in fill_window()
397 mf->pending = 0; in lz_encoder_init()

12345678910>>...18