Lines Matching refs:pNewAry
175 Point* pNewAry; in ImplSetSize() local
179 pNewAry = (Point*)new char[(sal_uIntPtr)nNewSize*sizeof(Point)]; in ImplSetSize()
187 memset( pNewAry+mnPoints, 0, (sal_uIntPtr)(nNewSize-mnPoints)*sizeof(Point) ); in ImplSetSize()
189 memcpy( pNewAry, mpPointAry, mnPoints*sizeof(Point) ); in ImplSetSize()
194 memcpy( pNewAry, mpPointAry, (sal_uIntPtr)nNewSize*sizeof(Point) ); in ImplSetSize()
199 pNewAry = NULL; in ImplSetSize()
233 mpPointAry = pNewAry; in ImplSetSize()
269 Point* pNewAry = (Point*) new char[ (sal_uIntPtr) nNewSize * sizeof( Point ) ]; in ImplSplit() local
271 memcpy( pNewAry, mpPointAry, nPos * sizeof( Point ) ); in ImplSplit()
274 memcpy( pNewAry + nPos, pInitPoly->mpPointAry, nSpaceSize ); in ImplSplit()
276 memset( pNewAry + nPos, 0, nSpaceSize ); in ImplSplit()
278 memcpy( pNewAry + nSecPos, mpPointAry + nPos, nRest * sizeof( Point ) ); in ImplSplit()
298 mpPointAry = pNewAry; in ImplSplit()
315 Point* pNewAry = (Point*) new char[ (sal_uIntPtr) nNewSize * sizeof( Point ) ]; in ImplRemove() local
317 memcpy( pNewAry, mpPointAry, nPos * sizeof( Point ) ); in ImplRemove()
318 memcpy( pNewAry + nPos, mpPointAry + nSecPos, nRest * sizeof( Point ) ); in ImplRemove()
333 mpPointAry = pNewAry; in ImplRemove()