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

  /art/runtime/base/
arena_allocator.cc 202 constexpr size_t overallocation = RequiredOverallocation(); local
203 unaligned_memory_ = reinterpret_cast<uint8_t*>(calloc(1, size + overallocation));
206 if (overallocation == 0u) {
212 size_t tail = overallocation - head;
222 constexpr size_t overallocation = RequiredOverallocation(); local
223 if (overallocation != 0u && UNLIKELY(RUNNING_ON_MEMORY_TOOL > 0)) {
225 size_t tail = overallocation - head;
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
ImageUtils.cpp 335 int overallocation = 256; local
336 return (ImageType) calloc(width*height*numChannels+overallocation, sizeof(ImageTypeBase));

Completed in 443 milliseconds