Searched refs:pending (Results 1 - 25 of 382) sorted by path

1234567891011>>

/freebsd-11-stable/contrib/apr-util/dbd/
H A Dapr_dbd_odbc.c1003 apr_cpystrn(handle->lastError, "[dbd_odbc] Rollback pending ",
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-ia64.c3796 /* Force out pending instructions, to make sure all unwind records have
4416 proc_pending *pending, *last_pending; local
4425 pending = unwind.proc_pending.next;
4426 unwind.proc_pending.next = pending->next;
4427 free (pending);
4454 pending = xmalloc (sizeof (*pending));
4455 pending->sym = sym;
4456 last_pending = last_pending->next = pending;
4579 proc_pending *pending; local
[all...]
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dmaint-tool253 @pending = &deps_for("$srcdir/$f");
254 while (@pending) {
255 @tmp = @pending;
256 @pending = ();
260 push(@pending, split(' ', $deps{$p}));
H A Dsplay-tree.c54 splay_tree_node pending = 0; local
67 node->key = (splay_tree_key)pending;
68 pending = (splay_tree_node)node;
70 /* Now, keep processing the pending list until there aren't any
74 while (pending)
76 active = pending;
77 pending = 0;
89 active->left->key = (splay_tree_key)pending;
90 pending = (splay_tree_node)(active->left);
96 active->right->key = (splay_tree_key)pending;
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dc-typeck.c5242 /* Structure for managing pending initializer elements, organized as an
5254 /* Tree of pending elements at this constructor level.
5786 /* Now output all pending elements. */
6129 /* Add a new initializer to the tree of pending initializers. PURPOSE
6467 /* Return value of FIELD in pending initializer or zero if the field was
6532 PENDING if non-nil means output pending elements that belong
6534 it is 0 while outputting pending elements, to avoid recursion.) */
6538 int pending)
6558 && require_constant_value && !flag_isoc99 && pending)
6685 /* Now output any pending element
6506 output_init_element(tree value, bool strict_string, tree type, tree field, int pending) argument
[all...]
H A Ddf-core.c525 gcc_assert (TEST_BIT (dataflow->pending, bb->index));
526 RESET_BIT (dataflow->pending, i);
551 SET_BIT (dataflow->pending, e->dest->index);
577 gcc_assert (TEST_BIT (dataflow->pending, bb->index));
578 RESET_BIT (dataflow->pending, i);
605 SET_BIT (dataflow->pending, e->src->index);
638 sbitmap pending = sbitmap_alloc (last_basic_block);
643 dataflow->pending = pending;
647 sbitmap_zero (pending);
637 sbitmap pending = sbitmap_alloc (last_basic_block); local
[all...]
H A Ddf.h207 sbitmap visited, pending, considered; member in struct:dataflow
H A Dsched-deps.c675 /* Add an INSN and MEM reference pair to a pending INSN_LIST and MEM_LIST.
699 /* Make a dependency between every memory reference on the pending lists
700 and INSN, thus flushing the pending lists. FOR_READ is true if emitting
884 /* Flush all pending reads and writes to prevent the pending lists
893 rtx pending, pending_mem;
895 pending = deps->pending_read_insns;
897 while (pending)
900 && ! sched_insns_conditions_mutex_p (insn, XEXP (pending, 0)))
901 add_dependence (insn, XEXP (pending,
885 rtx pending, pending_mem; local
987 rtx pending, pending_mem; local
1188 rtx pending, pending_mem; local
[all...]
H A Dvar-tracking.c1826 fibheap_t worklist, pending, fibheap_swap; local
1844 pending = fibheap_new ();
1851 fibheap_insert (pending, bb_order[bb->index], bb);
1854 while (!fibheap_empty (pending))
1856 fibheap_swap = pending;
1857 pending = worklist;
1900 fibheap_insert (pending,
1920 fibheap_delete (pending);
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dmaint-tool253 @pending = &deps_for("$srcdir/$f");
254 while (@pending) {
255 @tmp = @pending;
256 @pending = ();
260 push(@pending, split(' ', $deps{$p}));
H A Dsplay-tree.c54 splay_tree_node pending = 0; local
67 node->key = (splay_tree_key)pending;
68 pending = (splay_tree_node)node;
70 /* Now, keep processing the pending list until there aren't any
74 while (pending)
76 active = pending;
77 pending = 0;
89 active->left->key = (splay_tree_key)pending;
90 pending = (splay_tree_node)(active->left);
96 active->right->key = (splay_tree_key)pending;
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dbreakpoint.c215 /* If AUTO_BOOLEAN_FALSE, gdb will not attempt to create pending breakpoints.
216 If AUTO_BOOLEAN_TRUE, gdb will automatically create pending breakpoints
333 return (b->enable_state == bp_enabled && !b->pending);
569 if (!b->pending)
3487 if (b->pending)
3509 else if (b->pending)
3511 ui_out_field_string (uiout, "pending", b->addr_string);
3550 if (b->pending && b->cond_string)
3788 if (!b->pending && (!overlay_debugging || b->loc->section == section))
3795 if (!b->pending
5076 int pending = 0; local
[all...]
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;
H A Dbuildsym.c61 /* List of free `struct pending' structures for reuse. */
63 static struct pending *free_pendings;
86 /* Add a pending list to free_pendings. */
88 add_free_pendings (struct pending *list)
90 struct pending *link = list;
106 add_symbol_to_list (struct symbol *symbol, struct pending **listhead)
108 struct pending *link;
125 link = (struct pending *) xmalloc (sizeof (struct pending));
146 find_symbol_in_list (struct pending *lis
[all...]
H A Dbuildsym.h101 struct pending struct
103 struct pending *next;
112 EXTERN struct pending *file_symbols;
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;
228 extern void add_free_pendings (struct pending *list);
231 struct pending **listhea
[all...]
H A Dcoffread.c2039 struct pending **symlist;
2044 struct pending *osyms, *syms;
H A Ddictionary.c353 const struct pending *symbol_list)
358 const struct pending *list_counter;
417 const struct pending *symbol_list)
422 const struct pending *list_counter;
H A Ddictionary.h37 struct pending;
48 const struct pending
64 const struct pending
H A Ddwarf2read.c249 struct pending **list_in_scope;
5790 struct pending **list_to_add;
5854 struct pending **list_to_add;
H A Ddwarfread.c361 struct pending **list_in_scope = &file_symbols;
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 Dhpread.c2280 /* End any pending partial symbol table. */
3109 struct pending **symlist, *osyms, *syms;
3110 struct pending *local_list = NULL;
3203 struct pending *syms;
3204 struct pending *local_list = NULL;
3386 struct pending *syms;
3387 struct pending *local_list = NULL;
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 Dstabsread.c100 patch_block_stabs (struct pending *, struct pending_stabs *,
345 patch_block_stabs (struct pending *symbols, struct pending_stabs *stabs,
1491 struct pending *ppt;
3464 struct pending **symlist;
3465 struct pending *osyms, *syms;
4037 static struct pending *common_block;
4074 struct pending *new = 0;
4075 struct pending *next;
4128 struct pending *next = (struct pending *) SYMBOL_TYP
[all...]
/freebsd-11-stable/contrib/jemalloc/src/
H A Dtsd.c42 bool pending[MALLOC_TSD_CLEANUPS_MAX], again; local
46 pending[i] = true;
51 if (pending[i]) {
52 pending[i] = cleanups[i]();
53 if (pending[i])

Completed in 302 milliseconds

1234567891011>>