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

  /external/pdfium/core/src/fxcrt/
fx_basic_buffer.cpp 59 int alloc_step; local
61 alloc_step = m_AllocSize / 4;
62 if (alloc_step < 128) {
63 alloc_step = 128;
66 alloc_step = m_AllocStep;
68 new_size = (new_size + alloc_step - 1) / alloc_step * alloc_step;
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_flate.cpp 629 FX_DWORD alloc_step = orig_size ? kStepSize : std::min(src_size, kStepSize); local
633 alloc_step = kMaxInitialAllocSize;
662 guess_size += alloc_step;

Completed in 947 milliseconds