| /src/usr.bin/users/ |
| users.c | 61 struct utmpentry *from, *ehead, *save, **nextp; local 89 for (nextp = &ehead; 90 (*nextp) && strcmp(from->name, (*nextp)->name) > 0; 91 nextp = &(*nextp)->next) 95 save->next = *nextp; 96 *nextp = save;
|
| /src/lib/libc/db/hash/ |
| page.h | 88 BUFHEAD *nextp; member in struct:__anon317
|
| /src/tests/libexec/ld.elf_so/ |
| t_dladdr.c | 134 uintptr_t endp, nextp; local 142 nextp = pagesize*((endp + pagesize - 1)/pagesize); 150 REQUIRE_LIBC(page = mmap((void *)nextp, pagesize, PROT_NONE, MAP_ANON,
|
| /src/distrib/utils/more/ |
| linenum.c | 165 struct linenum *nextp; local 177 nextp = p; 202 new->next = nextp; 207 nextp->prev = new; 214 calcgap(nextp);
|
| /src/usr.bin/who/ |
| utmpentry.c | 186 struct utmpentry **nextp = &ehead; local 209 *nextp = ep; 210 nextp = &(ep->next); 234 *nextp = ep; 235 nextp = &(ep->next); 246 for (nextp = &ehead; 247 (*nextp) && strcmp(from->line, (*nextp)->line) > 0; 248 nextp = &(*nextp)->next [all...] |
| /src/usr.bin/rdist/ |
| defs.h | 131 struct linkbuf *nextp; member in struct:linkbuf
|
| /src/sys/dist/pf/net/ |
| pf_if.c | 755 struct pfi_kif *p, *nextp; local 759 for (p = RB_MIN(pfi_ifhead, &pfi_ifs); p; p = nextp) { 760 nextp = RB_NEXT(pfi_ifhead, &pfi_ifs, p); 772 nextp = RB_NEXT(pfi_ifhead, &pfi_ifs, p);
|
| /src/sbin/ifconfig/ |
| parse.c | 565 const struct parser *nextp; local 575 nextp = b->b_nextparser; 577 nextp, nextp ? nextp->p_name : "(null)"); 578 if (nextp == NULL) { 588 matchfunc = nextp->p_methods->pm_match; 589 rc = (*matchfunc)(nextp, im, &tmpm, argidx, arg); 594 dbg_warnx("%s: branch %s ok", __func__, nextp->p_name); 603 nextp->p_name) [all...] |
| /src/usr.bin/w/ |
| w.c | 119 } *ehead = NULL, **nextp = &ehead; variable in typeref:struct:entry 253 *nextp = ep; 254 nextp = &(ep->next); 309 *nextp = ep; 310 nextp = &(ep->next); 379 for (nextp = &ehead; 380 (*nextp) && from->idle >= (*nextp)->idle; 381 nextp = &(*nextp)->next [all...] |
| /src/sys/dev/pci/ixgbe/ |
| ix_txrx.c | 1828 int i, nextp, processed = 0; local 2012 nextp = ((staterr & IXGBE_RXDADV_NEXTP_MASK) >> 2017 nextp = i + 1; 2018 if (nextp == sc->num_rx_desc) 2019 nextp = 0; 2021 nbuf = &rxr->rx_buffers[nextp];
|
| /src/sys/nfs/ |
| nfs_subs.c | 962 struct mbuf **nextp = &m1->m_next; local 971 m2->m_next = *nextp; 972 *nextp = m2; 973 nextp = &m2->m_next;
|
| /src/usr.bin/deroff/ |
| deroff.c | 419 struct chain *nextp; member in struct:chain 436 for (q = namechain ; q; q = q->nextp) 445 q->nextp = namechain;
|
| /src/lib/libcurses/ |
| curses_private.h | 101 struct __window *nextp, *orig; /* Subwindows list and parent. */ member in struct:__window 161 struct __winlist *nextp; /* Next window. */ member in struct:__winlist
|
| /src/sys/dev/pci/igc/ |
| if_igc.c | 2166 int nextp = igc_rxdesc_incr(sc, id); local 2168 nxbuf = &rxr->rx_buffers[nextp];
|
| /src/usr.sbin/syslogd/ |
| syslogd.c | 3162 struct filed *f, **nextp; local 3331 nextp = &f; 3416 *nextp = f; 3417 nextp = &f->f_next; 3431 struct filed *f, *newf, **nextp, *f2; local 3533 nextp = &newf; 3538 *nextp = (struct filed *)calloc(1, sizeof(*f)); 3539 cfline(0, "*.ERR\t/dev/console", *nextp, "*", "*"); 3540 (*nextp)->f_next = (struct filed *)calloc(1, sizeof(*f)); 3541 cfline(0, "*.PANIC\t*", (*nextp)->f_next, "*", "*") [all...] |