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

/freebsd-current/cddl/contrib/opensolaris/tools/ctf/common/
H A Dlist.c61 list_t **nextp; local
63 for (nextp = list; *nextp; nextp = &((*nextp)->l_next)) {
64 if (cmp((*nextp)->l_data, data) > 0)
68 list_add(nextp, data);
/freebsd-current/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
[all...]
H A Dht-internal.h230 struct type **p, **nextp, *next; \
236 nextp = &(*p)->field.hte_next; \
237 next = *nextp; \
242 p = nextp; \
/freebsd-current/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
[all...]
H A Dht-internal.h230 struct type **p, **nextp, *next; \
236 nextp = &(*p)->field.hte_next; \
237 next = *nextp; \
242 p = nextp; \
/freebsd-current/lib/libc/db/hash/
H A Dpage.h86 BUFHEAD *nextp; member in struct:__anon89
H A Dhash_bigkey.c569 if (!(ret->nextp =
573 ret->nextp = NULL;
H A Dhash_page.c312 bufp = ret.nextp;
317 last_bfp = ret.nextp;
/freebsd-current/sbin/dmesg/
H A Ddmesg.c67 char *bp, *ep, *memf, *nextp, *nlistf, *p, *q, *visbp; local
174 for (; p < ep; p = nextp) {
175 nextp = memchr(p, '\n', ep - p);
176 nextp++;
190 (void)strvisx(visbp, p, nextp - p, 0);
/freebsd-current/contrib/less/
H A Dlinenum.c127 struct linenum_info *nextp; local
139 nextp = p;
164 new->next = nextp;
169 nextp->prev = new;
176 calcgap(nextp);
/freebsd-current/bin/date/
H A Dvary.c84 struct vary *result, **nextp; local
90 nextp = &v->next;
92 nextp = &result;
94 if ((*nextp = (struct vary *)malloc(sizeof(struct vary))) == NULL)
96 (*nextp)->arg = arg;
97 (*nextp)->next = NULL;
/freebsd-current/usr.bin/w/
H A Dw.c107 } *ep, *ehead = NULL, **nextp = &ehead; variable in typeref:struct:entry
228 *nextp = ep;
229 nextp = &ep->next;
398 for (nextp = &ehead;
399 (*nextp) && from->idle >= (*nextp)->idle;
400 nextp = &(*nextp)->next)
404 save->next = *nextp;
405 *nextp
[all...]
/freebsd-current/sys/netpfil/pf/
H A Dpf_if.c889 struct pfi_kkif *p, *nextp; local
893 for (p = RB_MIN(pfi_ifhead, &V_pfi_ifs); p; p = nextp) {
894 nextp = RB_NEXT(pfi_ifhead, &V_pfi_ifs, p);
902 nextp = RB_NEXT(pfi_ifhead, &V_pfi_ifs, p);
/freebsd-current/lib/libc/gen/
H A Dglob-compat11.c876 Char c, k, *nextp, *nextn; local
881 nextp = NULL;
893 nextp = pat - 1;
934 pat = nextp;
H A Dglob.c908 Char c, k, *nextp, *nextn; local
913 nextp = NULL;
925 nextp = pat - 1;
966 pat = nextp;
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dglob.c910 Char *nextp = NULL; local
925 nextp = pat - 1;
966 pat = nextp;
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Ddsl_dir.c413 getcomponent(const char *path, char *component, const char **nextp) argument
456 *nextp = p;
/freebsd-current/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Ddtrace.c8108 dtrace_probe_t **nextp, **prevp;
8127 nextp = DTRACE_HASHNEXT(hash, new);
8128 ASSERT(*nextp == NULL && *(DTRACE_HASHPREV(hash, new)) == NULL);
8129 *nextp = bucket->dthb_chain;
8178 dtrace_probe_t **nextp = DTRACE_HASHNEXT(hash, probe);
8191 if (*nextp == NULL) {
8215 bucket->dthb_chain = *nextp;
8217 *(DTRACE_HASHNEXT(hash, *prevp)) = *nextp;
8220 if (*nextp != NULL)
8221 *(DTRACE_HASHPREV(hash, *nextp))
[all...]

Completed in 359 milliseconds