/external/compiler-rt/test/asan/TestCases/ |
H A D | mmap_limit_mb.cc | 22 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/chromium_org/base/allocator/ |
H A D | win_allocator.cc | 53 size_t allocation_size = size + (alignment - 1) + sizeof(void*); local 56 DCHECK_LT(size, allocation_size); 57 DCHECK_LT(alignment, allocation_size); 61 void* ptr = win_heap_malloc(allocation_size);
|
/external/protobuf/gtest/samples/ |
H A D | sample10_unittest.cc | 56 void* operator new(size_t allocation_size) { argument 58 return malloc(allocation_size); 61 void operator delete(void* block, size_t allocation_size) { argument
|
/external/chromium_org/testing/gtest/samples/ |
H A D | sample10_unittest.cc | 56 void* operator new(size_t allocation_size) { argument 58 return malloc(allocation_size); 61 void operator delete(void* block, size_t /* allocation_size */) {
|
/external/chromium_org/chrome_elf/create_file/ |
H A D | chrome_create_file_unittest.cc | 38 PLARGE_INTEGER allocation_size; member in struct:__anon6049::ChromeCreateFileTest::NtCreateFileParams 58 PLARGE_INTEGER allocation_size, 69 allocation_size, 133 PLARGE_INTEGER allocation_size, 144 allocation_size, 159 allocation_size, 170 PLARGE_INTEGER allocation_size, 187 params->allocation_size = allocation_size; 210 EXPECT_EQ(kernel_params_.allocation_size, elf_params 53 FakeNtCreateFile( PHANDLE file_handle, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status_block, PLARGE_INTEGER allocation_size, ULONG file_attributes, ULONG share_access, ULONG create_disposition, ULONG create_options, PVOID ea_buffer, ULONG ea_length) argument 129 HandleCreateFileCall(PHANDLE file_handle, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status_block, PLARGE_INTEGER allocation_size, ULONG file_attributes, ULONG share_access, ULONG create_disposition, ULONG create_options, PVOID ea_buffer, ULONG ea_length, CallPath call_path) argument 168 SetParams(ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PLARGE_INTEGER allocation_size, ULONG file_attributes, ULONG share_access, ULONG create_disposition, ULONG create_options, PVOID ea_buffer, ULONG ea_length, NtCreateFileParams* params) argument [all...] |
/external/chromium_org/content/browser/loader/ |
H A D | resource_buffer.cc | 165 int allocation_size = alloc_sizes_.front(); local 168 alloc_start_ += allocation_size;
|
/external/chromium_org/sandbox/win/src/ |
H A D | filesystem_interception.h | 19 PIO_STATUS_BLOCK io_status, PLARGE_INTEGER allocation_size,
|
H A D | filesystem_interception.cc | 22 PLARGE_INTEGER allocation_size, 28 io_status, allocation_size, 18 TargetNtCreateFile(NtCreateFileFunction orig_CreateFile, PHANDLE file, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status, PLARGE_INTEGER allocation_size, ULONG file_attributes, ULONG sharing, ULONG disposition, ULONG options, PVOID ea_buffer, ULONG ea_length) argument
|
H A D | interceptors_64.cc | 77 PLARGE_INTEGER allocation_size, ULONG file_attributes, ULONG sharing, 82 io_status, allocation_size, file_attributes, 74 TargetNtCreateFile64( PHANDLE file, ACCESS_MASK desired_access, POBJECT_ATTRIBUTES object_attributes, PIO_STATUS_BLOCK io_status, PLARGE_INTEGER allocation_size, ULONG file_attributes, ULONG sharing, ULONG disposition, ULONG options, PVOID ea_buffer, ULONG ea_length) argument
|
H A D | interceptors_64.h | 54 PLARGE_INTEGER allocation_size, ULONG file_attributes, ULONG sharing,
|
/external/lldb/source/Expression/ |
H A D | IRMemoryMap.cpp | 244 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/chromium_org/v8/src/ |
H A D | allocation-tracker.h | 27 unsigned allocation_size() const { return total_size_; } function in class:v8::internal::AllocationTraceNode
|
H A D | zone.h | 66 inline unsigned allocation_size() const { return allocation_size_; } function in class:v8::internal::Zone
|
H A D | compiler.cc | 1410 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 D | lithium-allocator.cc | 2171 allocator->zone()->allocation_size(); 2178 unsigned size = allocator_->zone()->allocation_size() -
|
H A D | heap-snapshot-generator.cc | 3009 buffer_pos = utoa(node->allocation_size(), buffer, buffer_pos);
|
/external/chromium_org/v8/src/compiler/ |
H A D | pipeline.cc | 45 size_(info->zone()->allocation_size()) { 54 size_t bytes = info_->zone()->allocation_size() - size_;
|
H A D | register-allocator.cc | 2215 allocator->zone()->allocation_size(); 2222 unsigned size = allocator_->zone()->allocation_size() -
|
/external/chromium_org/v8/src/heap/ |
H A D | heap.cc | 1953 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/chromium_org/v8/test/cctest/ |
H A D | test-heap-profiler.cc | 2463 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());
|