| /openbsd/src/gnu/usr.bin/gcc/gcc/f/ |
| D | stt.c | 84 new->next = list->previous->next; in ffestt_caselist_append() 86 new->next->previous = new; in ffestt_caselist_append() 87 new->previous->next = new; in ffestt_caselist_append() 109 new->next = new->previous = new; in ffestt_caselist_create() 131 ffesttCaseList next; in ffestt_caselist_kill() local 133 for (next = list->next; next != list; next = next->next) in ffestt_caselist_kill() 135 ffelex_token_kill (next->t); in ffestt_caselist_kill() 156 new->next = list->previous->next; in ffestt_dimlist_append() 158 new->next->previous = new; in ffestt_dimlist_append() 159 new->previous->next = new; in ffestt_dimlist_append() [all …]
|
| /openbsd/src/usr.bin/find/ |
| D | operator.c | 56 (*planp) = (*planp)->next; in yanknode() 57 node->next = NULL; in yanknode() 70 PLAN *next; /* temp node holding subexpression results */ in yankexpr() local 88 if ((next = yankexpr(planp)) == NULL) in yankexpr() 97 if (next->type == N_CLOSEPAREN) { in yankexpr() 106 tail = subplan = next; in yankexpr() 108 tail->next = next; in yankexpr() 109 tail = next; in yankexpr() 111 tail->next = NULL; in yankexpr() 146 tail->next = expr; in paren_squish() [all …]
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/ |
| D | bb-reorder.c | 107 basic_block next, bb; in make_reorder_chain() local 112 next = NULL; in make_reorder_chain() 124 next = bb; in make_reorder_chain() 128 if (next) in make_reorder_chain() 129 prev = make_reorder_chain_1 (next, prev); in make_reorder_chain() 131 while (next); in make_reorder_chain() 132 RBI (prev)->next = NULL; in make_reorder_chain() 142 basic_block next; local 156 next = e->dest; 157 if (!RBI (next)->visited) [all …]
|
| D | genemit.c | 46 struct clobber_pat *next; member 55 struct clobber_ent *next; member 338 for (p = clobber_list; p; p = p->next) 371 p->next = clobber_list; 376 link->next = p->insns; 524 rtx next = XVECEXP (expand, 1, i); local 525 if ((GET_CODE (next) == SET && GET_CODE (SET_DEST (next)) == PC) 526 || (GET_CODE (next) == PARALLEL 527 && ((GET_CODE (XVECEXP (next, 0, 0)) == SET 528 && GET_CODE (SET_DEST (XVECEXP (next, 0, 0))) == PC) [all …]
|
| D | bitmap.c | 62 elt->next = bitmap_free; 67 elt->next = bitmap_ggc_free; 80 bitmap_element *next = elt->next; local 84 prev->next = next; 86 if (next) 87 next->prev = prev; 90 head->first = next; 96 head->current = next != 0 ? next : prev; 116 bitmap_free = element->next; 158 bitmap_ggc_free = element->next; [all …]
|
| /openbsd/src/sys/dev/pci/drm/include/linux/ |
| D | list.h | 45 (head)->next = head; in INIT_LIST_HEAD() 56 return (head)->next == head; in list_empty() 61 return !list_empty(head) && ((head)->next == (head)->prev); in list_is_singular() 75 return list->next == head; in list_is_last() 80 struct list_head *next) in __list_add() argument 82 next->prev = new; in __list_add() 83 new->next = next; in __list_add() 85 prev->next = new; in __list_add() 90 (head)->next->prev = new; in list_add() 91 (new)->next = (head)->next; in list_add() [all …]
|
| /openbsd/src/lib/libssl/ |
| D | pqueue.c | 81 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() 118 int cmp = memcmp(next->priority, item->priority, in pqueue_insert() 121 item->next = next; in pqueue_insert() 126 curr->next = item; in pqueue_insert() 133 item->next = NULL; in pqueue_insert() 134 curr->next = item; in pqueue_insert() 151 pq->items = pq->items->next; in pqueue_pop() [all …]
|
| /openbsd/src/sys/dev/usb/dwc2/ |
| D | list.h | 49 struct list_head *next, *prev; member 59 (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() 86 (entry)->next->prev = (entry)->prev; in list_del() 87 (entry)->prev->next = (entry)->next; in list_del() [all …]
|
| /openbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | buildsym.c | 90 while (link->next) link = link->next; in add_free_pendings() 91 link->next = free_pendings; in add_free_pendings() 117 free_pendings = link->next; in add_symbol_to_list() 124 link->next = *listhead; in add_symbol_to_list() 158 list = list->next; in find_symbol_in_list() 169 struct pending *next, *next1; in really_free_pendings() local 171 for (next = free_pendings; next; next = next1) in really_free_pendings() 173 next1 = next->next; in really_free_pendings() 174 xfree ((void *) next); in really_free_pendings() 180 for (next = file_symbols; next != NULL; next = next1) in really_free_pendings() [all …]
|
| /openbsd/src/gnu/gcc/gcc/ |
| D | bitmap.c | 54 elt->next = NULL; in bitmap_elem_to_freelist() 73 bitmap_element *next = elt->next; in bitmap_element_free() local 77 prev->next = next; in bitmap_element_free() 79 if (next) in bitmap_element_free() 80 next->prev = prev; in bitmap_element_free() 83 head->first = next; in bitmap_element_free() 89 head->current = next != 0 ? next : prev; in bitmap_element_free() 113 if (element->next) in bitmap_element_allocate() 115 bit_obstack->elements = element->next; in bitmap_element_allocate() 130 if (element->next) in bitmap_element_allocate() [all …]
|
| D | genemit.c | 47 struct clobber_pat *next; member 56 struct clobber_ent *next; member 352 for (p = clobber_list; p; p = p->next) in gen_insn() 385 p->next = clobber_list; in gen_insn() 390 link->next = p->insns; in gen_insn() 535 rtx next = XVECEXP (expand, 1, i); in gen_expand() local 536 if ((GET_CODE (next) == SET && GET_CODE (SET_DEST (next)) == PC) in gen_expand() 537 || (GET_CODE (next) == PARALLEL in gen_expand() 538 && ((GET_CODE (XVECEXP (next, 0, 0)) == SET in gen_expand() 539 && GET_CODE (SET_DEST (XVECEXP (next, 0, 0))) == PC) in gen_expand() [all …]
|
| D | tree-iterator.c | 95 head->next = NULL; in tsi_link_before() 109 head->prev->next = head; in tsi_link_before() 112 tail->next = cur; in tsi_link_before() 119 head->prev->next = head; in tsi_link_before() 171 head->next = NULL; in tsi_link_after() 183 tail->next = cur->next; in tsi_link_after() 184 if (tail->next) in tsi_link_after() 185 tail->next->prev = tail; in tsi_link_after() 189 cur->next = head; in tsi_link_after() 221 struct tree_statement_list_node *cur, *next, *prev; in tsi_delink() local [all …]
|
| /openbsd/src/sbin/fsck_msdos/ |
| D | fat.c | 45 checkclnum(struct bootblock *boot, int fat, cl_t cl, cl_t *next) in checkclnum() argument 47 if (*next >= (CLUST_RSRVD&boot->ClustMask)) in checkclnum() 48 *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() 61 *next < CLUST_RSRVD ? "out of range" : "reserved", in checkclnum() 62 *next&boot->ClustMask); in checkclnum() 64 *next = CLUST_EOF; in checkclnum() [all …]
|
| /openbsd/src/bin/csh/ |
| D | parse.c | 84 asyntax(lex->next, lex); in alias() 93 p1 = p1->next; in asyntax() 106 for (p = p1; p != p2; p = p->next) in asyn0() 120 if (p->next != p2 && eq(p->next->word, STRand)) in asyn0() 121 p = p->next; in asyn0() 131 asyntax(p->next, p2); in asyn0() 151 if (p2 == p1->next) in asyn3() 153 asyn0(p1->next, p2); in asyn3() 169 if (p1->word[0] && eq(p1->word, alout.next->word)) { in asyn3() 170 Char *cp = alout.next->word; in asyn3() [all …]
|
| /openbsd/src/usr.bin/m4/ |
| D | tokenizer.l | 80 char *next; in parse_radix() local 85 base = strtol(yytext+2, &next, 0); in parse_radix() 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() [all …]
|
| /openbsd/src/usr.bin/yacc/ |
| D | mkpar.c | 114 temp->next = actions; in get_shifts() 152 action *temp, *prev, *next; in add_reduce() local 155 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() [all …]
|
| /openbsd/src/usr.sbin/dhcpd/ |
| D | dispatch.c | 90 struct interface_info *last, *next; in discover_interfaces() local 123 for (tmp = interfaces; tmp; tmp = tmp->next) in discover_interfaces() 148 tmp->next = interfaces; in discover_interfaces() 234 for (tmp = interfaces; tmp; tmp = next) { in discover_interfaces() 235 next = tmp->next; in discover_interfaces() 242 interfaces = interfaces->next; in discover_interfaces() 244 last->next = tmp->next; in discover_interfaces() 256 interfaces = interfaces->next; in discover_interfaces() 258 last->next = tmp->next; in discover_interfaces() 290 for (tmp = interfaces; tmp; tmp = tmp->next) in discover_interfaces() [all …]
|
| /openbsd/src/gnu/usr.bin/cvs/diff/ |
| D | context.c | 134 struct change *next; local 177 next = hunk; 184 while (next && next->line0 + next->deleted <= i) 185 next = next->link; 190 if (next && next->line0 <= i) 194 prefix = (next->inserted > 0 ? "!" : "-"); 206 next = hunk; 213 while (next && next->line1 + next->inserted <= i) 214 next = next->link; 219 if (next && next->line1 <= i) [all …]
|
| /openbsd/src/regress/usr.sbin/bgpd/integrationtests/ |
| D | exabgp.attr.in | 44 route 10.12.0.0/24 next-hop self; 46 route 10.12.1.0/24 next-hop self attribute [ 0x07 0xc0 0x02 ]; 48 route 10.12.2.0/24 next-hop self attribute [ 0x08 0xc0 0x02 ]; 50 route 10.12.3.0/24 next-hop self attribute [ 0x10 0xc0 0x02 ]; 52 route 10.12.4.0/24 next-hop self attribute [ 0x11 0xc0 0x02 ]; 54 route 10.12.5.0/24 next-hop self attribute [ 0x12 0xc0 0x02 ]; 56 route 10.12.6.0/24 next-hop self attribute [ 0x20 0xc0 0x02 ]; 58 route 10.12.7.0/24 next-hop self attribute [ 0x23 0xc0 0x02 ]; 60 route 10.12.8.0/24 next-hop self attribute [ 0x0a 0x80 0x02 ]; 78 route 10.13.0.0/24 next-hop self; [all …]
|
| /openbsd/src/gnu/lib/libiberty/src/ |
| D | objalloc.c | 61 struct objalloc_chunk *next; member 103 chunk->next = NULL; in objalloc_create() 148 chunk->next = (struct objalloc_chunk *) o->chunks; in _objalloc_alloc() 162 chunk->next = (struct objalloc_chunk *) o->chunks; in _objalloc_alloc() 184 struct objalloc_chunk *next; in objalloc_free() local 186 next = l->next; in objalloc_free() 188 l = next; in objalloc_free() 206 for (p = (struct objalloc_chunk *) o->chunks; p != NULL; p = p->next) in objalloc_free_block() 241 struct objalloc_chunk *next; in objalloc_free_block() local 243 next = q->next; in objalloc_free_block() [all …]
|
| /openbsd/src/sys/arch/octeon/octeon/ |
| D | machdep.c | 217 for (i = 0; i < MAXMEMSEGS && blockaddr != 0; blockaddr = block->next) { in octeon_memory_init() 1088 pa = block->next; in bootmem_dump() 1100 struct octeon_bootmem_block *block, *next, nblock; in bootmem_alloc_region() local 1117 memdesc->head_addr = block->next; in bootmem_alloc_region() 1120 nblock.next = block->next; in bootmem_alloc_region() 1132 while (block->next != 0 && block->next < pa) { in bootmem_alloc_region() 1133 bpa = block->next; in bootmem_alloc_region() 1141 if (block->next == pa) { in bootmem_alloc_region() 1142 next = pa_to_block(block->next); in bootmem_alloc_region() 1143 if (next->size < size) in bootmem_alloc_region() [all …]
|
| /openbsd/src/gnu/usr.bin/binutils-2.17/binutils/ |
| D | arsup.c | 52 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() 71 for (ptr = list; ptr; ptr = ptr->next) in map_over_list() 76 for (head = arch->next; head; head = head->next) in map_over_list() 200 ptr = &element->next; in ar_open() 216 prev->next = abfd->next; in ar_addlib_doer() 218 abfd->next = obfd->archive_head; in ar_addlib_doer() 264 abfd->next = obfd->archive_head; in ar_addmod() [all …]
|
| /openbsd/src/gnu/usr.bin/binutils/binutils/ |
| D | arsup.c | 48 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() 67 for (ptr = list; ptr; ptr = ptr->next) in map_over_list() 72 for (head = arch->next; head; head = head->next) in map_over_list() 200 ptr = &element->next; in ar_open() 216 prev->next = abfd->next; in ar_addlib_doer() 218 abfd->next = obfd->archive_head; in ar_addlib_doer() 264 abfd->next = obfd->archive_head; in ar_addmod() [all …]
|
| /openbsd/src/usr.bin/less/ |
| D | linenum.c | 47 struct linenum_info *next; /* Link to next in the list */ member 88 p->next = p+1; in clr_linenum() 89 pool[NPOOL-2].next = NULL; in clr_linenum() 97 anchor.next = anchor.prev = &anchor; in clr_linenum() 115 if (p == &anchor || p->next == &anchor) in calcgap() 117 p->gap = p->next->pos - p->prev->pos; in calcgap() 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() [all …]
|
| /openbsd/src/usr.sbin/mrouted/ |
| D | callout.c | 21 struct timeout_q *next; /* next event */ member 58 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() [all …]
|