/reactos/sdk/include/ucrt/ |
H A D | crtdbg.h | 100 #define _NORMAL_BLOCK 1 macro 290 #define calloc(c, s) _calloc_dbg(c, s, _NORMAL_BLOCK, __FILE__, __LINE__) 291 #define _expand(p, s) _expand_dbg(p, s, _NORMAL_BLOCK, __FILE__, __LINE__) 292 #define free(p) _free_dbg(p, _NORMAL_BLOCK) 293 #define malloc(s) _malloc_dbg(s, _NORMAL_BLOCK, __FILE__, __LINE__) 294 #define _msize(p) _msize_dbg(p, _NORMAL_BLOCK) 295 #define realloc(p, s) _realloc_dbg(p, s, _NORMAL_BLOCK, __FILE__, __LINE__) 307 #define _freea(p) _freea_dbg(p, _NORMAL_BLOCK) 308 #define _malloca(s) _malloca_dbg(s, _NORMAL_BLOCK, __FILE__, __LINE__) 325 #define strdup(s) _strdup_dbg(s, _NORMAL_BLOCK, __FILE__, __LINE__) [all …]
|
/reactos/sdk/lib/ucrt/misc/ |
H A D | getcwd.cpp | 185 return common_getdcwd(0, user_buffer, max_length, _NORMAL_BLOCK, nullptr, 0); in _getcwd() 193 return common_getdcwd(0, user_buffer, max_length, _NORMAL_BLOCK, nullptr, 0); in _wgetcwd() 202 return common_getdcwd(drive_number, user_buffer, max_length, _NORMAL_BLOCK, nullptr, 0); in _getdcwd() 211 return common_getdcwd(drive_number, user_buffer, max_length, _NORMAL_BLOCK, nullptr, 0); in _wgetdcwd()
|
/reactos/sdk/lib/ucrt/heap/ |
H A D | debug_heap.cpp | 29 #if _FREE_BLOCK != 0 || _NORMAL_BLOCK != 1 || _CRT_BLOCK != 2 || _IGNORE_BLOCK != 3 || _CLIENT_BLOC… 181 || block_use == _NORMAL_BLOCK in is_block_type_valid() 584 …if (block_use != _NORMAL_BLOCK && _BLOCK_TYPE(block_use) != _CLIENT_BLOCK && _BLOCK_TYPE(block_use… in realloc_dbg_nolock() 893 if (block_use == _NORMAL_BLOCK && is_block_an_aligned_allocation(block)) in free_dbg_nolock() 979 …header->_block_use == block_use || header->_block_use == _CRT_BLOCK && block_use == _NORMAL_BLOCK); in free_dbg_nolock() 1685 else if (header->_block_use == _NORMAL_BLOCK) in dump_all_object_since_nolock() 1733 state.lCounts[_NORMAL_BLOCK] != 0 || in _CrtDumpMemoryLeaks() 1903 …if ((ptr = (uintptr_t)_malloc_dbg(block_size, _NORMAL_BLOCK, file_name, line_number)) == (uintptr_… in _aligned_offset_realloc_dbg() 1912 _free_dbg(s_header_from_block->_head, _NORMAL_BLOCK); in _aligned_offset_realloc_dbg() 1937 total_size = _msize_dbg(header_from_block->_head, _NORMAL_BLOCK); in _aligned_msize_dbg() [all …]
|
H A D | free.cpp | 28 _free_dbg(block, _NORMAL_BLOCK); in free()
|
H A D | malloc.cpp | 23 return _malloc_dbg(size, _NORMAL_BLOCK, nullptr, 0); in malloc()
|
H A D | realloc.cpp | 37 return _realloc_dbg(block, size, _NORMAL_BLOCK, nullptr, 0); in realloc()
|
H A D | calloc.cpp | 26 return _calloc_dbg(count, size, _NORMAL_BLOCK, nullptr, 0); in calloc()
|
H A D | msize.cpp | 38 return _msize_dbg(block, _NORMAL_BLOCK); in _msize()
|
H A D | recalloc.cpp | 66 return _recalloc_dbg(block, count, size, _NORMAL_BLOCK, nullptr, 0); in _recalloc()
|
H A D | expand.cpp | 96 return _expand_dbg(block, size, _NORMAL_BLOCK, nullptr, 0); in _expand()
|
/reactos/sdk/lib/ucrt/filesystem/ |
H A D | fullpath.cpp | 112 return common_fullpath(user_buffer, path, max_count, _NORMAL_BLOCK, nullptr, 0); in _fullpath() 121 return common_fullpath(user_buffer, path, max_count, _NORMAL_BLOCK, nullptr, 0); in _wfullpath()
|
/reactos/sdk/lib/ucrt/stdio/ |
H A D | tempnam.cpp | 260 return common_tempnam(alternative, prefix, _NORMAL_BLOCK, nullptr, 0); in _tempnam() 268 return common_tempnam(alternative, prefix, _NORMAL_BLOCK, nullptr, 0); in _wtempnam()
|
/reactos/sdk/lib/ucrt/string/ |
H A D | strdup.cpp | 23 return _strdup_dbg(string, _NORMAL_BLOCK, nullptr, 0); in _strdup()
|
H A D | wcsdup.cpp | 21 return _wcsdup_dbg(string, _NORMAL_BLOCK, nullptr, 0); in _wcsdup()
|
/reactos/sdk/lib/ucrt/env/ |
H A D | getenv.cpp | 291 return common_dupenv_s(buffer_pointer, buffer_count, name, _NORMAL_BLOCK, nullptr, 0); in _dupenv_s() 300 return common_dupenv_s(buffer_pointer, buffer_count, name, _NORMAL_BLOCK, nullptr, 0); in _wdupenv_s()
|
/reactos/modules/rostests/winetests/msvcrtd/ |
H A D | debug.c | 72 mem = pMSVCRTD_operator_new_dbg(42, _NORMAL_BLOCK, __FILE__, __LINE__); in test_new()
|
/reactos/sdk/include/crt/ |
H A D | crtdbg.h | 66 #define _NORMAL_BLOCK 1 macro
|