Searched refs:allocation_size (Results 1 - 13 of 13) sorted by relevance

/external/compiler-rt/test/asan/TestCases/
H A Dmmap_limit_mb.cc22 long allocation_size = atoi(argv[2]); local
23 fprintf(stderr, "total_mb: %zd allocation_size: %zd\n", total_mb,
24 allocation_size);
26 for (long total = total_mb << 20; total > 0; total -= allocation_size)
27 v.push_back(new char[allocation_size]);
/external/google-breakpad/src/testing/gtest/samples/
H A Dsample10_unittest.cc56 void* operator new(size_t allocation_size) { argument
58 return malloc(allocation_size);
61 void operator delete(void* block, size_t /* allocation_size */) {
/external/protobuf/gtest/samples/
H A Dsample10_unittest.cc56 void* operator new(size_t allocation_size) { argument
58 return malloc(allocation_size);
61 void operator delete(void* block, size_t /* allocation_size */) {
/external/lldb/source/Expression/
H A DIRMemoryMap.cpp244 size_t allocation_size; local
247 allocation_size = alignment;
249 allocation_size = (size & alignment_mask) ? ((size + alignment) & (~alignment_mask)) : size;
258 allocation_address = FindSpace(allocation_size);
270 allocation_address = process_sp->AllocateMemory(allocation_size, permissions, error);
277 allocation_address = FindSpace(allocation_size);
292 allocation_address = process_sp->AllocateMemory(allocation_size, permissions, error);
318 allocation_size,
344 (uint64_t)allocation_size,
/external/v8/src/
H A Dallocation-tracker.h27 unsigned allocation_size() const { return total_size_; } function in class:v8::internal::AllocationTraceNode
H A Dzone.h66 inline unsigned allocation_size() const { return allocation_size_; } function in class:v8::internal::Zone
H A Dcompiler.cc1410 info_zone_start_allocation_size_ = info->zone()->allocation_size();
1418 unsigned size = zone()->allocation_size();
1419 size += info_->zone()->allocation_size() - info_zone_start_allocation_size_;
H A Dlithium-allocator.cc2171 allocator->zone()->allocation_size();
2178 unsigned size = allocator_->zone()->allocation_size() -
H A Dheap-snapshot-generator.cc3009 buffer_pos = utoa(node->allocation_size(), buffer, buffer_pos);
/external/v8/src/compiler/
H A Dpipeline.cc45 size_(info->zone()->allocation_size()) {
54 size_t bytes = info_->zone()->allocation_size() - size_;
H A Dregister-allocator.cc2215 allocator->zone()->allocation_size();
2222 unsigned size = allocator_->zone()->allocation_size() -
/external/v8/src/heap/
H A Dheap.cc1953 int allocation_size = object_size; local
1956 allocation_size += kPointerSize;
1961 heap->new_space()->AllocateRaw(allocation_size);
1972 target = EnsureDoubleAligned(heap, target, allocation_size);
1993 int allocation_size = object_size; local
1996 allocation_size += kPointerSize;
2002 allocation = heap->old_data_space()->AllocateRaw(allocation_size);
2005 allocation = heap->old_pointer_space()->AllocateRaw(allocation_size);
2011 target = EnsureDoubleAligned(heap, target, allocation_size);
/external/v8/test/cctest/
H A Dtest-heap-profiler.cc2463 CHECK_GE(node->allocation_size(), 4 * 5);
2490 CHECK_GE(node->allocation_size(), 4 * node->allocation_count());
2539 CHECK_GE(node->allocation_size(), 4 * node->allocation_count());
2595 CHECK_GE(node->allocation_size(), 4 * node->allocation_count());

Completed in 2703 milliseconds