| /freebsd-10-stable/contrib/ntp/sntp/libevent/ |
| D | util-internal.h | 152 struct type *elm1, *elm2, **nextp; \ 171 nextp = &LIST_FIRST((dlist)); \ 174 EVUTIL_ASSERT(*nextp == elm1); \ 175 EVUTIL_ASSERT(nextp == elm1->field.le_prev); \ 176 nextp = &LIST_NEXT(elm1, field); \ 177 elm1 = *nextp; \ 188 struct type *elm1, *elm2, **nextp; \ 207 nextp = &TAILQ_FIRST((tailq)); \ 210 EVUTIL_ASSERT(*nextp == elm1); \ 211 EVUTIL_ASSERT(nextp == elm1->field.tqe_prev); \ [all …]
|
| D | ht-internal.h | 230 struct type **p, **nextp, *next; \ 236 nextp = &(*p)->field.hte_next; \ 237 next = *nextp; \ 242 p = nextp; \
|
| /freebsd-10-stable/cddl/contrib/opensolaris/tools/ctf/common/ |
| D | list.c | 61 list_t **nextp; in slist_add() local 63 for (nextp = list; *nextp; nextp = &((*nextp)->l_next)) { in slist_add() 64 if (cmp((*nextp)->l_data, data) > 0) in slist_add() 68 list_add(nextp, data); in slist_add()
|
| /freebsd-10-stable/usr.bin/w/ |
| D | w.c | 113 } *ep, *ehead = NULL, **nextp = &ehead; variable 223 *nextp = ep; in main() 224 nextp = &ep->next; in main() 324 for (nextp = &ehead; in main() 325 (*nextp) && from->idle >= (*nextp)->idle; in main() 326 nextp = &(*nextp)->next) in main() 330 save->next = *nextp; in main() 331 *nextp = save; in main()
|
| /freebsd-10-stable/sbin/dmesg/ |
| D | dmesg.c | 79 char *bp, *ep, *memf, *nextp, *nlistf, *p, *q, *visbp; in main() local 186 for (; p < ep; p = nextp) { in main() 187 nextp = memchr(p, '\n', ep - p); in main() 188 nextp++; in main() 202 (void)strvisx(visbp, p, nextp - p, 0); in main()
|
| /freebsd-10-stable/bin/date/ |
| D | vary.c | 85 struct vary *result, **nextp; in vary_append() local 91 nextp = &v->next; in vary_append() 93 nextp = &result; in vary_append() 95 if ((*nextp = (struct vary *)malloc(sizeof(struct vary))) == NULL) in vary_append() 97 (*nextp)->arg = arg; in vary_append() 98 (*nextp)->next = NULL; in vary_append()
|
| /freebsd-10-stable/contrib/less/ |
| D | linenum.c | 130 struct linenum_info *nextp; local 142 nextp = p; 167 new->next = nextp; 172 nextp->prev = new; 179 calcgap(nextp);
|
| /freebsd-10-stable/contrib/groff/src/devices/grotty/ |
| D | tty.cpp | 653 glyph *nextp; in end_page() local 658 for (p = g; p; delete p, p = nextp) { in end_page() 659 nextp = p->next; in end_page() 664 if (nextp && p->hpos == nextp->hpos) { in end_page() 666 nextp->draw_mode() == VDRAW_MODE) { in end_page() 668 nextp->code = in end_page() 670 + ((nextp->mode & (START_LINE|END_LINE)) >> 6)]; in end_page() 672 nextp->code = '+'; in end_page() 675 if (p->draw_mode() != 0 && p->draw_mode() == nextp->draw_mode()) { in end_page() 676 nextp->code = p->code; in end_page()
|
| /freebsd-10-stable/contrib/gcc/ |
| D | var-tracking.c | 748 location_chain *nextp; in unshare_variable() local 751 nextp = &new_var->var_part[i].loc_chain; in unshare_variable() 760 *nextp = new_lc; in unshare_variable() 761 nextp = &new_lc->next; in unshare_variable() 854 attrs *nextp; in var_reg_delete_and_set() local 858 nextp = &set->regs[REGNO (loc)]; in var_reg_delete_and_set() 859 for (node = *nextp; node; node = next) in var_reg_delete_and_set() 866 *nextp = next; in var_reg_delete_and_set() 871 nextp = &node->next; in var_reg_delete_and_set() 1236 location_chain *nextp; in variable_union() local [all …]
|
| D | c-parser.c | 2695 tree list = NULL_TREE, *nextp = &list; in c_parser_parms_declarator() local 2699 *nextp = build_tree_list (NULL_TREE, in c_parser_parms_declarator() 2701 nextp = & TREE_CHAIN (*nextp); in c_parser_parms_declarator()
|
| /freebsd-10-stable/lib/libc/db/hash/ |
| D | page.h | 87 BUFHEAD *nextp; member
|
| D | hash_bigkey.c | 573 if (!(ret->nextp = in __big_split() 577 ret->nextp = NULL; in __big_split()
|
| D | hash_page.c | 316 bufp = ret.nextp; in ugly_split() 321 last_bfp = ret.nextp; in ugly_split()
|
| /freebsd-10-stable/usr.sbin/syslogd/ |
| D | syslogd.c | 1587 readconfigfile(FILE *cf, struct filed **nextp, int allow_includes) in readconfigfile() argument 1647 readconfigfile(cf2, nextp, 0); in readconfigfile() 1710 *nextp = f; in readconfigfile() 1711 nextp = &f->f_next; in readconfigfile() 1724 struct filed *f, *next, **nextp; in init() local 1775 nextp = &Files; in init() 1780 *nextp = (struct filed *)calloc(1, sizeof(*f)); in init() 1781 if (*nextp == NULL) { in init() 1785 cfline("*.ERR\t/dev/console", *nextp, "*", "*"); in init() 1786 (*nextp)->f_next = (struct filed *)calloc(1, sizeof(*f)); in init() [all …]
|
| /freebsd-10-stable/sys/netpfil/pf/ |
| D | pf_if.c | 692 struct pfi_kif *p, *nextp; in pfi_get_ifaces() local 695 for (p = RB_MIN(pfi_ifhead, &V_pfi_ifs); p; p = nextp) { in pfi_get_ifaces() 696 nextp = RB_NEXT(pfi_ifhead, &V_pfi_ifs, p); in pfi_get_ifaces() 704 nextp = RB_NEXT(pfi_ifhead, &V_pfi_ifs, p); in pfi_get_ifaces()
|
| /freebsd-10-stable/sys/dev/ixgbe/ |
| D | ixv_txrx.c | 1640 int i, nextp, processed = 0; in ixv_rxeof() local 1722 nextp = ((staterr & IXGBE_RXDADV_NEXTP_MASK) >> in ixv_rxeof() 1725 nextp = i + 1; in ixv_rxeof() 1726 if (nextp == adapter->num_rx_desc) in ixv_rxeof() 1727 nextp = 0; in ixv_rxeof() 1729 nbuf = &rxr->rx_buffers[nextp]; in ixv_rxeof()
|
| D | ix_txrx.c | 1670 int i, nextp, processed = 0; local 1749 nextp = ((staterr & IXGBE_RXDADV_NEXTP_MASK) >> 1752 nextp = i + 1; 1753 if (nextp == adapter->num_rx_desc) 1754 nextp = 0; 1756 nbuf = &rxr->rx_buffers[nextp];
|
| /freebsd-10-stable/sys/dev/ixl/ |
| D | ixl_txrx.c | 1516 int i, nextp, processed = 0; in ixl_rxeof() local 1589 nextp = i + 1; in ixl_rxeof() 1590 if (nextp == que->num_desc) in ixl_rxeof() 1591 nextp = 0; in ixl_rxeof() 1592 nbuf = &rxr->buffers[nextp]; in ixl_rxeof()
|
| /freebsd-10-stable/gnu/usr.bin/grep/ |
| D | dfa.c | 2835 unsigned char const *nextp; in dfaexec() local 2839 nextp = p; in dfaexec() 2840 s = transit_state(d, s, &nextp); in dfaexec() 2841 p = nextp; in dfaexec() 2896 unsigned char const *nextp; in dfaexec() local 2897 nextp = p; in dfaexec() 2898 s = transit_state(d, s, &nextp); in dfaexec() 2899 p = nextp; in dfaexec()
|
| /freebsd-10-stable/sys/contrib/octeon-sdk/cvmx-malloc/ |
| D | malloc.c | 3430 mchunkptr nextp; /* next chunk to consolidate */ local 3469 nextp = p->fd; 3508 } while ( (p = nextp) != 0);
|
| /freebsd-10-stable/sys/dev/vmware/vmxnet3/ |
| D | if_vmx.c | 2178 goto nextp; in vmxnet3_rxq_eof() 2186 goto nextp; in vmxnet3_rxq_eof() 2208 goto nextp; in vmxnet3_rxq_eof() 2221 goto nextp; in vmxnet3_rxq_eof() 2239 nextp: in vmxnet3_rxq_eof()
|
| /freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ |
| D | dsl_dir.c | 356 getcomponent(const char *path, char *component, const char **nextp) in getcomponent() argument 401 *nextp = p; in getcomponent()
|
| /freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/dtrace/ |
| D | dtrace.c | 7902 dtrace_probe_t **nextp, **prevp; local 7921 nextp = DTRACE_HASHNEXT(hash, new); 7922 ASSERT(*nextp == NULL && *(DTRACE_HASHPREV(hash, new)) == NULL); 7923 *nextp = bucket->dthb_chain; 7972 dtrace_probe_t **nextp = DTRACE_HASHNEXT(hash, probe); local 7985 if (*nextp == NULL) { 8009 bucket->dthb_chain = *nextp; 8011 *(DTRACE_HASHNEXT(hash, *prevp)) = *nextp; 8014 if (*nextp != NULL) 8015 *(DTRACE_HASHPREV(hash, *nextp)) = *prevp;
|
| /freebsd-10-stable/contrib/binutils/ld/ |
| D | ldlang.c | 1020 lang_output_section_statement_type **nextp; in output_section_statement_newfunc() local 1055 nextp = &ret->s.output_section_statement.next; in output_section_statement_newfunc() 1058 (lang_statement_union_type **) nextp); in output_section_statement_newfunc()
|