HomeSort by relevance Sort by last modified time
    Searched refs:heap_size (Results 1 - 10 of 10) 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/compiler-rt/test/tsan/
java.h 6 void __tsan_java_init(jptr heap_begin, jptr heap_size);
  /external/libcxxabi/src/
cxa_vector.cpp 148 const size_t heap_size = element_count * element_size + padding_size; local
149 char * const heap_block = static_cast<char *> ( alloc ( heap_size ));
177 const size_t heap_size = element_count * element_size + padding_size; local
178 char * const heap_block = static_cast<char *> ( alloc ( heap_size ));
182 st_heap_block3 heap ( dealloc, heap_block, heap_size );
  /ndk/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 );
  /external/libdrm/amdgpu/
amdgpu_gpu_info.c 253 info->heap_size = vram_gtt_info.vram_cpu_accessible_size;
255 info->heap_size = vram_gtt_info.vram_size;
271 info->heap_size = vram_gtt_info.gtt_size;
amdgpu.h 388 uint64_t heap_size; member in struct:amdgpu_heap_info
394 * heap_size.
    [all...]

Completed in 1122 milliseconds