Searched refs:pptail (Results 1 – 3 of 3) sorted by relevance
136 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 …]
383 gen_node **pptail; in check_gen_fifo_consistency() local386 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()
134254 Maintain pptail correctly in UNLINK_FIFO(), CONCAT_FIFO().