Home
last modified time | relevance | path

Searched refs:phead (Results 1 – 5 of 5) sorted by relevance

/netbsd/src/external/bsd/ntp/dist/include/
Dntp_lists.h234 entrytype * phead; /* NULL if list empty */ \
238 #define HEAD_FIFO(anchor) ((anchor).phead)
278 (anchor).phead = (pentry); \
279 (anchor).pptail = &(anchor).phead; \
289 (punlinked) = (anchor).phead; \
291 (anchor).phead = (punlinked)->nextlink; \
292 if (NULL == (anchor).phead) \
296 (anchor).pptail = &(anchor).phead; \
309 ppentry = &(anchor).phead; \
326 (anchor).pptail = &(anchor).phead; \
[all …]
/netbsd/src/sys/fs/cd9660/
Dcd9660_rrip.c489 ISO_SUSP_HEADER *phead; in cd9660_rrip_loop() local
511 phead = (ISO_SUSP_HEADER *)pwhead; in cd9660_rrip_loop()
520 while (pend >= phead + 1) { in cd9660_rrip_loop()
521 if (isonum_711(phead->version) == 1) { in cd9660_rrip_loop()
523 if (*phead->type == *ptable->type in cd9660_rrip_loop()
524 && phead->type[1] == ptable->type[1]) { in cd9660_rrip_loop()
525 result |= ptable->func(phead, ana); in cd9660_rrip_loop()
537 if (isonum_711(phead->length) < sizeof(*phead)) in cd9660_rrip_loop()
543phead = (ISO_SUSP_HEADER *)((char *)phead + isonum_711(phead->length)); in cd9660_rrip_loop()
555 phead = (ISO_SUSP_HEADER *)((char *)bp->b_data + ana->iso_ce_off); in cd9660_rrip_loop()
[all …]
/netbsd/src/external/bsd/ntp/dist/libntp/
Drecvbuff.c388 REQUIRE((NULL == pf->phead && NULL == pf->pptail) || in check_gen_fifo_consistency()
389 (NULL != pf->phead && NULL != pf->pptail)); in check_gen_fifo_consistency()
391 pptail = &pf->phead; in check_gen_fifo_consistency()
392 for (pthis = pf->phead; in check_gen_fifo_consistency()
/netbsd/src/external/bsd/pkg_install/dist/admin/
Dmain.c319 struct pkg_reqd_by_head *phead; in add_required_by() local
336 phead = &hash[PKG_HASH_ENTRY(best_installed)]; in add_required_by()
341 SLIST_FOREACH(pkg, phead, entries) { in add_required_by()
379 SLIST_INSERT_HEAD(phead, pkg, entries); in add_required_by()
/netbsd/src/sys/fs/nfs/common/
Dnfs.h675 #define LIST_PREPEND(head, phead, lelm, field) do { \ argument
681 (head)->lh_first = (phead)->lh_first; \