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

  /external/pdfium/xfa/src/fgas/src/crt/
fx_utils.cpp 21 : iGrowSize(growsize),
29 int32_t iGrowSize;
35 CFX_BaseArray::CFX_BaseArray(int32_t iGrowSize, int32_t iBlockSize) {
36 FXSYS_assert(iGrowSize > 0 && iBlockSize > 0);
37 m_pData = new FX_BASEARRAYDATA(iGrowSize, iBlockSize);
55 int32_t iGrowSize = m_pData->iGrowSize;
56 iTotalCount = (index / iGrowSize + 1) * iGrowSize;
  /external/pdfium/xfa/src/fgas/include/
fx_utl.h 48 CFX_BaseArray(int32_t iGrowSize, int32_t iBlockSize);
69 CFX_BaseArrayTemplate(int32_t iGrowSize = 100)
70 : CFX_BaseArray(iGrowSize, sizeof(baseType)) {}
71 CFX_BaseArrayTemplate(int32_t iGrowSize, int32_t iBlockSize)
72 : CFX_BaseArray(iGrowSize, iBlockSize) {}
119 CFX_ObjectBaseArrayTemplate(int32_t iGrowSize = 100)
120 : CFX_BaseArray(iGrowSize, sizeof(baseType)) {}

Completed in 342 milliseconds