| /mirbsd/src/usr.bin/find/ |
| D | operator.c | 61 (*planp) = (*planp)->next; in yanknode() 62 node->next = NULL; in yanknode() 75 PLAN *next; /* temp node holding subexpression results */ in yankexpr() local 93 if ((next = yankexpr(planp)) == NULL) in yankexpr() 102 if (next->type == N_CLOSEPAREN) { in yankexpr() 111 tail = subplan = next; in yankexpr() 113 tail->next = next; in yankexpr() 114 tail = next; in yankexpr() 116 tail->next = NULL; in yankexpr() 151 tail->next = expr; in paren_squish() [all …]
|
| /mirbsd/src/gnu/usr.bin/lynx/WWW/Library/Implementation/ |
| D | HTList.c | 29 newList->next = NULL; in HTList_new() 41 me = me->next; in HTList_delete() 54 if (!(start && start->next && (cur = start->next->next))) in HTList_reverse() 56 start->next->next = NULL; in HTList_reverse() 58 succ = cur->next; in HTList_reverse() 59 cur->next = start->next; in HTList_reverse() 60 start->next = cur; in HTList_reverse() 81 if (!(tail && tail->next)) in HTList_appendList() 84 while (temp->next) in HTList_appendList() 85 temp = temp->next; in HTList_appendList() [all …]
|
| /mirbsd/src/gnu/usr.bin/rcs/src/ |
| D | rcsrev.c | 378 store1(store, next) in store1() argument 380 struct hshentry *next; 389 p->first = next; 405 register struct hshentry * next; local 413 if (!(next = Head)) { 422 while ((result=cmpnumfld(revno,next->num,1)) < 0) { 423 store1(&store, next); 424 next = next->next; 425 if (!next) { 438 branchnum = next->num; /* works even for empty revno*/ [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/NetWare/ |
| D | nwhashcls.cpp | 40 list->next = NULL; in insert() 44 list->next = MemListHash[Bucket]; in insert() 64 HASHNODE *next =list; in remove() local 70 list = list->next; in remove() 74 next = list->next; in remove() 84 prev->next = next; in remove() 86 MemListHash[Bucket]=next; in remove() 105 HASHNODE *next = MemListHash[i]; in forAll() local 106 while(next) in forAll() 108 HASHNODE *temp = next->next; in forAll() [all …]
|
| /mirbsd/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 …]
|
| /mirbsd/src/sbin/fsck_msdos/ |
| D | fat.c | 55 checkclnum(struct bootblock *boot, int fat, cl_t cl, cl_t *next) in checkclnum() argument 57 if (*next >= (CLUST_RSRVD&boot->ClustMask)) in checkclnum() 58 *next |= ~boot->ClustMask; in checkclnum() 59 if (*next == CLUST_FREE) { in checkclnum() 63 if (*next == CLUST_BAD) { in checkclnum() 67 if (*next < CLUST_FIRST in checkclnum() 68 || (*next >= boot->NumClusters && *next < CLUST_EOFS)) { in checkclnum() 71 *next < CLUST_RSRVD ? "out of range" : "reserved", in checkclnum() 72 *next&boot->ClustMask); in checkclnum() 74 *next = CLUST_EOF; in checkclnum() [all …]
|
| /mirbsd/src/usr.sbin/dhcpd/ |
| D | dispatch.c | 71 struct interface_info *last, *next; in discover_interfaces() local 106 for (tmp = interfaces; tmp; tmp = tmp->next) in discover_interfaces() 123 tmp->next = interfaces; in discover_interfaces() 208 for (tmp = interfaces; tmp; tmp = next) { in discover_interfaces() 209 next = tmp->next; in discover_interfaces() 216 interfaces = interfaces->next; in discover_interfaces() 218 last->next = tmp->next; in discover_interfaces() 230 interfaces = interfaces->next; in discover_interfaces() 232 last->next = tmp->next; in discover_interfaces() 261 for (tmp = interfaces; tmp; tmp = tmp->next) in discover_interfaces() [all …]
|
| /mirbsd/src/usr.bin/yacc/ |
| D | mkpar.c | 118 temp->next = actions; in get_shifts() 158 action *temp, *prev, *next; in add_reduce() local 161 for (next = actions; next && next->symbol < symbol; next = next->next) in add_reduce() 162 prev = next; in add_reduce() 164 while (next && next->symbol == symbol && next->action_code == SHIFT) in add_reduce() 166 prev = next; in add_reduce() 167 next = next->next; in add_reduce() 170 while (next && next->symbol == symbol && in add_reduce() 171 next->action_code == REDUCE && next->number < ruleno) in add_reduce() 173 prev = next; in add_reduce() [all …]
|
| /mirbsd/src/lib/libexpat/xmlwf/ |
| D | xmlmime.c | 90 const char *next, *p; in getXMLCharset() local 93 next = buf; in getXMLCharset() 94 p = getTok(&next); in getXMLCharset() 95 if (matchkey(p, next, "text")) in getXMLCharset() 97 else if (!matchkey(p, next, "application")) in getXMLCharset() 99 p = getTok(&next); in getXMLCharset() 102 p = getTok(&next); in getXMLCharset() 104 if (!matchkey(p, next, "xml") && charset[0] == '\0') in getXMLCharset() 107 p = getTok(&next); in getXMLCharset() 110 p = getTok(&next); in getXMLCharset() [all …]
|
| /mirbsd/src/usr.bin/m4/ |
| D | tokenizer.l | 76 char *next; in parse_radix() local 80 base = strtol(yytext+2, &next, 0); in parse_radix() 81 if (base > 36 || next == NULL) { in parse_radix() 84 next++; in parse_radix() 85 while (*next != 0) { in parse_radix() 86 if (*next >= '0' && *next <= '9') in parse_radix() 87 l = base * l + *next - '0'; in parse_radix() 88 else if (*next >= 'a' && *next <= 'z') in parse_radix() 89 l = base * l + *next - 'a' + 10; in parse_radix() 90 else if (*next >= 'A' && *next <= 'Z') in parse_radix() [all …]
|
| /mirbsd/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 …]
|
| /mirbsd/src/sys/dev/raidframe/ |
| D | rf_map.c | 138 asmList = asmList->next; in rf_MapAccess() 143 asm_p->next = t_asm; in rf_MapAccess() 144 asm_p = asm_p->next; in rf_MapAccess() 169 pdaList = pdaList->next; in rf_MapAccess() 174 pda_p->next = t_pda; in rf_MapAccess() 175 pda_p = pda_p->next; in rf_MapAccess() 226 pdaList = pdaList->next; in rf_MapAccess() 248 RF_ASSERT(pdaList && pdaList->next); in rf_MapAccess() 250 pdaList = pdaList->next; in rf_MapAccess() 255 pdaList = pdaList->next; in rf_MapAccess() [all …]
|
| D | rf_paritylog.c | 92 raidPtr->parityLogDiskQueue.freeCommonList->next; in rf_AllocParityLogCommonData() 106 common->next = NULL; in rf_AllocParityLogCommonData() 123 common->next = raidPtr->parityLogDiskQueue.freeCommonList; in rf_FreeParityLogCommonData() 143 raidPtr->parityLogDiskQueue.freeDataList->next; in rf_AllocParityLogData() 150 data->next = NULL; in rf_AllocParityLogData() 171 nextItem = data->next; in rf_FreeParityLogData() 172 data->next = raidPtr->parityLogDiskQueue.freeDataList; in rf_FreeParityLogData() 198 RF_ASSERT(data->next == NULL); in rf_EnqueueParityLogData() 203 RF_ASSERT((*tail)->next == NULL); in rf_EnqueueParityLogData() 204 data->next = *head; in rf_EnqueueParityLogData() [all …]
|
| D | rf_memchunk.c | 74 RF_ChunkHdr_t *next; member 97 p = p->next; 102 hdr = hdr->next; 145 chunk_desc_free_list = p->next; 150 p->next = NULL; 167 for (hdr = chunklist; hdr; hdr = hdr->next) 171 hdr->list = p->next; 172 p->next = NULL; 193 for (hdr = chunklist; hdr && hdr->size < chunk->size; ht = hdr, hdr = hdr->next); 195 chunk->next = hdr->list; [all …]
|
| /mirbsd/src/gnu/usr.bin/binutils/libiberty/ |
| D | objalloc.c | 63 struct objalloc_chunk *next; member 105 chunk->next = NULL; in objalloc_create() 143 chunk->next = (struct objalloc_chunk *) o->chunks; in _objalloc_alloc() 157 chunk->next = (struct objalloc_chunk *) o->chunks; in _objalloc_alloc() 179 struct objalloc_chunk *next; in objalloc_free() local 181 next = l->next; in objalloc_free() 183 l = next; in objalloc_free() 201 for (p = (struct objalloc_chunk *) o->chunks; p != NULL; p = p->next) in objalloc_free_block() 236 struct objalloc_chunk *next; in objalloc_free_block() local 238 next = q->next; in objalloc_free_block() [all …]
|
| /mirbsd/src/gnu/usr.bin/binutils/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 …]
|
| /mirbsd/src/lib/libc/crypt/ |
| D | pwd_gensalt.c | 54 char *next, *now, *oldnext; in pwd_gensalt() local 60 next = login_getcapstr(lc, "ypcipher", NULL, NULL); in pwd_gensalt() 61 if (next == NULL && (next = strdup(YPCIPHER_DEF)) == NULL) { in pwd_gensalt() 68 next = login_getcapstr(lc, "localcipher", NULL, NULL); in pwd_gensalt() 69 if (next == NULL && (next = strdup(LOCALCIPHER_DEF)) == NULL) { in pwd_gensalt() 76 oldnext = next; in pwd_gensalt() 77 now = strsep(&next, ","); in pwd_gensalt() 88 if (next) in pwd_gensalt() 89 rounds = atol(next); in pwd_gensalt() 116 if (next) in pwd_gensalt() [all …]
|
| /mirbsd/src/gnu/usr.bin/texinfo/util/ |
| D | install-info.c | 62 struct spec_section *next; member 73 struct spec_entry *next; member 88 struct node *next; member 111 struct menu_section *next; member 752 for (spec = input_sections; spec; spec = spec->next) in output_dirfile() 760 for (spec = input_sections; spec; spec = spec->next) in output_dirfile() 766 for (entry = entries_to_add; entry; entry = entry->next) in output_dirfile() 774 for (entry = entries_to_add; entry; entry = entry->next) in output_dirfile() 800 spec1 = spec1->next) in output_dirfile() 862 struct spec_section *next in parse_input() local [all …]
|
| /mirbsd/src/usr.bin/less/ |
| D | linenum.c | 44 struct linenum_info *next; /* Link to next in the list */ member 87 p->next = p+1; in clr_linenum() 88 pool[NPOOL-2].next = NULL; in clr_linenum() 96 anchor.next = anchor.prev = &anchor; in clr_linenum() 115 if (p == &anchor || p->next == &anchor) 117 p->gap = p->next->pos - p->prev->pos; 140 for (p = anchor.next; p != &anchor && p->pos < pos; p = p->next) 154 freelist = freelist->next; 169 new->next = nextp; 175 prevp->next = new; [all …]
|
| /mirbsd/src/gnu/usr.bin/cvs/src/ |
| D | hash.c | 63 listcache = listcache->next; in getlist() 64 list->next = NULL; in getlist() 76 node->next = node->prev = node; in getlist() 104 while (p->next != p) in dellist() 105 delnode (p->next); in dellist() 118 p->next = nodecache; in dellist() 131 tmp->next = listcache; in dellist() 150 p->next->prev = p->prev; in removenode() 151 p->prev->next = p->next; in removenode() 169 for (p = head->next; p != head; p = n) in mergelists() [all …]
|
| /mirbsd/src/gnu/usr.bin/texinfo/info/ |
| D | window.c | 122 for (numwins = 0, win = windows; win; win = win->next, numwins++); in window_new_screen_size() 134 if (!windows->next) in window_new_screen_size() 144 for (win = windows; win; win = win->next) in window_new_screen_size() 169 if ((!windows->next) && ((windows->height == 0) && (delta_height < 0))) in window_new_screen_size() 180 for (win = windows; win; win = win->next) in window_new_screen_size() 206 if (!win->next) in window_new_screen_size() 221 if ((delta_each < 0) && ((windows->height != 0) && windows->next)) in window_new_screen_size() 239 for (win = windows; win; win = win->next) in window_new_screen_size() 253 win= win->next; in window_new_screen_size() 318 window->next = active_window; in window_make_window() [all …]
|
| /mirbsd/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 …]
|
| /mirbsd/src/bin/mksh/ |
| D | lalloc.c | 40 ap->next = NULL; in ainit() 59 while (ap->next != lp) in findptr() 60 if ((ap = ap->next) == NULL) { in findptr() 94 pp->next = lp->next; in aresize() 105 lp->next = ap->next; in aresize() 106 ap->next = lp; in aresize() 119 pp->next = lp->next; in afree() 131 while ((lp = ap->next) != NULL) { in afreeall() 133 ap->next = lp->next; in afreeall()
|
| /mirbsd/src/usr.sbin/ntpd/ |
| D | parse.y | 85 struct ntp_addr *h, *next; variable 95 for (; h != NULL; h = next) { 96 next = h->next; 117 struct ntp_addr *h, *next; variable 122 next = h->next; 132 h->next = NULL; 134 next = NULL; 147 h = next; 155 struct ntp_addr *h, *next; variable 158 for (h = $2->a; h != NULL; h = next) { [all …]
|
| /mirbsd/src/lib/libc/stdlib/ |
| D | malloc_mmap.c | 98 struct pginfo *next; /* next on the free list */ member 111 struct pgfree *next; /* next run of free pages */ member 152 struct pdinfo *next; member 275 p[i].next = pgfree_list; in alloc_pgfree() 280 pgfree_list = p->next; in alloc_pgfree() 296 p[i].next = pginfo_list; in alloc_pginfo() 301 pginfo_list = p->next; in alloc_pginfo() 309 p->next = pgfree_list; in put_pgfree() 316 p->next = pginfo_list; in put_pginfo() 352 for (spi = (*pdi)->next; in pdir_lookup() [all …]
|