| /freebsd-13-stable/contrib/libevent/ |
| HD | util-internal.h | 180 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 …]
|
| HD | ht-internal.h | 230 struct type **p, **nextp, *next; \ 236 nextp = &(*p)->field.hte_next; \ 237 next = *nextp; \ 242 p = nextp; \
|
| /freebsd-13-stable/contrib/ntp/sntp/libevent/ |
| HD | util-internal.h | 180 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 …]
|
| HD | ht-internal.h | 230 struct type **p, **nextp, *next; \ 236 nextp = &(*p)->field.hte_next; \ 237 next = *nextp; \ 242 p = nextp; \
|
| /freebsd-13-stable/cddl/contrib/opensolaris/tools/ctf/common/ |
| HD | 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-13-stable/sbin/dmesg/ |
| HD | dmesg.c | 79 char *bp, *ep, *memf, *nextp, *nlistf, *p, *q, *visbp; in main() local 190 for (; p < ep; p = nextp) { in main() 191 nextp = memchr(p, '\n', ep - p); in main() 192 nextp++; in main() 206 (void)strvisx(visbp, p, nextp - p, 0); in main()
|
| /freebsd-13-stable/usr.bin/w/ |
| HD | w.c | 118 } *ep, *ehead = NULL, **nextp = &ehead; variable 239 *nextp = ep; in main() 240 nextp = &ep->next; in main() 406 for (nextp = &ehead; in main() 407 (*nextp) && from->idle >= (*nextp)->idle; in main() 408 nextp = &(*nextp)->next) in main() 412 save->next = *nextp; in main() 413 *nextp = save; in main()
|
| /freebsd-13-stable/bin/date/ |
| HD | vary.c | 83 struct vary *result, **nextp; in vary_append() local 89 nextp = &v->next; in vary_append() 91 nextp = &result; in vary_append() 93 if ((*nextp = (struct vary *)malloc(sizeof(struct vary))) == NULL) in vary_append() 95 (*nextp)->arg = arg; in vary_append() 96 (*nextp)->next = NULL; in vary_append()
|
| /freebsd-13-stable/contrib/less/ |
| HD | linenum.c | 126 struct linenum_info *nextp; in add_lnum() local 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()
|
| /freebsd-13-stable/sys/contrib/openzfs/module/icp/core/ |
| HD | kcf_sched.c | 915 kcf_areq_node_t *nextp = node->an_next; in kcf_remove_node() local 918 if (nextp != NULL) in kcf_remove_node() 919 nextp->an_prev = prevp; in kcf_remove_node() 924 prevp->an_next = nextp; in kcf_remove_node() 926 gswq->gs_first = nextp; in kcf_remove_node() 1337 kcf_areq_node_t *nextp, *prevp; in kcf_reqid_delete() local 1346 nextp = areq->an_idnext; in kcf_reqid_delete() 1348 if (nextp != NULL) in kcf_reqid_delete() 1349 nextp->an_idprev = prevp; in kcf_reqid_delete() 1351 prevp->an_idnext = nextp; in kcf_reqid_delete() [all …]
|
| /freebsd-13-stable/lib/libc/db/hash/ |
| HD | page.h | 88 BUFHEAD *nextp; member
|
| HD | hash_bigkey.c | 573 if (!(ret->nextp = in __big_split() 577 ret->nextp = NULL; in __big_split()
|
| HD | hash_page.c | 316 bufp = ret.nextp; in ugly_split() 321 last_bfp = ret.nextp; in ugly_split()
|
| /freebsd-13-stable/lib/libc/gen/ |
| HD | glob.c | 911 Char c, k, *nextp, *nextn; in match() local 916 nextp = NULL; in match() 928 nextp = pat - 1; in match() 969 pat = nextp; in match()
|
| HD | glob-compat11.c | 880 Char c, k, *nextp, *nextn; in match() local 885 nextp = NULL; in match() 897 nextp = pat - 1; in match() 938 pat = nextp; in match()
|
| /freebsd-13-stable/sys/netpfil/pf/ |
| HD | pf_if.c | 891 struct pfi_kkif *p, *nextp; in pfi_get_ifaces() local 895 for (p = RB_MIN(pfi_ifhead, &V_pfi_ifs); p; p = nextp) { in pfi_get_ifaces() 896 nextp = RB_NEXT(pfi_ifhead, &V_pfi_ifs, p); in pfi_get_ifaces() 904 nextp = RB_NEXT(pfi_ifhead, &V_pfi_ifs, p); in pfi_get_ifaces()
|
| /freebsd-13-stable/crypto/openssh/openbsd-compat/ |
| HD | glob.c | 910 Char *nextp = NULL; local 925 nextp = pat - 1; 966 pat = nextp;
|
| /freebsd-13-stable/sys/contrib/octeon-sdk/cvmx-malloc/ |
| HD | malloc.c | 3430 mchunkptr nextp; /* next chunk to consolidate */ local 3469 nextp = p->fd; 3508 } while ( (p = nextp) != 0);
|
| /freebsd-13-stable/sys/contrib/openzfs/module/zfs/ |
| HD | dsl_dir.c | 395 getcomponent(const char *path, char *component, const char **nextp) in getcomponent() argument 440 *nextp = p; in getcomponent()
|
| /freebsd-13-stable/sys/cddl/contrib/opensolaris/uts/common/dtrace/ |
| HD | dtrace.c | 8105 dtrace_probe_t **nextp, **prevp; local 8124 nextp = DTRACE_HASHNEXT(hash, new); 8125 ASSERT(*nextp == NULL && *(DTRACE_HASHPREV(hash, new)) == NULL); 8126 *nextp = bucket->dthb_chain; 8175 dtrace_probe_t **nextp = DTRACE_HASHNEXT(hash, probe); local 8188 if (*nextp == NULL) { 8212 bucket->dthb_chain = *nextp; 8214 *(DTRACE_HASHNEXT(hash, *prevp)) = *nextp; 8217 if (*nextp != NULL) 8218 *(DTRACE_HASHPREV(hash, *nextp)) = *prevp;
|