Searched refs:dwBytes (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_malloc_win.cpp | 45 LPVOID WINAPI HeapAlloc(HANDLE hHeap, DWORD dwFlags, size_t dwBytes); 47 size_t dwBytes); 215 size_t dwBytes) { in INTERCEPTOR_WINAPI() argument 221 return REAL(HeapAlloc)(hHeap, dwFlags, dwBytes); in INTERCEPTOR_WINAPI() 231 void *p = asan_malloc(dwBytes, &stack); in INTERCEPTOR_WINAPI() 267 HANDLE hHeap, DWORD dwFlags, LPVOID lpMem, size_t dwBytes) { in SharedReAlloc() argument 291 return reallocFunc(hHeap, dwFlags, lpMem, dwBytes); in SharedReAlloc() 303 replacement_alloc = asan_calloc(1, dwBytes, &stack); in SharedReAlloc() 305 replacement_alloc = asan_malloc(dwBytes, &stack); in SharedReAlloc() 321 return reallocFunc(hHeap, dwFlags, lpMem, dwBytes); in SharedReAlloc() [all …]
|