Lines Matching refs:stNilT
58 pstNilT = &(pstTree->stNilT); in OsRbLeftRotateNode()
97 pstNilT = &(pstTree->stNilT); in OsRbRightRotateNode()
272 pstNilT = &(pstTree->stNilT); in OsRbDeleteNode()
399 pstTree->pstRoot = &(pstTree->stNilT); in OsRbInitTree()
400 pstTree->stNilT.lColor = LOS_RB_BLACK; in OsRbInitTree()
401 pstTree->stNilT.pstLeft = NULL; /* Always NULL */ in OsRbInitTree()
402 pstTree->stNilT.pstRight = NULL; /* Always NULL */ in OsRbInitTree()
403 pstTree->stNilT.pstParent = NULL; /* Not NULL when tree isn't empty */ in OsRbInitTree()
499 LosRbNode *pstNilT = &pstTree->stNilT; in LOS_RbInsertOneNodeProcess()
575 pstNilT = &(pstTree->stNilT); in LOS_RbFirstNode()
610 pstNilT = &(pstTree->stNilT); in LOS_RbSuccessorNode()
637 } else if ((NULL == pNode) || (&pstTree->stNilT == pNode)) { in LOS_RbGetNextNode()
675 pstNilT = &pstTree->stNilT; in LOS_RbGetNode()