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

  /external/linux-kselftest/tools/testing/selftests/android/ion/
ionapp_export.c 43 unsigned long map_len, heap_type, heap_size, flags; local
52 heap_size = 0;
77 heap_size = atoi(optarg);
86 if (heap_size <= 0) {
87 printf("heap_size cannot be 0\n");
92 printf("heap_type: %ld, heap_size: %ld\n", heap_type, heap_size);
94 info.heap_size = heap_size;
ionutils.h 23 unsigned long heap_size; member in struct:ion_buffer_info
  /bionic/libc/upstream-netbsd/lib/libc/include/isc/
heap.h 27 int heap_size; member in struct:heap_context
  /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 59 static const size_t HEAP_SIZE = 512;
60 char heap[HEAP_SIZE] __attribute__((aligned));
63 typedef unsigned short heap_size; typedef in namespace:__anon27997
67 heap_size len; // size in units of "sizeof(heap_node)"
71 (heap_node*)(&heap[HEAP_SIZE]); // one past the end of the heap
87 freelist->len = HEAP_SIZE / sizeof(heap_node);
96 return ptr >= heap && ptr < (heap + HEAP_SIZE);
114 p->len = static_cast<heap_size>(p->len - nelems);
117 q->len = static_cast<heap_size>(nelems);
159 p->len = static_cast<heap_size>(
    [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/tensorflow/tensorflow/compiler/xla/service/
heap_simulator.h 64 int64 heap_size = 0; member in struct:xla::HeapSimulator::Result
  /external/libdrm/amdgpu/
amdgpu.h 401 uint64_t heap_size; member in struct:amdgpu_heap_info
407 * heap_size.
    [all...]
  /external/mesa3d/src/intel/vulkan/
anv_device.c 60 anv_compute_heap_size(int fd, uint64_t *heap_size)
97 *heap_size = MIN2(available_ram, available_gtt);
112 uint64_t heap_size; local
113 VkResult result = anv_compute_heap_size(fd, &heap_size);
117 if (heap_size > (2ull << 30) && !device->supports_48bit_addresses) {
126 heap_size = 2ull << 30;
129 if (heap_size <= 3ull * (1ull << 30)) {
136 .size = heap_size,
149 const uint64_t heap_size_48bit = heap_size - heap_size_32bit;
    [all...]

Completed in 299 milliseconds