Lines Matching refs:dwBytes
45 LPVOID WINAPI HeapAlloc(HANDLE hHeap, DWORD dwFlags, size_t dwBytes);
47 size_t dwBytes);
225 size_t dwBytes) { in INTERCEPTOR_WINAPI() argument
231 return REAL(HeapAlloc)(hHeap, dwFlags, dwBytes); in INTERCEPTOR_WINAPI()
241 void *p = asan_malloc(dwBytes, &stack); in INTERCEPTOR_WINAPI()
277 HANDLE hHeap, DWORD dwFlags, LPVOID lpMem, size_t dwBytes) { in SharedReAlloc() argument
301 return reallocFunc(hHeap, dwFlags, lpMem, dwBytes); in SharedReAlloc()
313 replacement_alloc = asan_calloc(1, dwBytes, &stack); in SharedReAlloc()
315 replacement_alloc = asan_malloc(dwBytes, &stack); in SharedReAlloc()
331 return reallocFunc(hHeap, dwFlags, lpMem, dwBytes); in SharedReAlloc()
338 void *replacement_alloc = allocFunc(hHeap, dwFlags, dwBytes); in SharedReAlloc()
343 Min<size_t>(dwBytes, old_usable_size)); in SharedReAlloc()
368 if (dwBytes == 0) in SharedReAlloc()
369 dwBytes = 1; in SharedReAlloc()
375 void *ptr = asan_realloc(lpMem, dwBytes, &stack); in SharedReAlloc()
390 LPVOID lpMem, size_t dwBytes) { in INTERCEPTOR_WINAPI() argument
393 dwBytes); in INTERCEPTOR_WINAPI()