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

  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_List.h 18 m_nSize = nSize;
40 if(m_nLength >= m_nSize) {
41 m_nSize += 8;
42 m_pArray = (TYPE**)m_pModule->JBig2_Realloc(m_pArray, sizeof(TYPE*)*m_nSize);
63 FX_INT32 m_nSize;
  /external/pdfium/core/src/fxcrt/
fx_basic_array.cpp 11 , m_nSize(0)
29 m_nSize = m_nMaxSize = 0;
40 m_nSize = m_nMaxSize = 0;
44 m_nSize = m_nMaxSize = 0;
48 m_nSize = m_nMaxSize = nNewSize;
50 if (nNewSize > m_nSize) {
51 FXSYS_memset32(m_pData + m_nSize * m_nUnitSize, 0, (nNewSize - m_nSize) * m_nUnitSize);
53 m_nSize = nNewSize;
57 nGrowBy = m_nSize / 8;
    [all...]
extension.h 31 CFX_CRTFileStream(IFXCRT_FileAccess* pFA, IFX_Allocator* pAllocator) : m_pAllocator(pAllocator), m_pFile(pFA), m_dwCount(1), m_bUseRange(FALSE), m_nOffset(0), m_nSize(0) {}
56 return m_bUseRange ? m_nSize : m_pFile->GetSize();
75 m_nOffset = offset, m_nSize = size;
97 FX_FILESIZE availSize = m_nOffset + m_nSize - m_pFile->GetPosition();
120 FX_FILESIZE m_nSize;
181 return m_bUseRange ? (FX_FILESIZE) m_nSize : (FX_FILESIZE)m_nCurSize;
200 m_nOffset = (size_t)offset, m_nSize = (size_t)size;
246 size_t availSize = m_nOffset + m_nSize - m_nCurPos;
364 size_t m_nSize;
mem_int.h 229 size_t m_nSize;
fx_basic_memmgr_mini.cpp 152 m_nSize = nSize;
171 if (memory > pProxyMgr->m_pBuffer && memory < (FX_LPBYTE)pProxyMgr->m_pBuffer + pProxyMgr->m_nSize) {
  /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/core/include/fxcrt/
fx_basic.h 399 int m_nSize;
416 return m_nSize;
421 return m_nSize - 1;
436 if (nIndex < 0 || nIndex >= m_nSize) {
444 if (nIndex < 0 || nIndex >= m_nSize) {
453 if (nIndex < 0 || nIndex >= m_nSize) {
474 if (nIndex >= m_nSize)
484 if (m_nSize < m_nMaxSize) {
485 m_nSize ++;
486 } else if (!SetSize(m_nSize + 1, -1)) {
    [all...]

Completed in 239 milliseconds