/third_party/node/deps/uv/src/unix/ |
H A D | loop.c | 25 #include "heap-inl.h" 49 heap_init((struct heap*) &loop->timer_heap); in uv_loop_init()
|
/third_party/node/deps/v8/src/deoptimizer/ |
H A D | deoptimizer.cc | 18 #include "src/heap/heap-inl.h" 377 isolate->heap()->InvalidateCodeDeoptimizationData(code); in DeoptimizeMarkedCodeForContext() 391 Object context = isolate->heap()->native_contexts_list(); in DeoptimizeAll() 408 Object context = isolate->heap()->native_contexts_list(); in DeoptimizeMarkedCode() 622 Object context = isolate->heap()->native_contexts_list(); in GetDeoptimizedCodeCount() 1442 ? isolate_->heap()->construct_stub_create_deopt_pc_offset().value() in DoComputeConstructStubFrame() 1443 : isolate_->heap()->construct_stub_invoke_deopt_pc_offset().value(); in DoComputeConstructStubFrame() 1927 isolate_->heap()->CollectAllGarbage(Heap::kNoGCFlags, in MaterializeHeapObjects()
|
/third_party/node/deps/v8/src/execution/ |
H A D | isolate.h | 33 #include "src/heap/factory.h" 34 #include "src/heap/heap.h" 35 #include "src/heap/read-only-heap.h" 86 namespace heap { namespace 88 } // namespace heap 613 // Page allocator that must be used for allocating V8 heap pages. 822 // Count the number of active deserializers, so that the heap verifier knows 957 heap() in FatalProcessOutOfHeapMemory() 1121 Heap* heap() { return &heap_; } heap() function in v8::internal::final 1122 const Heap* heap() const { return &heap_; } heap() function in v8::internal::final 1124 FromHeap(Heap* heap) FromHeap() argument [all...] |
/third_party/node/test/fixtures/postject-copy/node_modules/postject/dist/ |
H A D | api.js | 242 function stringToUTF8Array(str, heap, outIdx, maxBytesToWrite) { 257 heap[outIdx++ >>> 0] = u; 261 heap[outIdx++ >>> 0] = 192 | u >> 6; 262 heap[outIdx++ >>> 0] = 128 | u & 63; 266 heap[outIdx++ >>> 0] = 224 | u >> 12; 267 heap[outIdx++ >>> 0] = 128 | u >> 6 & 63; 268 heap[outIdx++ >>> 0] = 128 | u & 63; 272 heap[outIdx++ >>> 0] = 240 | u >> 18; 273 heap[outIdx++ >>> 0] = 128 | u >> 12 & 63; 274 heap[outId [all...] |
/third_party/python/Lib/test/ |
H A D | _test_multiprocessing.py | 47 import multiprocessing.heap namespace 1723 wrapper = multiprocessing.heap.BufferWrapper(struct.calcsize('i')) 3673 # Make pristine heap for these tests 3674 self.old_heap = multiprocessing.heap.BufferWrapper._heap 3675 multiprocessing.heap.BufferWrapper._heap = multiprocessing.heap.Heap() 3678 multiprocessing.heap.BufferWrapper._heap = self.old_heap 3686 # get the heap object 3687 heap = multiprocessing.heap [all...] |
/kernel/liteos_a/kernel/base/vm/ |
H A D | los_vm_syscall.c | 133 /* user mode calls mmap to release heap physical memory without releasing heap virtual space */ in LOS_MMap() 233 VM_ERR("Process heap memory space is insufficient"); in LOS_DoBrk() 248 space->heap = region; in LOS_DoBrk() 252 space->heap->range.size = size; in LOS_DoBrk()
|
/third_party/libdrm/amdgpu/ |
H A D | amdgpu_gpu_info.c | 244 uint32_t heap, in amdgpu_query_heap_info() 256 /* Get heap information */ in amdgpu_query_heap_info() 257 switch (heap) { in amdgpu_query_heap_info() 259 /* query visible only vram heap */ in amdgpu_query_heap_info() 262 else /* query total vram heap */ in amdgpu_query_heap_info() 243 amdgpu_query_heap_info(amdgpu_device_handle dev, uint32_t heap, uint32_t flags, struct amdgpu_heap_info *info) amdgpu_query_heap_info() argument
|
/third_party/node/src/ |
H A D | node_internals.h | 387 namespace heap { namespace 391 namespace heap { namespace 399 } // namespace heap
|
/third_party/libdrm/tests/amdgpu/ |
H A D | cp_dma_tests.c | 91 uint32_t heap, uint64_t alloc_flags, in allocate_bo_and_va() 101 request.preferred_heap = heap; in allocate_bo_and_va() 89 allocate_bo_and_va(amdgpu_device_handle dev, uint64_t size, uint64_t alignment, uint32_t heap, uint64_t alloc_flags, struct amdgpu_cp_dma_bo *bo) allocate_bo_and_va() argument
|
/third_party/node/deps/v8/src/objects/ |
H A D | lookup.h | 10 #include "src/heap/factory.h" 125 Heap* heap() const { return isolate_->heap(); } in heap() function in v8::internal::final
|
H A D | code.h | 15 #include "src/objects/heap-object.h" 43 // pages within the heap, its header fields need to be immutable. There always 149 // this is a trampoline to an off-heap builtin. 253 // raw accessors (e.g. raw_instruction_start) always refer to the on-heap 255 // to an off-heap area in the case of embedded builtins. 257 // Embedded builtins are on-heap Code objects, with an out-of-line body 258 // section. The on-heap Code object contains an essentially empty body 259 // section, while accessors, as mentioned above, redirect to the off-heap 261 // point into the off-heap metadata section. The off-heap layou [all...] |
/third_party/node/deps/v8/src/snapshot/embedded/ |
H A D | embedded-data.cc | 121 // Create the embedded blob from scratch using the current Isolate's heap. in CreateOffHeapOffHeapInstructionStream() 125 // Isolate. The backing store is on the native heap, *not* on V8's garbage- in CreateOffHeapOffHeapInstructionStream() 126 // collected heap. in CreateOffHeapOffHeapInstructionStream() 132 AlignedAddress(isolate->heap()->GetRandomMmapAddr(), alignment); in CreateOffHeapOffHeapInstructionStream() 140 AlignedAddress(isolate->heap()->GetRandomMmapAddr(), alignment); in CreateOffHeapOffHeapInstructionStream() 154 // on the native heap). in CreateOffHeapOffHeapInstructionStream() 246 // Do not emit write-barrier for off-heap writes. in FinalizeEmbeddedCodeTargets() 291 fprintf(stderr, "%s aliases the off-heap trampoline register.\n", in FromIsolate() 327 "isolate-dependent code or aliases the off-heap trampoline register. " in FromIsolate() 344 // Hash relevant parts of the Isolate's heap an in FromIsolate() [all...] |
/device/soc/hisilicon/hi3751v350/sdk_linux/source/common/drv/mmz/ |
H A D | drv_media_mem.h | 102 struct dma_heap *heap; member
|
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/include/nvkm/subdev/ |
H A D | fb.h | 162 nvkm_ram_get(struct nvkm_device *, u8 heap, u8 type, u8 page, u64 size,
|
/kernel/uniproton/src/arch/cpu/armv7-m/cortex-m4/ |
H A D | prt_vector.S | 164 @* code for defining the stack and heap memory locations.
|
/third_party/libuv/src/unix/ |
H A D | loop.c | 26 #include "heap-inl.h" 53 heap_init((struct heap*) &loop->timer_heap); in uv_loop_init()
|
/third_party/node/deps/zlib/ |
H A D | deflate.h | 50 /* maximum heap size */ 213 int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */ member 214 int heap_len; /* number of elements in the heap */ 216 /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used. 217 * The same heap array is used to build all trees.
|
/third_party/node/deps/v8/third_party/zlib/ |
H A D | deflate.h | 46 /* maximum heap size */ 209 int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */ member 210 int heap_len; /* number of elements in the heap */ 212 /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used. 213 * The same heap array is used to build all trees.
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | deflate.h | 46 /* maximum heap size */
203 int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */
member 204 int heap_len; /* number of elements in the heap */
206 /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
207 * The same heap array is used to build all trees.
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-trace.cc | 8 #include "src/heap/heap-inl.h" // For ToBoolean. TODO(jkummerow): Drop. 70 // A heap allocation will only occur if the data is more than MAX_STACK_LENGTH 123 return isolate->heap()->ToBoolean(enabled); in BUILTIN()
|
/third_party/node/deps/v8/src/codegen/loong64/ |
H A D | assembler-loong64-inl.h | 110 void RelocInfo::set_target_object(Heap* heap, HeapObject target, in set_target_object() argument
|
/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | object-allocator.h | 12 #include "src/heap/cppgc/globals.h" 13 #include "src/heap/cppgc/heap-object-header.h" 14 #include "src/heap/cppgc/heap-page.h" 15 #include "src/heap/cppgc/heap-space.h" 16 #include "src/heap/cppgc/memory.h" 17 #include "src/heap/cppgc/object-start-bitmap.h" 18 #include "src/heap/cppg [all...] |
/third_party/node/deps/v8/src/handles/ |
H A D | handles.cc | 24 #include "src/heap/heap-write-barrier-inl.h" 53 // Allocations in the shared heap may be dereferenced by multiple threads. in IsDereferenceAllowed() 58 // Local heap can't access handles when parked in IsDereferenceAllowed() 61 << "non-running local heap\n"; in IsDereferenceAllowed() 66 // background local heap is only allowed to dereference its own local or in IsDereferenceAllowed() 164 isolate->heap(), ZoneAllocationPolicy(zone_)); in CanonicalHandleScope()
|
/third_party/node/deps/v8/src/heap/ |
H A D | code-stats.cc | 5 #include "src/heap/code-stats.h" 9 #include "src/heap/heap-inl.h" 10 #include "src/heap/large-spaces.h" 11 #include "src/heap/paged-spaces-inl.h" // For PagedSpaceObjectIterator. 67 PagedSpaceObjectIterator obj_it(isolate->heap(), space); in CollectCodeStatistics()
|
/third_party/node/deps/v8/src/parsing/ |
H A D | pending-compilation-error-handler.cc | 14 #include "src/heap/local-heap-inl.h" 31 args_[0].js_string = isolate->heap()->NewPersistentHandle(string); in SetString()
|