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