Searched refs:pNode (Results 1 – 2 of 2) sorted by relevance
366 struct MT2063_ExclZone_t *pNode; in InsertNode() local373 pNode = pAS_Info->freeZones; in InsertNode()374 pAS_Info->freeZones = pNode->next_; in InsertNode()377 pNode = &pAS_Info->MT2063_ExclZones[pAS_Info->nZones]; in InsertNode()381 pNode->next_ = pPrevNode->next_; in InsertNode()382 pPrevNode->next_ = pNode; in InsertNode()385 pNode->next_ = pAS_Info->usedZones; in InsertNode()386 pAS_Info->usedZones = pNode; in InsertNode()390 return pNode; in InsertNode()428 struct MT2063_ExclZone_t *pNode = pAS_Info->usedZones; in MT2063_AddExclZone() local[all …]
633 LosRbNode *pNode = NULL; in LOS_RbGetNextNode() local635 if (TRUE == LOS_RbGetNode(pstTree, pKey, &pNode)) { in LOS_RbGetNextNode()636 return LOS_RbSuccessorNode(pstTree, pNode); in LOS_RbGetNextNode()637 } else if ((NULL == pNode) || (&pstTree->stNilT == pNode)) { in LOS_RbGetNextNode()639 } else if (RB_BIGGER == pstTree->pfCmpKey(pKey, pstTree->pfGetKey(pNode))) { in LOS_RbGetNextNode()640 while (NULL != pNode) { in LOS_RbGetNextNode()641 pNode = LOS_RbSuccessorNode(pstTree, pNode); in LOS_RbGetNextNode()642 if (NULL == pNode) { in LOS_RbGetNextNode()646 if (RB_SMALLER == pstTree->pfCmpKey(pKey, pstTree->pfGetKey(pNode))) { in LOS_RbGetNextNode()650 return pNode; in LOS_RbGetNextNode()[all …]