Lines Matching refs:p

61 	CBlock* p = (CBlock*)pBlock;  in DBG_NAME()  local
63 if ( p->nCount > p->nSize ) in DBG_NAME()
66 if ( p->nSize && !p->pNodes ) in DBG_NAME()
174 void CBlock::Insert( void* p, sal_uInt16 nIndex, sal_uInt16 nReSize ) in Insert() argument
216 pNodes[nIndex] = p; in Insert()
230 CBlock* CBlock::Split( void* p, sal_uInt16 nIndex, sal_uInt16 nReSize ) in Split() argument
272 pNewBlock->pNodes[0] = p; in Split()
283 pNewBlock->pNodes[nIndex] = p; in Split()
316 pNewBlock->pNodes[0] = p; in Split()
325 pNewBlock->pNodes[nIndex] = p; in Split()
426 inline void* CBlock::Replace( void* p, sal_uInt16 nIndex ) in Replace() argument
432 pNodes[nIndex] = p; in Replace()
509 Container* p = (Container*)pCont; in DbgCheckContainer() local
511 if ( p->nCount && (!p->pFirstBlock || !p->pLastBlock || !p->pCurBlock) ) in DbgCheckContainer()
755 void Container::ImpInsert( void* p, CBlock* pBlock, sal_uInt16 nIndex ) in ImpInsert() argument
767 pFirstBlock->Insert( p, nIndex, nReSize ); in ImpInsert()
776 CBlock* pNewBlock = pBlock->Split( p, nIndex, nReSize ); in ImpInsert()
818 pBlock->Insert( p, nIndex, nReSize ); in ImpInsert()
840 void Container::Insert( void* p ) in Insert() argument
842 ImpInsert( p, pCurBlock, nCurIndex ); in Insert()
855 void Container::Insert( void* p, sal_uIntPtr nIndex ) in Insert() argument
860 ImpInsert( p, pLastBlock, pLastBlock->Count() ); in Insert()
862 ImpInsert( p, NULL, 0 ); in Insert()
874 ImpInsert( p, pTemp, (sal_uInt16)nIndex ); in Insert()
1030 void* Container::Replace( void* p ) in Replace() argument
1037 return pCurBlock->Replace( p, nCurIndex ); in Replace()
1050 void* Container::Replace( void* p, sal_uIntPtr nIndex ) in Replace() argument
1067 return pTemp->Replace( p, (sal_uInt16)nIndex ); in Replace()
1373 sal_uIntPtr Container::GetPos( const void* p ) const in GetPos()
1393 if ( p == *pNodes ) in GetPos()
1415 sal_uIntPtr Container::GetPos( const void* p, sal_uIntPtr nStartIndex, in GetPos() argument
1449 if ( p == *pNodes ) in GetPos()
1475 if ( p == *pNodes ) in GetPos()