Lines Matching refs:pData

123 ArrElem& operator[](sal_uInt16 nP) const { return *(pData+nP); }\
131 Insert( (const ArrElem*)pI->pData+nS, (sal_uInt16)nE-nS, nP );\
146 DBG_ASSERT( pData && nP < nA,"Op[]");\
147 return *(pData+nP);\
155 Insert( (const ArrElem*)pI->pData+nStt, (sal_uInt16)nE-nStt, nP );\
165 AE *pData;\
173 ~nm() { rtl_freeMemory( pData ); }\
184 const AE* GetData() const { return (const AE*)pData; }\
218 : pData (0),\
224 pData = (AE*)(rtl_allocateMemory(sizeof(AE) * nInit));\
225 DBG_ASSERT( pData, "CTOR, allocate");\
232 AE* pE = (AE*)(rtl_reallocateMemory (pData, sizeof(AE) * nL));\
235 pData = pE;\
245 if( pData && nP < nA )\
246 memmove( pData+nP+1, pData+nP, (nA-nP) * sizeof( AE ));\
247 *(pData+nP) = (AE&)aE;\
256 if( pData && nP < nA )\
257 memmove( pData+nP+nL, pData+nP, (nA-nP) * sizeof( AE ));\
259 memcpy( pData+nP, pE, nL * sizeof( AE ));\
266 *(pData+nP) = (AE&)aE;\
274 memcpy( pData + nP, pE, nL * sizeof( AE ));\
277 memcpy( pData + nP, pE, nL * sizeof( AE ));\
284 memcpy( pData + nP, pE, nTmpLen * sizeof( AE ));\
297 if( pData && nP+1 < nA )\
298 memmove( pData+nP, pData+nP+nL, (nA-nP-nL) * sizeof( AE ));\
309 for( ; nStt < nE && (*fnCall)( *(const AE*)(pData+nStt), pArgs ); nStt++)\
449 delete *((AE*)pData+n); \
482 const AE* GetData() const { return (const AE*)pData; }\
499 if( (long)*(pData + nM) == rCmp )\
504 else if( (long)*(pData+ nM) < (long)aE )\
531 if( *(*((AE*)pData + nM)) == *(aE) )\
536 else if( *(*((AE*)pData + nM)) < *(aE) )\
563 if( *(pData + nM) == aE )\
568 else if( *(pData + nM) < aE )\
749 delete *((AE*)pData+n); \
761 delete *((AE*)pData+n); \