Lines Matching refs:pOld
536 SvLongs *pOld = pLongArr; in Concat() local
547 sal_uInt16 nOldCount = pOld->Count(); in Concat()
551 pOld->Insert( pLongArr, nIdx, i, USHRT_MAX ); in Concat()
557 while( nLeftPos < nOldCount && nLeft > (*pOld)[ nLeftPos ] ) in Concat()
562 pOld->Insert( pLongArr, nOldCount, i - 2, USHRT_MAX ); in Concat()
566 while( nRightPos < nOldCount && nRight >= (*pOld)[ nRightPos ] ) in Concat()
571 pOld->Insert( pLongArr, nRightPos, i - 2, i ); in Concat()
577 if( nLeft > ( nOld = (*pOld)[ nLeftPos - 1 ] ) ) in Concat()
581 pOld->Insert( nOld, nLeftPos - 1 ); in Concat()
582 pOld->Insert( nLeft - 1, nLeftPos ); in Concat()
588 pOld->Remove( nLeftPos, nRightPos - nLeftPos - 1 ); in Concat()
589 if( ++nRight >= ( nOld = (*pOld)[ nLeftPos ] ) ) in Concat()
590 pOld->Remove( nLeftPos - 1, 2 ); in Concat()
592 (*pOld)[ nLeftPos - 1 ] = nRight; in Concat()
596 if( nLeft < (*pOld)[ nLeftPos - 1 ] ) in Concat()
597 (*pOld)[ nLeftPos - 1 ] = nLeft; in Concat()
598 if( nRight > (*pOld)[ nRightPos - 1 ] ) in Concat()
599 (*pOld)[ nRightPos - 1 ] = nRight; in Concat()
601 pOld->Remove( nLeftPos, nRightPos - nLeftPos - 1 ); in Concat()