HomeSort by relevance Sort by last modified time
    Searched refs:m_nSize (Results 1 - 10 of 10) sorted by null

  /external/pdfium/core/fxcrt/
fx_basic_array.cpp 11 : m_pData(nullptr), m_nSize(0), m_nMaxSize(0) {
25 m_nSize = m_nMaxSize = 0;
33 m_nSize = m_nMaxSize = 0;
38 m_nSize = m_nMaxSize = nNewSize;
40 if (nNewSize > m_nSize) {
41 FXSYS_memset(m_pData + m_nSize * m_nUnitSize, 0,
42 (nNewSize - m_nSize) * m_nUnitSize);
44 m_nSize = nNewSize;
49 if (!totalSize.IsValid() || nNewMax < m_nSize) {
57 FXSYS_memset(pNewData + m_nSize * m_nUnitSize, 0
    [all...]
fx_basic.h 195 int m_nSize;
205 int GetSize() const { return m_nSize; }
207 int GetUpperBound() const { return m_nSize - 1; }
214 if (nIndex < 0 || nIndex >= m_nSize) {
221 if (nIndex < 0 || nIndex >= m_nSize) {
229 if (nIndex < 0 || nIndex >= m_nSize) {
243 if (nIndex >= m_nSize && !SetSize(nIndex + 1))
251 if (m_nSize < m_nMaxSize) {
252 m_nSize++;
253 } else if (!SetSize(m_nSize + 1))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msputils.h 37 int m_nSize;
40 CMSPArray() : m_aT(NULL),m_nSize(0),m_nAllocSize(0) { }
42 int GetSize() const { return m_nSize; }
45 int nNewAllocSize = (m_nAllocSize==0) ? dwInitial : (m_nSize + DELTA);
53 if(m_nSize==m_nAllocSize) {
56 m_nSize++;
57 SetAtIndex(m_nSize - 1,t);
66 if(nIndex!=(m_nSize - 1))
67 memmove((void*)&m_aT[nIndex],(void*)&m_aT[nIndex + 1],(m_nSize - (nIndex + 1))*sizeof(T));
68 m_nSize--
    [all...]
dxtmpl.h 112 int m_nSize;
120 inline int CDXArray<TYPE,ARG_TYPE>::GetSize() const { return m_nSize; }
122 inline int CDXArray<TYPE,ARG_TYPE>::GetUpperBound() const { return m_nSize-1; }
126 inline TYPE CDXArray<TYPE,ARG_TYPE>::GetAt(int nIndex) const { _ASSERT((nIndex >= 0 && nIndex < m_nSize)); return m_pData[nIndex]; }
128 inline void CDXArray<TYPE,ARG_TYPE>::SetAt(int nIndex,ARG_TYPE newElement) { _ASSERT((nIndex >= 0 && nIndex < m_nSize)); m_pData[nIndex] = newElement; }
130 inline TYPE &CDXArray<TYPE,ARG_TYPE>::ElementAt(int nIndex) { _ASSERT((nIndex >= 0 && nIndex < m_nSize)); return m_pData[nIndex]; }
137 int nIndex = m_nSize;
146 CDXArray<TYPE,ARG_TYPE>::CDXArray() { m_pData = NULL; m_nSize = m_nMaxSize = m_nGrowBy = 0; }
151 DXDestructElements(m_pData,m_nSize);
163 DXDestructElements(m_pData,m_nSize);
    [all...]
mspcoll.h 18 int m_nSize;
22 CTapiIfCollection(void) : m_nSize(0),m_Var(NULL) { }
28 m_nSize = dwSize;
29 m_Var = new CComVariant[m_nSize];
54 *retval = m_nSize;
73 if((Index < 1) || (Index > m_nSize)) return E_INVALIDARG;
91 hr = p->Init(&m_Var[0],&m_Var[m_nSize],NULL,AtlFlagCopy);
  /external/pdfium/xfa/fxfa/parser/
cxfa_xml_parser.h 27 size_t m_nSize[2];
cxfa_xml_parser.cpp 76 m_nSize[m_dwCurrentCheckStatus - 1] =
cxfa_simple_parser.cpp 666 m_pXMLParser->m_nSize[0]);
668 m_pXMLParser->m_nSize[1]);
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTBoneBatch.cpp 289 int m_nSize;
303 m_nSize = nSize;
324 m_p = (char*)realloc(m_p, (m_nCnt + nCnt) * m_nSize);
327 memcpy(&m_p[m_nCnt * m_nSize], pData, nCnt * m_nSize);
349 return &m_p[nIdx * m_nSize];
PVRTModelPOD.cpp 497 unsigned int m_nSize, m_nReadPos;
522 m_nSize = SizeofResource(NULL, hR);
523 if(!m_nSize)
547 if(m_nReadPos + dwNumberOfBytesToRead > m_nSize)
558 if(m_nReadPos + nBytes > m_nSize)
    [all...]

Completed in 97 milliseconds