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

  /external/compiler-rt/lib/asan/
asan_rtl.cc 152 size_t size_to_allocate = Max(size, kPageSize); local
154 (char*)AsanMmapSomewhereOrDie(size_to_allocate, __FUNCTION__);
155 allocated_end_ = allocated_current_ + size_to_allocate;
156 PoisonShadow((uintptr_t)allocated_current_, size_to_allocate,
asan_allocator.cc 629 size_t size_to_allocate = SizeClassToSize(size_class);
630 CHECK(size_to_allocate >= kMinAllocSize);
631 CHECK(size_to_allocate >= needed_size);
632 CHECK(IsAligned(size_to_allocate, REDZONE));
636 alignment, size, size_class, size_to_allocate);
644 thread_stats.malloced_redzones += size_to_allocate - size;
648 if (!t || size_to_allocate >= kMaxSizeForThreadLocalFreeList) {
656 size_t n_new_chunks = kMaxSizeForThreadLocalFreeList / size_to_allocate;
667 CHECK(m->Size() == size_to_allocate);
    [all...]

Completed in 491 milliseconds