Searched defs:allocation_size (Results 1 - 10 of 10) 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/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/v8/src/profiler/
H A Dallocation-tracker.h36 unsigned allocation_size() const { return total_size_; } function in class:v8::internal::AllocationTraceNode
/external/v8/src/
H A Dzone.h65 size_t allocation_size() const { return allocation_size_; } function in class:v8::internal::final
/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.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/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/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;

Completed in 474 milliseconds