Lines Matching refs:pRoot
290 sal_Bool StgAvlNode::Insert( StgAvlNode** pRoot, StgAvlNode* pIns ) in Insert() argument
293 if ( !pRoot ) in Insert()
297 if( *pRoot == NULL ) in Insert()
299 *pRoot = pIns; in Insert()
303 short nRes = (*pRoot)->Locate( pIns, &pPivot, &pParent, &pPrev ); in Insert()
331 *pRoot = pNewRoot; in Insert()
343 sal_Bool StgAvlNode::Remove( StgAvlNode** pRoot, StgAvlNode* pDel, sal_Bool bDel ) in Remove() argument
345 if ( !pRoot ) in Remove()
349 if( *pRoot == NULL ) in Remove()
352 pDel = Rem( pRoot, pDel, sal_False ); in Remove()
397 pRoot = p; in StgAvlIterator()
405 StgAvlNode* p = pRoot; in Find()