Lines Matching refs:pNext
399 struct MT2063_ExclZone_t *pNext = pNodeToRemove->next_;
405 pPrevNode->next_ = pNext;
414 return pNext;
430 struct MT2063_ExclZone_t *pNext = NULL;
465 pNext = pNode->next_;
466 while ((pNext != NULL) && (pNext->min_ < pNode->max_)) {
467 if (pNext->max_ > pNode->max_)
468 pNode->max_ = pNext->max_;
469 /* Remove pNext, return ptr to pNext->next */
470 pNext = RemoveNode(pAS_Info, pNode, pNext);