Home
last modified time | relevance | path

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

/src/contrib/ntp/include/
H A Dntp_lists.h136 entrytype **pptail; \
138 pptail = &(listhead); \
139 while (*pptail != NULL) \
140 pptail = &((*pptail)->nextlink); \
143 *pptail = (pentry); \
233 entrytype ** pptail; /* NULL if list empty */ \
237 #define TAIL_FIFO(anchor) ((NULL == (anchor).pptail) \
239 : *((anchor).pptail))
271 if (NULL != (anchor).pptail) { \
272 (*((anchor).pptail))->nextlink = (pentry); \
[all …]
/src/contrib/ntp/libntp/
H A Drecvbuff.c383 gen_node **pptail; in check_gen_fifo_consistency() local
386 REQUIRE((NULL == pf->phead && NULL == pf->pptail) || in check_gen_fifo_consistency()
387 (NULL != pf->phead && NULL != pf->pptail)); in check_gen_fifo_consistency()
389 pptail = &pf->phead; in check_gen_fifo_consistency()
394 pptail = &pthis->link; in check_gen_fifo_consistency()
396 REQUIRE(NULL == pf->pptail || pptail == pf->pptail); in check_gen_fifo_consistency()
/src/contrib/ntp/
H A DCommitLog134254 Maintain pptail correctly in UNLINK_FIFO(), CONCAT_FIFO().