Home
last modified time | relevance | path

Searched refs:_malloc_crt_t (Results 1 – 12 of 12) sorted by relevance

/reactos/sdk/lib/ucrt/time/
H A Dstrftime.cpp28 __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 Dtzset.cpp90 __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 Dgmtime.cpp168 ptd->_gmtime_buffer = _malloc_crt_t(tm, 1).detach(); in __getgmtimebuf()
H A Dwcsftime.cpp30 __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 Dget_environment_from_os.cpp64 __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 Dinitnum.cpp108 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.cpp94 *buffer = _malloc_crt_t(char, _INTERNAL_BUFSIZ).detach(); in __acrt_stdio_begin_temporary_buffering_nolock()
/reactos/sdk/lib/ucrt/convert/
H A Dfcvt.cpp31 raw_ptd->_cvtbuf = _malloc_crt_t(char, _CVTBUFSIZE).detach(); in try_get_ptd_buffer()
/reactos/sdk/lib/ucrt/inc/
H A Dinternal_shared.h232 #define _malloc_crt_t(t, n) (__crt_unique_heap_ptr<t>(static_cast<t*>(_malloc_crt((n) * sizeof(t)))… macro
H A Dcorecrt_internal_stdio_output.h394 __crt_unique_heap_ptr<char> new_buffer{_malloc_crt_t(char, required_size)};
/reactos/sdk/lib/ucrt/lowio/
H A Dread.cpp461 owned_internal_buffer = _malloc_crt_t(char, internal_buffer_remaining); in _read_nolock()
/reactos/sdk/lib/ucrt/mbstring/
H A Dmbctype.cpp411 __crt_unique_heap_ptr<__crt_multibyte_data> mb_data(_malloc_crt_t(__crt_multibyte_data, 1)); in setmbcp_internal()