Searched refs:heap_size (Results 1 – 12 of 12) sorted by relevance
/third_party/jerryscript/jerry-core/api/ |
D | external-context-helpers.c | 73 jerry_external_context_init (uint32_t heap_size, /**< the size of heap */ in jerry_external_context_init() argument 77 jerry_context_t * external_context = jerry_create_context (heap_size, alloc, NULL); in jerry_external_context_init()
|
D | generate-bytecode.h | 54 void jerry_external_context_init(uint32_t heap_size, jerry_context_alloc_t alloc, void *cb_data_p);
|
D | jerry.c | 3490 jerry_create_context (uint32_t heap_size, /**< the size of heap */ in jerry_create_context() argument 3494 JERRY_UNUSED (heap_size); in jerry_create_context() 3501 heap_size = JERRY_ALIGNUP (heap_size, JMEM_ALIGNMENT); in jerry_create_context() 3504 if (heap_size < 1024) in jerry_create_context() 3509 total_size += heap_size; in jerry_create_context() 3530 context_p->heap_size = heap_size; in jerry_create_context() 3531 byte_p += heap_size; in jerry_create_context()
|
/third_party/boost/boost/graph/detail/ |
D | d_ary_heap.hpp | 303 size_type heap_size = data.size(); in preserve_heap_property_down() local 308 if (first_child_index >= heap_size) in preserve_heap_property_down() 314 if (first_child_index + Arity <= heap_size) in preserve_heap_property_down() 330 for (size_t i = 1; i < heap_size - first_child_index; ++i) in preserve_heap_property_down()
|
/third_party/jerryscript/jerry-core/jcontext/ |
D | jcontext.h | 126 uint32_t heap_size; /**< size of the heap */ member 260 #define JMEM_HEAP_SIZE (JERRY_CONTEXT (heap_size))
|
/third_party/libdrm/amdgpu/ |
D | amdgpu_gpu_info.c | 261 info->heap_size = vram_gtt_info.vram_cpu_accessible_size; in amdgpu_query_heap_info() 263 info->heap_size = vram_gtt_info.vram_size; in amdgpu_query_heap_info() 279 info->heap_size = vram_gtt_info.gtt_size; in amdgpu_query_heap_info()
|
D | amdgpu.h | 407 uint64_t heap_size; member
|
/third_party/mesa3d/src/amd/common/ |
D | ac_gpu_info.c | 114 uint64_t heap_size; member 528 info->gart_size = gtt.heap_size; in ac_query_gpu_info() 529 info->vram_size = fix_vram_size(vram.heap_size); in ac_query_gpu_info() 530 info->vram_vis_size = vram_vis.heap_size; in ac_query_gpu_info()
|
/third_party/jerryscript/jerry-core/include/ |
D | jerryscript-core.h | 614 jerry_context_t *jerry_create_context (uint32_t heap_size, jerry_context_alloc_t alloc, void *cb_da…
|
/third_party/mesa3d/src/intel/vulkan/ |
D | anv_device.c | 2584 VkDeviceSize heap_size = device->memory.heaps[i].size; in anv_get_memory_budget() local 2597 double heap_proportion = (double) heap_size / total_heaps_size; in anv_get_memory_budget() 2605 heap_budget = MIN2(heap_size, heap_used + heap_available); in anv_get_memory_budget() 2617 assert(0 < heap_budget && heap_budget <= heap_size); in anv_get_memory_budget()
|
/third_party/mesa3d/src/freedreno/vulkan/ |
D | tu_device.c | 1157 uint64_t heap_size = physical_device->heap.size; in tu_get_budget_memory() local 1169 return MIN2(heap_size, heap_used + heap_available); in tu_get_budget_memory()
|
/third_party/jerryscript/docs/ |
D | 02.API-REFERENCE.md | 7064 jerry_create_context (uint32_t heap_size, 7069 - `heap_size` - requested heap size of the JerryScript context
|