Lines Matching defs:dwBytes
45 LPVOID WINAPI HeapAlloc(HANDLE hHeap, DWORD dwFlags, size_t dwBytes);
47 size_t dwBytes);
215 size_t dwBytes) {
221 return REAL(HeapAlloc)(hHeap, dwFlags, dwBytes);
231 void *p = asan_malloc(dwBytes, &stack);
267 HANDLE hHeap, DWORD dwFlags, LPVOID lpMem, size_t dwBytes) {
291 return reallocFunc(hHeap, dwFlags, lpMem, dwBytes);
303 replacement_alloc = asan_calloc(1, dwBytes, &stack);
305 replacement_alloc = asan_malloc(dwBytes, &stack);
321 return reallocFunc(hHeap, dwFlags, lpMem, dwBytes);
328 void *replacement_alloc = allocFunc(hHeap, dwFlags, dwBytes);
333 Min<size_t>(dwBytes, old_usable_size));
358 if (dwBytes == 0)
359 dwBytes = 1;
365 void *ptr = asan_realloc(lpMem, dwBytes, &stack);
380 LPVOID lpMem, size_t dwBytes) {
383 dwBytes);