HomeSort by relevance Sort by last modified time
    Searched refs:heap_size (Results 1 - 18 of 18) sorted by null

  /external/compiler-rt/lib/tsan/rtl/
tsan_interface_java.cc 31 const uptr heap_size; member in struct:__tsan::JavaContext
33 JavaContext(jptr heap_begin, jptr heap_size)
35 , heap_size(heap_size) {
69 void __tsan_java_init(jptr heap_begin, jptr heap_size) {
71 DPrintf("#%d: java_init(%p, %p)\n", thr->tid, heap_begin, heap_size);
74 CHECK_GT(heap_size, 0);
76 CHECK_EQ(heap_size % kHeapAlignment, 0);
77 CHECK_LT(heap_begin, heap_begin + heap_size);
78 jctx = new(jctx_buf) JavaContext(heap_begin, heap_size);
    [all...]
tsan_interface_java.h 38 void __tsan_java_init(jptr heap_begin, jptr heap_size) INTERFACE_ATTRIBUTE;
  /hardware/intel/img/psb_video/src/
object_heap.c 51 int new_heap_size = heap->heap_size + heap->heap_increment;
59 for (i = new_heap_size; i-- > heap->heap_size;) {
73 for (i = new_heap_size; i-- > heap->heap_size;) {
82 heap->heap_size = new_heap_size;
93 heap->heap_size = 0;
127 if ((id < heap->id_offset) || (id > (heap->heap_size + heap->id_offset))) {
160 while (i < heap->heap_size) {
196 for (i = 0; i < heap->heap_size; i++) {
205 heap->heap_size = 0;
object_heap.h 48 int heap_size; member in struct:object_heap_s
  /bionic/libc/upstream-netbsd/lib/libc/include/isc/
heap.h 27 int heap_size; member in struct:heap_context
  /external/syslinux/gpxe/src/arch/i386/interface/pcbios/
memtop_umalloc.c 62 unsigned long heap_size = 0; local
90 if ( r_size > heap_size ) {
93 heap_size = r_size;
97 if ( ! heap_size ) {
  /external/libcxxabi/src/
fallback_malloc.cpp 58 static const size_t HEAP_SIZE = 512;
59 char heap [ HEAP_SIZE ] __attribute__((aligned));
62 typedef unsigned short heap_size; typedef in namespace:__anon23152
66 heap_size len; // size in units of "sizeof(heap_node)"
69 static const heap_node *list_end = (heap_node *) ( &heap [ HEAP_SIZE ] ); // one past the end of the heap
81 freelist->len = HEAP_SIZE / sizeof (heap_node);
89 { return ptr >= heap && ptr < ( heap + HEAP_SIZE ); }
106 p->len = static_cast<heap_size>(p->len - nelems);
109 q->len = static_cast<heap_size>(nelems);
151 p->len = static_cast<heap_size>(p->len + cp->len); // make the free heap_node large
    [all...]
cxa_vector.cpp 146 const size_t heap_size = element_count * element_size + padding_size; local
147 char * const heap_block = static_cast<char *> ( alloc ( heap_size ));
174 const size_t heap_size = element_count * element_size + padding_size; local
175 char * const heap_block = static_cast<char *> ( alloc ( heap_size ));
179 st_heap_block3 heap ( dealloc, heap_block, heap_size );
  /external/compiler-rt/test/tsan/
java.h 6 void __tsan_java_init(jptr heap_begin, jptr heap_size);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_vector.cpp 144 const size_t heap_size = element_count * element_size + padding_size; local
145 char * const heap_block = static_cast<char *> ( alloc ( heap_size ));
173 const size_t heap_size = element_count * element_size + padding_size; local
174 char * const heap_block = static_cast<char *> ( alloc ( heap_size ));
178 st_heap_block3 heap ( dealloc, heap_block, heap_size );
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++abi/src/
cxa_vector.cpp 146 const size_t heap_size = element_count * element_size + padding_size; local
147 char * const heap_block = static_cast<char *> ( alloc ( heap_size ));
174 const size_t heap_size = element_count * element_size + padding_size; local
175 char * const heap_block = static_cast<char *> ( alloc ( heap_size ));
179 st_heap_block3 heap ( dealloc, heap_block, heap_size );
  /external/libdrm/amdgpu/
amdgpu_gpu_info.c 259 info->heap_size = vram_gtt_info.vram_cpu_accessible_size;
261 info->heap_size = vram_gtt_info.vram_size;
277 info->heap_size = vram_gtt_info.gtt_size;
amdgpu.h 393 uint64_t heap_size; member in struct:amdgpu_heap_info
399 * heap_size.
    [all...]
  /external/mesa3d/src/amd/vulkan/winsys/amdgpu/
radv_amdgpu_winsys.c 289 ws->info.gart_size = gtt.heap_size;
290 ws->info.vram_size = vram.heap_size;
291 ws->info.visible_vram_size = visible_vram.heap_size;
  /external/mesa3d/src/gallium/winsys/amdgpu/drm/
amdgpu_winsys.c 323 ws->info.gart_size = gtt.heap_size;
324 ws->info.vram_size = vram.heap_size;
  /external/mesa3d/src/intel/vulkan/
anv_device.c 678 VkDeviceSize heap_size; local
683 heap_size = 3 * physical_device->aperture_size / 4;
720 .size = heap_size,
    [all...]
  /art/runtime/gc/
heap.h     [all...]
heap.cc     [all...]

Completed in 2947 milliseconds