Searched refs:_malloc_crt_t (Results 1 – 12 of 12) sorted by relevance
/reactos/sdk/lib/ucrt/time/ |
H A D | strftime.cpp | 28 __crt_unique_heap_ptr<char> buffer(_malloc_crt_t(char, length + 1)); in _Getdays_l() 66 __crt_unique_heap_ptr<char> buffer(_malloc_crt_t(char, length + 1)); in _Getmonths_l() 147 __crt_unique_heap_ptr<wchar_t> const wstring(_malloc_crt_t(wchar_t, maxsize)); in _Strftime_l()
|
H A D | tzset.cpp | 90 __crt_unique_heap_ptr<wchar_t> dynamic_buffer(_malloc_crt_t(wchar_t, required_length)); in get_tz_environment_variable() 247 auto new_wide_tz = _malloc_crt_t(wchar_t, wcslen(tz_env) + 1); in tzset_from_environment_nolock()
|
H A D | gmtime.cpp | 168 ptd->_gmtime_buffer = _malloc_crt_t(tm, 1).detach(); in __getgmtimebuf()
|
H A D | wcsftime.cpp | 30 __crt_unique_heap_ptr<wchar_t> buffer(_malloc_crt_t(wchar_t, length + 1)); in _W_Getdays() 62 __crt_unique_heap_ptr<wchar_t> buffer(_malloc_crt_t(wchar_t, length + 1)); in _W_Getmonths()
|
/reactos/sdk/lib/ucrt/env/ |
H A D | get_environment_from_os.cpp | 64 __crt_unique_heap_ptr<wchar_t> buffer(_malloc_crt_t(wchar_t, required_count)); in __dcrt_get_wide_environment_from_os() 102 __crt_unique_heap_ptr<char> buffer(_malloc_crt_t(char, required_narrow_count)); in __dcrt_get_narrow_environment_from_os()
|
/reactos/sdk/lib/ucrt/locale/ |
H A D | initnum.cpp | 108 if ( (lc_refcount = _malloc_crt_t(long, 1).detach()) == nullptr ) in __acrt_locale_initialize_numeric() 120 if ( (lconv_num_refcount = _malloc_crt_t(long, 1).detach()) == nullptr ) in __acrt_locale_initialize_numeric()
|
/reactos/sdk/lib/ucrt/stdio/ |
H A D | _sftbuf.cpp | 94 *buffer = _malloc_crt_t(char, _INTERNAL_BUFSIZ).detach(); in __acrt_stdio_begin_temporary_buffering_nolock()
|
/reactos/sdk/lib/ucrt/convert/ |
H A D | fcvt.cpp | 31 raw_ptd->_cvtbuf = _malloc_crt_t(char, _CVTBUFSIZE).detach(); in try_get_ptd_buffer()
|
/reactos/sdk/lib/ucrt/inc/ |
H A D | internal_shared.h | 232 #define _malloc_crt_t(t, n) (__crt_unique_heap_ptr<t>(static_cast<t*>(_malloc_crt((n) * sizeof(t)))… macro
|
H A D | corecrt_internal_stdio_output.h | 394 __crt_unique_heap_ptr<char> new_buffer{_malloc_crt_t(char, required_size)};
|
/reactos/sdk/lib/ucrt/lowio/ |
H A D | read.cpp | 461 owned_internal_buffer = _malloc_crt_t(char, internal_buffer_remaining); in _read_nolock()
|
/reactos/sdk/lib/ucrt/mbstring/ |
H A D | mbctype.cpp | 411 __crt_unique_heap_ptr<__crt_multibyte_data> mb_data(_malloc_crt_t(__crt_multibyte_data, 1)); in setmbcp_internal()
|