Searched refs:heap_size (Results 1 – 9 of 9) 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 | 47 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/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/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
|