HomeSort by relevance Sort by last modified time
    Searched refs:heap_size (Results 1 - 22 of 22) 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
ionmap_test.c 92 info.heap_size = 4096;
ionutils.c 94 alloc_data.len = ion_info->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...]
tsan_interface_java.h 38 void __tsan_java_init(jptr heap_begin, jptr heap_size) INTERFACE_ATTRIBUTE;
  /bionic/libc/upstream-netbsd/lib/libc/include/isc/
heap.h 27 int heap_size; member in struct:heap_context
  /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/compiler-rt/test/tsan/
java.h 6 void __tsan_java_init(jptr heap_begin, jptr heap_size);
  /external/tensorflow/tensorflow/compiler/xla/service/
heap_simulator.cc 53 return result.heap_size;
69 return result.heap_size;
496 result.fragmentation_size = result.heap_size - no_frag_result.heap_size;
564 result.heap_size = max_heap_size_;
655 if (it->chunk_end() == result_.heap_size) {
671 CHECK_GT(new_end, result_.heap_size);
672 CHECK_LT(new_end, result_.heap_size + size);
673 result_.heap_size = new_end;
695 alloc->offset = RoundUpToNearest(result_.heap_size, alignment_)
    [all...]
heap_simulator_test.cc     [all...]
heap_simulator.h 64 int64 heap_size = 0; member in struct:xla::HeapSimulator::Result
buffer_assignment.cc     [all...]
  /external/tensorflow/tensorflow/core/kernels/
topk_op_gpu.h 279 const int heap_size = k < num_shards ? k : num_shards;
287 for (int slot = 0; slot < heap_size; slot++) {
290 min_heap.build(heap_size);
292 // Now perform top k with the remaining shards (if num_shards > heap_size).
293 for (int shard = heap_size; shard < num_shards; shard++) {
304 min_heap.replace_root({shard, entry.value}, heap_size);
315 max_heap.build(heap_size);
329 heap_size);
384 const auto heap_size = k * sizeof(Entry<T>);
385 // shared_memory_size = (num_shards + 1) * heap_size <=
    [all...]
  /external/libdrm/amdgpu/
amdgpu_gpu_info.c 260 info->heap_size = vram_gtt_info.vram_cpu_accessible_size;
262 info->heap_size = vram_gtt_info.vram_size;
278 info->heap_size = vram_gtt_info.gtt_size;
amdgpu.h 401 uint64_t heap_size; member in struct:amdgpu_heap_info
407 * heap_size.
    [all...]
  /external/mesa3d/src/amd/common/
ac_gpu_info.c 269 info->gart_size = gtt.heap_size;
270 info->vram_size = vram.heap_size;
271 info->vram_vis_size = vram_vis.heap_size;
  /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...]
  /art/runtime/gc/
heap.h     [all...]
heap.cc     [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encoder.c     [all...]

Completed in 1022 milliseconds