Home
last modified time | relevance | path

Searched refs:pptail (Results 1 – 3 of 3) sorted by relevance

/netbsd/src/external/bsd/ntp/dist/include/
Dntp_lists.h138 entrytype **pptail; \
140 pptail = &(listhead); \
141 while (*pptail != NULL) \
142 pptail = &((*pptail)->nextlink); \
145 *pptail = (pentry); \
235 entrytype ** pptail; /* NULL if list empty */ \
239 #define TAIL_FIFO(anchor) ((NULL == (anchor).pptail) \
241 : *((anchor).pptail))
273 if (NULL != (anchor).pptail) { \
274 (*((anchor).pptail))->nextlink = (pentry); \
[all …]
/netbsd/src/external/bsd/ntp/dist/libntp/
Drecvbuff.c385 gen_node **pptail; in check_gen_fifo_consistency() local
388 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()
396 pptail = &pthis->link; in check_gen_fifo_consistency()
398 REQUIRE(NULL == pf->pptail || pptail == pf->pptail); in check_gen_fifo_consistency()
/netbsd/src/external/bsd/ntp/dist/
DCommitLog134254 Maintain pptail correctly in UNLINK_FIFO(), CONCAT_FIFO().