Home
last modified time | relevance | path

Searched refs:nextp (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/ntp/sntp/libevent/
H A Dutil-internal.h180 struct type *elm1, *elm2, **nextp; \
199 nextp = &LIST_FIRST((dlist)); \
202 EVUTIL_ASSERT(*nextp == elm1); \
203 EVUTIL_ASSERT(nextp == elm1->field.le_prev); \
204 nextp = &LIST_NEXT(elm1, field); \
205 elm1 = *nextp; \
216 struct type *elm1, *elm2, **nextp; \
235 nextp = &TAILQ_FIRST((tailq)); \
238 EVUTIL_ASSERT(*nextp == elm1); \
239 EVUTIL_ASSERT(nextp == elm1->field.tqe_prev); \
[all …]
H A Dht-internal.h230 struct type **p, **nextp, *next; \
236 nextp = &(*p)->field.hte_next; \
237 next = *nextp; \
242 p = nextp; \
/freebsd/contrib/libevent/
H A Dutil-internal.h180 struct type *elm1, *elm2, **nextp; \
199 nextp = &LIST_FIRST((dlist)); \
202 EVUTIL_ASSERT(*nextp == elm1); \
203 EVUTIL_ASSERT(nextp == elm1->field.le_prev); \
204 nextp = &LIST_NEXT(elm1, field); \
205 elm1 = *nextp; \
216 struct type *elm1, *elm2, **nextp; \
235 nextp = &TAILQ_FIRST((tailq)); \
238 EVUTIL_ASSERT(*nextp == elm1); \
239 EVUTIL_ASSERT(nextp == elm1->field.tqe_prev); \
[all …]
H A Dht-internal.h230 struct type **p, **nextp, *next; \
236 nextp = &(*p)->field.hte_next; \
237 next = *nextp; \
242 p = nextp; \
/freebsd/cddl/contrib/opensolaris/tools/ctf/common/
H A Dlist.c61 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/sbin/dmesg/
H A Ddmesg.c67 char *bp, *ep, *memf, *nextp, *nlistf, *p, *q, *visbp; in main() local
174 for (; p < ep; p = nextp) { in main()
175 nextp = memchr(p, '\n', ep - p); in main()
176 nextp++; in main()
190 (void)strvisx(visbp, p, nextp - p, 0); in main()
/freebsd/usr.bin/w/
H A Dw.c107 } *ep, *ehead = NULL, **nextp = &ehead; variable
232 *nextp = ep; in main()
233 nextp = &ep->next; in main()
403 for (nextp = &ehead; in main()
404 (*nextp) && from->idle >= (*nextp)->idle; in main()
405 nextp = &(*nextp)->next) in main()
409 save->next = *nextp; in main()
410 *nextp = save; in main()
/freebsd/bin/date/
H A Dvary.c84 struct vary *result, **nextp; in vary_append() local
90 nextp = &v->next; in vary_append()
92 nextp = &result; in vary_append()
94 if ((*nextp = (struct vary *)malloc(sizeof(struct vary))) == NULL) in vary_append()
96 (*nextp)->arg = arg; in vary_append()
97 (*nextp)->next = NULL; in vary_append()
/freebsd/contrib/less/
H A Dlinenum.c126 struct linenum_info *nextp; in add_lnum()
138 nextp = p; in add_lnum()
163 new->next = nextp; in add_lnum()
168 nextp->prev = new; in add_lnum()
175 calcgap(nextp); in add_lnum()
127 struct linenum_info *nextp; add_lnum() local
/freebsd/lib/libc/db/hash/
H A Dpage.h86 BUFHEAD *nextp; member
H A Dhash_bigkey.c569 if (!(ret->nextp = in __big_split()
573 ret->nextp = NULL; in __big_split()
H A Dhash_page.c312 bufp = ret.nextp; in ugly_split()
317 last_bfp = ret.nextp; in ugly_split()
/freebsd/lib/libc/gen/
H A Dglob-compat11.c876 Char c, k, *nextp, *nextn; in match() local
881 nextp = NULL; in match()
893 nextp = pat - 1; in match()
934 pat = nextp; in match()
H A Dglob.c908 Char c, k, *nextp, *nextn; in match() local
913 nextp = NULL; in match()
925 nextp = pat - 1; in match()
966 pat = nextp; in match()
/freebsd/sys/netpfil/pf/
H A Dpf_if.c937 struct pfi_kkif *p, *nextp; in pfi_get_ifaces() local
941 for (p = RB_MIN(pfi_ifhead, &V_pfi_ifs); p; p = nextp) { in pfi_get_ifaces()
942 nextp = RB_NEXT(pfi_ifhead, &V_pfi_ifs, p); in pfi_get_ifaces()
950 nextp = RB_NEXT(pfi_ifhead, &V_pfi_ifs, p); in pfi_get_ifaces()
/freebsd/crypto/openssh/openbsd-compat/
H A Dglob.c910 Char *nextp = NULL; local
925 nextp = pat - 1;
966 pat = nextp;
/freebsd/sys/contrib/openzfs/module/zfs/
H A Ddsl_dir.c416 getcomponent(const char *path, char *component, const char **nextp) in getcomponent() argument
459 *nextp = p; in getcomponent()
/freebsd/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Ddtrace.c8110 dtrace_probe_t **nextp, **prevp; local
8129 nextp = DTRACE_HASHNEXT(hash, new);
8130 ASSERT(*nextp == NULL && *(DTRACE_HASHPREV(hash, new)) == NULL);
8131 *nextp = bucket->dthb_chain;
8180 dtrace_probe_t **nextp = DTRACE_HASHNEXT(hash, probe); local
8193 if (*nextp == NULL) {
8217 bucket->dthb_chain = *nextp;
8219 *(DTRACE_HASHNEXT(hash, *prevp)) = *nextp;
8222 if (*nextp != NULL)
8223 *(DTRACE_HASHPREV(hash, *nextp)) = *prevp;