Home
last modified time | relevance | path

Searched refs:pNewArray (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/core/fxcrt/
Dfx_basic_array.cpp119 const CFX_BasicArray* pNewArray) { in InsertAt() argument
120 if (!pNewArray) { in InsertAt()
123 if (pNewArray->m_nSize == 0) { in InsertAt()
126 if (!InsertSpaceAt(nStartIndex, pNewArray->m_nSize)) { in InsertAt()
129 FXSYS_memcpy(m_pData + nStartIndex * m_nUnitSize, pNewArray->m_pData, in InsertAt()
130 pNewArray->m_nSize * m_nUnitSize); in InsertAt()
Dfx_basic.h190 bool InsertAt(int nStartIndex, const CFX_BasicArray* pNewArray);
304 bool InsertAt(int nStartIndex, const CFX_BasicArray* pNewArray) { in InsertAt() argument
305 return CFX_BasicArray::InsertAt(nStartIndex, pNewArray); in InsertAt()
/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTArray.h228 T* pNewArray = new T[uiNewCapacity]; // New Array in SetCapacity() local
229 if(!pNewArray) in SetCapacity()
235 pNewArray[i] = m_pArray[i]; in SetCapacity()
241 m_pArray = pNewArray; in SetCapacity()
255 T* pNewArray = new T[other.GetCapacity()]; in Copy() local
256 if(pNewArray) in Copy()
261 pNewArray[i] = other[i]; in Copy()
269 m_pArray = pNewArray; in Copy()