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

/external/compiler-rt/test/asan/TestCases/
H A Dmmap_limit_mb.cc24 long allocation_size = atoi(argv[2]); local
25 fprintf(stderr, "total_mb: %zd allocation_size: %zd\n", total_mb,
26 allocation_size);
28 for (long total = total_mb << 20; total > 0; total -= allocation_size)
29 v.push_back(new char[allocation_size]);
/external/v8/src/compiler/
H A Dzone-pool.cc17 size_t size = static_cast<size_t>(zone->allocation_size());
40 total += static_cast<size_t>(zone->allocation_size());
88 total += static_cast<size_t>(zone->allocation_size());
109 DCHECK_EQ(0u, zone->allocation_size());
126 total_deleted_bytes_ += static_cast<size_t>(zone->allocation_size());
132 DCHECK_EQ(0u, zone->allocation_size());
H A Dpipeline-statistics.h28 return static_cast<size_t>(outer_zone_->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/vulkan-validation-layers/tests/gtest-1.7.0/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/curl/lib/
H A Dsmb.h169 unsigned long long allocation_size; member in struct:smb_nt_create
171 unsigned __int64 allocation_size; member in struct:smb_nt_create
203 unsigned long long allocation_size; member in struct:smb_nt_create_response
206 unsigned __int64 allocation_size; member in struct:smb_nt_create_response
/external/v8/src/heap/
H A Dspaces-inl.h395 int allocation_size = size_in_bytes; local
396 HeapObject* object = AllocateLinearlyAligned(&allocation_size, alignment);
402 allocation_size += filler_size;
403 object = free_list_.Allocate(allocation_size);
405 object = SlowAllocateRaw(allocation_size);
408 object = heap()->AlignWithFiller(object, size_in_bytes, allocation_size,
412 allocation_size = size_in_bytes;
417 MSAN_ALLOCATED_UNINITIALIZED_MEMORY(object->address(), allocation_size);
H A Dheap.h1527 int allocation_size,
H A Dheap.cc2021 int allocation_size,
2023 int filler_size = allocation_size - object_size;
2020 AlignWithFiller(HeapObject* object, int object_size, int allocation_size, AllocationAlignment alignment) argument
/external/v8/test/unittests/compiler/
H A Dzone-pool-unittest.cc35 size_t size_before = zone->allocation_size();
37 return zone->allocation_size() - size_before;
/external/v8/src/profiler/
H A Dallocation-tracker.h36 unsigned allocation_size() const { return total_size_; } function in class:v8::internal::AllocationTraceNode
H A Dheap-snapshot-generator.cc3007 buffer_pos = utoa(node->allocation_size(), buffer, buffer_pos);
/external/v8/src/
H A Dzone.h65 size_t allocation_size() const { return allocation_size_; } function in class:v8::internal::final
H A Dcompiler.cc1830 info_zone_start_allocation_size_ = info->zone()->allocation_size();
1838 size_t size = zone()->allocation_size();
1839 size += info_->zone()->allocation_size() - info_zone_start_allocation_size_;
/external/v8/src/snapshot/
H A Dserialize.cc1863 int allocation_size; local
1870 allocation_size = SeqOneByteString::SizeFor(length);
1877 allocation_size = SeqTwoByteString::SizeFor(length);
1883 AllocationSpace space = (allocation_size > Page::kMaxRegularHeapObjectSize)
1886 SerializePrologue(space, allocation_size, map);
1889 int bytes_to_output = allocation_size - HeapObject::kHeaderSize;
1906 int padding_size = allocation_size - SeqString::kHeaderSize - content_size;
/external/v8/test/cctest/
H A Dtest-heap-profiler.cc2517 CHECK_GE(node->allocation_size(), 4u * 5u);
2544 CHECK_GE(node->allocation_size(), 4 * node->allocation_count());
2594 CHECK_GE(node->allocation_size(), 4 * node->allocation_count());
2650 CHECK_GE(node->allocation_size(), 4 * node->allocation_count());
/external/v8/src/crankshaft/
H A Dlithium-allocator.cc2174 allocator->zone()->allocation_size();
2181 size_t size = allocator_->zone()->allocation_size() -

Completed in 1438 milliseconds