Home
last modified time | relevance | path

Searched refs:heap_size (Results 1 – 10 of 10) sorted by relevance

/external/compiler-rt/lib/tsan/rtl/
Dtsan_interface_java.cc31 const uptr heap_size; member
33 JavaContext(jptr heap_begin, jptr heap_size) in JavaContext()
35 , heap_size(heap_size) { in JavaContext()
69 void __tsan_java_init(jptr heap_begin, jptr heap_size) { in __tsan_java_init() argument
71 DPrintf("#%d: java_init(%p, %p)\n", thr->tid, heap_begin, heap_size); in __tsan_java_init()
74 CHECK_GT(heap_size, 0); in __tsan_java_init()
76 CHECK_EQ(heap_size % kHeapAlignment, 0); in __tsan_java_init()
77 CHECK_LT(heap_begin, heap_begin + heap_size); in __tsan_java_init()
78 jctx = new(jctx_buf) JavaContext(heap_begin, heap_size); in __tsan_java_init()
99 CHECK_LE(ptr + size, jctx->heap_begin + jctx->heap_size); in __tsan_java_alloc()
[all …]
Dtsan_interface_java.h38 void __tsan_java_init(jptr heap_begin, jptr heap_size) INTERFACE_ATTRIBUTE;
/external/libcxxabi/src/
Dcxa_vector.cpp144 const size_t heap_size = element_count * element_size + padding_size; in __cxa_vec_new2() local
145 char * const heap_block = static_cast<char *> ( alloc ( heap_size )); in __cxa_vec_new2()
173 const size_t heap_size = element_count * element_size + padding_size; in __cxa_vec_new3() local
174 char * const heap_block = static_cast<char *> ( alloc ( heap_size )); in __cxa_vec_new3()
178 st_heap_block3 heap ( dealloc, heap_block, heap_size ); in __cxa_vec_new3()
Dfallback_malloc.ipp57 typedef unsigned short heap_size;
61 heap_size len; // size in units of "sizeof(heap_node)"
104 q->len = static_cast<heap_size>(nelems);
174 heap_size total_free = 0;
/external/chromium_org/base/allocator/
Dallocator_shim.cc208 size_t heap_size, allocated_bytes, unmapped_bytes; in get_allocator_waste_size_thunk() local
210 if (ext->GetNumericProperty("generic.heap_size", &heap_size) && in get_allocator_waste_size_thunk()
215 *size = heap_size - allocated_bytes - unmapped_bytes; in get_allocator_waste_size_thunk()
/external/llvm/test/Transforms/LoopStrengthReduce/
D2009-01-13-nonconstant-stride-outside-loop.ll10 @heap_size = external global i32 ; <i32*> [#uses=1]
34 %3 = load i32* @heap_size, align 4 ; <i32> [#uses=1]
/external/chromium_org/base/
Dsys_info_android.cc199 static int heap_size = GetDalvikHeapSizeMB(); in DalvikHeapSizeMB() local
200 return heap_size; in DalvikHeapSizeMB()
/external/chromium_org/net/dns/
Ddns_config_service_win_unittest.cc72 size_t heap_size = num_adapters * sizeof(IP_ADAPTER_ADDRESSES) + in CreateAdapterAddresses() local
76 static_cast<IP_ADAPTER_ADDRESSES*>(malloc(heap_size))); in CreateAdapterAddresses()
78 memset(heap.get(), 0, heap_size); in CreateAdapterAddresses()
/external/compiler-rt/test/tsan/
Djava.h9 void __tsan_java_init(jptr heap_begin, jptr heap_size);
/external/chromium_org/content/app/
Dcontent_main_runner.cc456 size_t heap_size, allocated_bytes, unmapped_bytes; in GetAllocatorWasteSizeThunk() local
458 if (ext->GetNumericProperty("generic.heap_size", &heap_size) && in GetAllocatorWasteSizeThunk()
463 *size = heap_size - allocated_bytes - unmapped_bytes; in GetAllocatorWasteSizeThunk()