Home
last modified time | relevance | path

Searched refs:node_memory (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/executorch/runtime/executor/
H A Dplatform_memory_allocator.h51 void* node_memory = et_pal_allocate(alloc_size); variable
54 if (node_memory == nullptr) {
61 reinterpret_cast<uint8_t*>(node_memory) + sizeof(AllocationNode);
69 reinterpret_cast<uintptr_t>(node_memory) + alloc_size,
73 node_memory,
77 AllocationNode* new_node = reinterpret_cast<AllocationNode*>(node_memory);
/aosp_15_r20/external/executorch/kernels/test/
H A Dop_topk_test.cpp48 void* node_memory = malloc(alloc_size); in allocate() local
51 if (node_memory == nullptr) { in allocate()
58 reinterpret_cast<uint8_t*>(node_memory) + sizeof(AllocationNode); in allocate()
66 reinterpret_cast<uintptr_t>(node_memory) + alloc_size, in allocate()
70 node_memory, in allocate()
74 AllocationNode* new_node = reinterpret_cast<AllocationNode*>(node_memory); in allocate()
/aosp_15_r20/external/leveldb/db/
H A Dskiplist.h184 char* const node_memory = arena_->AllocateAligned(
186 return new (node_memory) Node(key);