/external/llvm-project/compiler-rt/test/asan/TestCases/Windows/ |
D | dll_unload.cpp | 17 void *region_without_hooks = HeapAlloc(GetProcessHeap(), 0, 10); in main() 21 void *region_w_hooks = HeapAlloc(GetProcessHeap(), 0, 10); in main()
|
D | heapalloc.cpp | 9 buffer = (char *)HeapAlloc(GetProcessHeap(), 0, 32), in main()
|
D | heapalloc_huge.cpp | 7 void *nope = HeapAlloc(GetProcessHeap(), 0, ((size_t)0) - 1); in main()
|
D | heapalloc_uaf.cpp | 8 buffer = (char *)HeapAlloc(GetProcessHeap(), 0, 32), in main()
|
D | heapalloc_sanity.cpp | 8 buffer = (char *)HeapAlloc(GetProcessHeap(), 0, 32), in main()
|
D | heapalloc_doublefree.cpp | 8 void *allocation = HeapAlloc(GetProcessHeap(), 0, 10); in main()
|
D | heapalloc_flags_fallback.cpp | 14 buffer = (char *)HeapAlloc(GetProcessHeap(), HEAP_GENERATE_EXCEPTIONS, 32); in main()
|
D | heapalloc_zero_size.cpp | 13 void *ptr = HeapAlloc(heap, 0, 4); in main()
|
D | heaprealloc_zero_size.cpp | 13 void *ptr = HeapAlloc(heap, 0, 4); in main()
|
D | heaprealloc.cpp | 11 oldbuf = (char *)HeapAlloc(procHeap, 0, sz); in main()
|
D | heapalloc_dll_unload_realloc_uaf.cpp | 17 void *region_without_hooks = HeapAlloc(GetProcessHeap(), 0, 10); in main()
|
D | heapalloc_dll_double_free.cpp | 17 void *region_without_hooks = HeapAlloc(GetProcessHeap(), 0, 10); in main()
|
D | heaprealloc_alloc_zero.cpp | 31 ptr = HeapAlloc(GetProcessHeap(), 0, 0); in main()
|
D | heapalloc_transfer.cpp | 11 void *alloc = HeapAlloc(GetProcessHeap(), HEAP_GENERATE_EXCEPTIONS, 100); in main()
|
/external/cpuinfo/src/x86/windows/ |
D | init.c | 155 …processors = HeapAlloc(heap, HEAP_ZERO_MEMORY, processors_count * sizeof(struct cpuinfo_processor)… in cpuinfo_x86_windows_init() 184 processor_infos = HeapAlloc(heap, 0, max_info_size); in cpuinfo_x86_windows_init() 299 cores = HeapAlloc(heap, HEAP_ZERO_MEMORY, cores_count * sizeof(struct cpuinfo_core)); in cpuinfo_x86_windows_init() 306 clusters = HeapAlloc(heap, HEAP_ZERO_MEMORY, packages_count * sizeof(struct cpuinfo_cluster)); in cpuinfo_x86_windows_init() 313 packages = HeapAlloc(heap, HEAP_ZERO_MEMORY, packages_count * sizeof(struct cpuinfo_package)); in cpuinfo_x86_windows_init() 391 l1i = HeapAlloc(heap, HEAP_ZERO_MEMORY, l1i_count * sizeof(struct cpuinfo_cache)); in cpuinfo_x86_windows_init() 399 l1d = HeapAlloc(heap, HEAP_ZERO_MEMORY, l1d_count * sizeof(struct cpuinfo_cache)); in cpuinfo_x86_windows_init() 407 l2 = HeapAlloc(heap, HEAP_ZERO_MEMORY, l2_count * sizeof(struct cpuinfo_cache)); in cpuinfo_x86_windows_init() 415 l3 = HeapAlloc(heap, HEAP_ZERO_MEMORY, l3_count * sizeof(struct cpuinfo_cache)); in cpuinfo_x86_windows_init() 423 l4 = HeapAlloc(heap, HEAP_ZERO_MEMORY, l4_count * sizeof(struct cpuinfo_cache)); in cpuinfo_x86_windows_init()
|
/external/llvm-project/compiler-rt/lib/asan/ |
D | asan_malloc_win.cpp | 45 LPVOID WINAPI HeapAlloc(HANDLE hHeap, DWORD dwFlags, size_t dwBytes); 224 INTERCEPTOR_WINAPI(LPVOID, HeapAlloc, HANDLE hHeap, DWORD dwFlags, in INTERCEPTOR_WINAPI() argument 231 return REAL(HeapAlloc)(hHeap, dwFlags, dwBytes); in INTERCEPTOR_WINAPI() 392 REAL(HeapFree), REAL(HeapAlloc), hHeap, dwFlags, lpMem, in INTERCEPTOR_WINAPI() 514 INTERCEPT_FUNCTION(HeapAlloc); in ReplaceSystemMalloc() 533 INTERCEPT_UCRT_FUNCTION(HeapAlloc); in ReplaceSystemMalloc()
|
/external/lzma/CPP/Windows/ |
D | SecurityUtils.cpp | 90 PSID pSid = ::HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sidLen); in GetSid() 91 …LPWSTR domainName = (LPWSTR)::HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, (domainLen + 1) * size… in GetSid()
|
/external/compiler-rt/lib/asan/ |
D | asan_malloc_win.cc | 164 INTERCEPTOR_WINAPI(LPVOID, HeapAlloc, HANDLE hHeap, DWORD dwFlags, in INTERCEPTOR_WINAPI() argument 242 INTERCEPT_UCRT_FUNCTION(HeapAlloc); in ReplaceSystemMalloc()
|
/external/lzma/CPP/Common/ |
D | NewHandler.cpp | 104 void *p = HeapAlloc(GetProcessHeap(), 0, size); in operator new()
|
/external/ltp/testcases/kernel/io/disktest/ |
D | defs.h | 71 #define ALLOC(size) HeapAlloc(GetProcessHeap(), 0, size)
|
/external/lzma/C/ |
D | 7zAlloc.c | 59 return HeapAlloc(GetProcessHeap(), 0, size); in SzAllocTemp()
|
/external/libchrome/base/metrics/ |
D | histogram.cc | 135 virtual std::unique_ptr<HistogramBase> HeapAlloc(const BucketRanges* ranges) { in HeapAlloc() function in base::Histogram::Factory 211 tentative_histogram = HeapAlloc(registered_ranges); in Build() 837 std::unique_ptr<HistogramBase> HeapAlloc( in HeapAlloc() function in base::LinearHistogram::Factory 1105 std::unique_ptr<HistogramBase> HeapAlloc( in HeapAlloc() function in base::BooleanHistogram::Factory 1213 std::unique_ptr<HistogramBase> HeapAlloc( in HeapAlloc() function in base::CustomHistogram::Factory
|
/external/python/cpython2/Python/ |
D | thread_nt.h | 138 obj = (callobj*)HeapAlloc(GetProcessHeap(), 0, sizeof(*obj)); in PyThread_start_new_thread()
|
/external/tensorflow/tensorflow/go/ |
D | operation_test.go | 265 bytesTillGC := mem.NextGC - mem.HeapAlloc + 1
|
/external/python/cpython3/Python/ |
D | thread_nt.h | 193 obj = (callobj*)HeapAlloc(GetProcessHeap(), 0, sizeof(*obj)); in PyThread_start_new_thread()
|