Home
last modified time | relevance | path

Searched refs:next (Results 1 – 25 of 2673) sorted by relevance

12345678910>>...107

/openbsd/gnu/usr.bin/gcc/gcc/f/
H A Dstt.c133 for (next = list->next; next != list; next = next->next) in ffestt_caselist_kill()
203 for (next = list->next; next != list; next = next->next) in ffestt_dimlist_as_expr()
218 if ((next->next == list) in ffestt_dimlist_as_expr()
268 for (next = list->next; next != list; next = next->next) in ffestt_dimlist_as_expr()
424 for (next = list->next; next != list; next = next->next) in ffestt_dimlist_kill()
450 for (next = list->next; next != list; next = next->next) in ffestt_dimlist_type()
553 for (next = list->next; next != list; next = next->next) in ffestt_exprlist_drive()
575 for (next = list->next; next != list; next = next->next) in ffestt_exprlist_kill()
649 for (next = list->next; next != list; next = next->next) in ffestt_formatlist_kill()
770 for (next = list->next; next != list; next = next->next) in ffestt_implist_drive()
[all …]
/openbsd/usr.bin/find/
H A Doperator.c57 node->next = NULL; in yanknode()
108 tail->next = next; in yankexpr()
109 tail = next; in yankexpr()
174 next->p_data[0] = not_squish(next->p_data[0]); in not_squish()
196 next = node; in not_squish()
205 tail->next = next; in not_squish()
206 tail = next; in not_squish()
232 next->p_data[0] = or_squish(next->p_data[0]); in or_squish()
236 next->p_data[0] = or_squish(next->p_data[0]); in or_squish()
257 tail->next = next; in or_squish()
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/
H A Dbb-reorder.c124 next = bb; in make_reorder_chain()
128 if (next) in make_reorder_chain()
131 while (next); in make_reorder_chain()
156 next = e->dest;
161 if ((next->head == next->end
162 || next_active_insn (next->head) == next->end)
217 next = NULL;
259 if (! next)
275 if (! next || next == EXIT_BLOCK_PTR || RBI (next)->visited)
286 if (next)
[all …]
H A Dgenemit.c46 struct clobber_pat *next; member
55 struct clobber_ent *next; member
371 p->next = clobber_list;
376 link->next = p->insns;
525 if ((GET_CODE (next) == SET && GET_CODE (SET_DEST (next)) == PC)
530 || GET_CODE (next) == RETURN)
532 else if ((GET_CODE (next) == SET && GET_CODE (SET_SRC (next)) == CALL)
554 if (GET_CODE (next) == SET && GET_CODE (SET_DEST (next)) == PC
639 if ((GET_CODE (next) == SET && GET_CODE (SET_DEST (next)) == PC)
645 else if ((GET_CODE (next) == SET && GET_CODE (SET_SRC (next)) == CALL)
[all …]
H A Dbitmap.c80 bitmap_element *next = elt->next; local
84 prev->next = next;
86 if (next)
87 next->prev = prev;
96 head->current = next != 0 ? next : prev;
241 ptr->next != 0 && ptr->next->indx < indx;
242 ptr = ptr->next)
245 if (ptr->next)
248 element->next = ptr->next;
268 next = element->next;
[all …]
/openbsd/sys/dev/pci/drm/include/linux/
H A Dlist.h82 next->prev = new; in __list_add()
83 new->next = next; in __list_add()
85 prev->next = new; in __list_add()
91 (new)->next = (head)->next; in list_add()
107 (entry)->prev->next = (entry)->next; in list_del()
115 new->next = old->next; in list_replace()
152 first->prev->next = last->next; in list_bulk_move_tail()
156 last->next = head; in list_bulk_move_tail()
163 (entry)->prev->next = (entry)->next; in list_del_init()
184 for (entry = (head)->next, temp = (entry)->next; \
[all …]
/openbsd/lib/libssl/
H A Dpqueue.c81 item->next = NULL; in pitem_new()
107 pitem *curr, *next; in pqueue_insert() local
114 for (curr = NULL, next = pq->items; next != NULL; in pqueue_insert()
115 curr = next, next = next->next) { in pqueue_insert()
121 item->next = next; in pqueue_insert()
133 item->next = NULL; in pqueue_insert()
134 curr->next = item; in pqueue_insert()
159 pitem *next; in pqueue_find() local
161 for (next = pq->items; next != NULL; next = next->next) in pqueue_find()
164 return next; in pqueue_find()
[all …]
/openbsd/sys/dev/usb/dwc2/
H A Dlist.h59 (head)->next = head; in INIT_LIST_HEAD()
65 return (head)->next == head; in list_empty()
70 (head)->next->prev = new; in list_add()
71 (new)->next = (head)->next; in list_add()
73 (head)->next = new; in list_add()
79 (entry)->next = head; in list_add_tail()
80 (head)->prev->next = entry; in list_add_tail()
87 (entry)->prev->next = (entry)->next; in list_del()
106 (entry)->prev->next = (entry)->next; in list_del_init()
111 for (entry = (head)->next; entry != head; entry = (entry)->next)
[all …]
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dbuildsym.c171 for (next = free_pendings; next; next = next1) in really_free_pendings()
173 next1 = next->next; in really_free_pendings()
180 for (next = file_symbols; next != NULL; next = next1) in really_free_pendings()
182 next1 = next->next; in really_free_pendings()
189 next1 = next->next; in really_free_pendings()
359 for (next = *listhead; next; next = next1) in finish_block()
361 next1 = next->next; in finish_block()
474 for (next = pending_blocks, i = 0; next; next = next->next, i++) in make_blockvector()
490 for (next = pending_blocks; next; next = next->next) in make_blockvector()
499 for (next = pending_blocks; next; next = next1) in make_blockvector()
[all …]
/openbsd/gnu/gcc/gcc/
H A Dbitmap.c73 bitmap_element *next = elt->next; in bitmap_element_free() local
77 prev->next = next; in bitmap_element_free()
89 head->current = next != 0 ? next : prev; in bitmap_element_free()
341 element->next = ptr->next; in bitmap_element_link()
377 node->next = elt->next; in bitmap_elt_insert_after()
707 next = a_elt->next; in bitmap_and_into()
726 next = a_elt->next; in bitmap_and_into()
846 next = a_elt->next; in bitmap_and_compl_into()
1006 next = a_elt->next; in bitmap_compl_and_into()
1033 next = a_elt->next; in bitmap_compl_and_into()
[all …]
H A Dgenemit.c47 struct clobber_pat *next; member
56 struct clobber_ent *next; member
385 p->next = clobber_list; in gen_insn()
390 link->next = p->insns; in gen_insn()
536 if ((GET_CODE (next) == SET && GET_CODE (SET_DEST (next)) == PC) in gen_expand()
543 else if ((GET_CODE (next) == SET && GET_CODE (SET_SRC (next)) == CALL) in gen_expand()
551 else if (LABEL_P (next)) in gen_expand()
565 if (GET_CODE (next) == SET && GET_CODE (SET_DEST (next)) == PC in gen_expand()
650 if ((GET_CODE (next) == SET && GET_CODE (SET_DEST (next)) == PC) in gen_split()
656 else if ((GET_CODE (next) == SET && GET_CODE (SET_SRC (next)) == CALL) in gen_split()
[all …]
H A Dtree-iterator.c112 tail->next = cur; in tsi_link_before()
183 tail->next = cur->next; in tsi_link_after()
184 if (tail->next) in tsi_link_after()
224 next = cur->next; in tsi_delink()
228 prev->next = next; in tsi_delink()
231 if (next) in tsi_delink()
236 if (!next && !prev) in tsi_delink()
239 i->ptr = next; in tsi_delink()
254 next = cur->next; in tsi_split_statement_list_after()
263 cur->next = NULL; in tsi_split_statement_list_after()
[all …]
/openbsd/sbin/fsck_msdos/
H A Dfat.c48 *next |= ~boot->ClustMask; in checkclnum()
49 if (*next == CLUST_FREE) { in checkclnum()
53 if (*next == CLUST_BAD) { in checkclnum()
57 if (*next < CLUST_FIRST in checkclnum()
58 || (*next >= boot->NumClusters && *next < CLUST_EOFS)) { in checkclnum()
64 *next = CLUST_EOF; in checkclnum()
282 if (first[cl].next != second[cl].next) in comparefat()
283 ret |= clustdiffer(cl, &first[cl].next, &second[cl].next, fatnum); in comparefat()
295 q = fat[p].next; in clearchain()
314 p = fat[p].next) { in tryclear()
[all …]
/openbsd/bin/csh/
H A Dparse.c120 if (p->next != p2 && eq(p->next->word, STRand)) in asyn0()
121 p = p->next; in asyn0()
178 alout.prev->prev->next = p1->next; in asyn3()
180 p1->next = alout.next; in asyn3()
194 p1 = p1->next; in freenod()
256 if (p->next != p2 && eq(p->next->word, STRand)) in syn0()
257 p = p->next; in syn0()
477 p = p->next; in syn3()
549 lp = p->next; in syn3()
565 if (p->next != p2 && eq(p->next->word, STRand)) { in syn3()
[all …]
/openbsd/usr.bin/m4/
H A Dtokenizer.l80 char *next; in parse_radix() local
86 if (base > 36 || next == NULL) { in parse_radix()
89 next++; in parse_radix()
90 while (*next != 0) { in parse_radix()
91 if (*next >= '0' && *next <= '9') in parse_radix()
92 d = *next - '0'; in parse_radix()
93 else if (*next >= 'a' && *next <= 'z') in parse_radix()
94 d = *next - 'a' + 10; in parse_radix()
96 assert(*next >= 'A' && *next <= 'Z'); in parse_radix()
97 d = *next - 'A' + 10; in parse_radix()
[all …]
/openbsd/usr.bin/yacc/
H A Dmkpar.c155 for (next = actions; next && next->symbol < symbol; next = next->next) in add_reduce()
156 prev = next; in add_reduce()
158 while (next && next->symbol == symbol && next->action_code == SHIFT) { in add_reduce()
159 prev = next; in add_reduce()
160 next = next->next; in add_reduce()
163 while (next && next->symbol == symbol && in add_reduce()
164 next->action_code == REDUCE && next->number < ruleno) { in add_reduce()
165 prev = next; in add_reduce()
166 next = next->next; in add_reduce()
170 temp->next = next; in add_reduce()
[all …]
/openbsd/usr.sbin/dhcpd/
H A Ddispatch.c235 next = tmp->next; in discover_interfaces()
244 last->next = tmp->next; in discover_interfaces()
258 last->next = tmp->next; in discover_interfaces()
535 t->next = q->next; in add_timeout()
572 for (t = timeouts; t->next; t = t->next) { in add_timeout()
574 q->next = t->next; in add_timeout()
575 t->next = q; in add_timeout()
581 t->next = q; in add_timeout()
595 t->next = q->next; in cancel_timeout()
633 next = p->next; in remove_protocol()
[all …]
/openbsd/gnu/usr.bin/cvs/diff/
H A Dcontext.c177 next = hunk;
184 while (next && next->line0 + next->deleted <= i)
185 next = next->link;
190 if (next && next->line0 <= i)
206 next = hunk;
213 while (next && next->line1 + next->inserted <= i)
214 next = next->link;
219 if (next && next->line1 <= i)
308 next = hunk;
317 if (!next || i < next->line0)
[all …]
/openbsd/gnu/lib/libiberty/src/
H A Dobjalloc.c61 struct objalloc_chunk *next; member
103 chunk->next = NULL; in objalloc_create()
186 next = l->next; in objalloc_free()
188 l = next; in objalloc_free()
241 struct objalloc_chunk *next; in objalloc_free_block() local
243 next = q->next; in objalloc_free_block()
255 q = next; in objalloc_free_block()
278 p = p->next; in objalloc_free_block()
285 next = q->next; in objalloc_free_block()
287 q = next; in objalloc_free_block()
[all …]
/openbsd/sys/arch/octeon/octeon/
H A Dmachdep.c1120 nblock.next = block->next; in bootmem_alloc_region()
1146 block->next = next->next; in bootmem_alloc_region()
1149 nblock.next = next->next; in bootmem_alloc_region()
1165 nblock.next = block->next; in bootmem_alloc_region()
1211 block->next = next->next; in bootmem_free()
1241 next = pa_to_block(prev->next); in bootmem_free()
1245 prev->next = next->next; in bootmem_free()
1251 next->size, prev->next); in bootmem_free()
1259 block->next = prev->next; in bootmem_free()
1264 block->next = next->next; in bootmem_free()
[all …]
/openbsd/gnu/usr.bin/binutils/binutils/
H A Darsup.c48 bfd *next; in map_over_list() local
50 head = arch->next; in map_over_list()
53 next = head->next; in map_over_list()
55 head = next; in map_over_list()
72 for (head = arch->next; head; head = head->next) in map_over_list()
216 prev->next = abfd->next; in ar_addlib_doer()
267 list = list->next; in ar_addmod()
317 list = list->next; in ar_delete()
375 abfd->next = member->next; in ar_replace()
402 list = list->next; in ar_replace()
[all …]
/openbsd/gnu/usr.bin/binutils-2.17/binutils/
H A Darsup.c52 bfd *next; in map_over_list() local
54 head = arch->next; in map_over_list()
57 next = head->next; in map_over_list()
59 head = next; in map_over_list()
76 for (head = arch->next; head; head = head->next) in map_over_list()
216 prev->next = abfd->next; in ar_addlib_doer()
267 list = list->next; in ar_addmod()
317 list = list->next; in ar_delete()
375 abfd->next = member->next; in ar_replace()
402 list = list->next; in ar_replace()
[all …]
/openbsd/usr.sbin/mrouted/
H A Dcallout.c58 Q = Q->next; in age_callout_queue()
107 node->next = 0; in timer_setTimer()
124 node->next = ptr; in timer_setTimer()
128 prev->next = node; in timer_setTimer()
138 ptr = ptr->next; in timer_setTimer()
141 prev->next = node; in timer_setTimer()
176 Q = Q->next; in timer_clearTimer()
178 prev->next = ptr->next; in timer_clearTimer()
181 if (ptr->next != 0) in timer_clearTimer()
182 (ptr->next)->time += ptr->time; in timer_clearTimer()
[all …]
/openbsd/usr.bin/less/
H A Dlinenum.c88 p->next = p+1; in clr_linenum()
89 pool[NPOOL-2].next = NULL; in clr_linenum()
138 for (p = anchor.next; p != &anchor && p->pos < pos; p = p->next) in add_lnum()
151 freelist = freelist->next; in add_lnum()
165 new->next = nextp; in add_lnum()
171 prevp->next = new; in add_lnum()
190 mingap = anchor.next->gap; in add_lnum()
191 for (p = anchor.next; p->next != &anchor; p = p->next) { in add_lnum()
198 spare->prev->next = spare->next; in add_lnum()
279 for (p = anchor.next; p != &anchor && p->pos < pos; p = p->next) in find_linenum()
[all …]
/openbsd/usr.bin/dig/lib/dns/rdata/generic/
H A Dtalink_58.c24 dns_name_t next; in totext_talink() local
32 dns_name_init(&next, NULL); in totext_talink()
40 dns_name_fromregion(&next, &dregion); in totext_talink()
41 isc_region_consume(&dregion, name_length(&next)); in totext_talink()
48 sub = name_prefix(&next, tctx->origin, &prefix); in totext_talink()
55 dns_name_t next; in fromwire_talink() local
65 dns_name_init(&next, NULL); in fromwire_talink()
75 dns_name_t next; in towire_talink() local
85 dns_name_init(&next, roffsets); in towire_talink()
93 dns_name_fromregion(&next, &sregion); in towire_talink()
[all …]

12345678910>>...107