Home
last modified time | relevance | path

Searched refs:heap_memory (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/include/boost/thread/win32/
Dthread_heap_alloc.hpp25 void* const heap_memory=winapi::HeapAlloc(winapi::GetProcessHeap(),0,size); in allocate_raw_heap_memory() local
26 if(!heap_memory) in allocate_raw_heap_memory()
30 return heap_memory; in allocate_raw_heap_memory()
33 inline void free_raw_heap_memory(void* heap_memory) in free_raw_heap_memory() argument
35 BOOST_VERIFY(winapi::HeapFree(winapi::GetProcessHeap(),0,heap_memory)!=0); in free_raw_heap_memory()
41 void* const heap_memory=allocate_raw_heap_memory(sizeof(T)); in heap_new() local
44 T* const data=new (heap_memory) T(static_cast<Args&&>(args)...); in heap_new()
49 free_raw_heap_memory(heap_memory); in heap_new()
58 void* const heap_memory=allocate_raw_heap_memory(sizeof(T)); in heap_new() local
61 T* const data=new (heap_memory) T(); in heap_new()
[all …]
/aosp_15_r20/external/compiler-rt/test/lsan/TestCases/
H A Dswapcontext.cc27 char *heap_memory = new char[kStackSize + 1]; in main() local
28 char *child_stack = (argc > 1) ? stack_memory : heap_memory; in main()
43 delete[] heap_memory; in main()