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

  /hardware/intel/img/psb_video/src/
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/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...]
  /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 );
  /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.h 393 uint64_t heap_size; member in struct:amdgpu_heap_info
399 * heap_size.
    [all...]
  /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...]

Completed in 4351 milliseconds