Home
last modified time | relevance | path

Searched refs:_TZ_STRINGS_SIZE (Results 1 – 3 of 3) sorted by relevance

/reactos/sdk/lib/ucrt/time/
H A Dtimeset.cpp29 static char tzstd_program[_TZ_STRINGS_SIZE] = { _PST_STRING };
30 static char tzdst_program[_TZ_STRINGS_SIZE] = { _PDT_STRING };
32 static wchar_t w_tzstd_program[_TZ_STRINGS_SIZE] = { L_PST_STRING };
33 static wchar_t w_tzdst_program[_TZ_STRINGS_SIZE] = { L_PDT_STRING };
36 static char tzstd_os[_TZ_STRINGS_SIZE] = { _PST_STRING };
37 static char tzdst_os[_TZ_STRINGS_SIZE] = { _PDT_STRING };
39 static wchar_t w_tzstd_os[_TZ_STRINGS_SIZE] = { L_PST_STRING };
40 static wchar_t w_tzdst_os[_TZ_STRINGS_SIZE] = { L_PDT_STRING };
H A Dtzset.cpp109 _ERRCHECK(wcsncpy_s(wide_tzname, _TZ_STRINGS_SIZE, timezone_name, 32)); in tzset_os_copy_to_tzname()
175 memset(wide_tzname[0], 0, _TZ_STRINGS_SIZE * sizeof(wchar_t)); in tzset_from_system_nolock()
176 memset(wide_tzname[1], 0, _TZ_STRINGS_SIZE * sizeof(wchar_t)); in tzset_from_system_nolock()
177 memset(tzname[0], 0, _TZ_STRINGS_SIZE); in tzset_from_system_nolock()
178 memset(tzname[1], 0, _TZ_STRINGS_SIZE); in tzset_from_system_nolock()
205 _ERRCHECK(wcsncpy_s(wide_tzname, _TZ_STRINGS_SIZE, tz_env, tzname_length)); in tzset_env_copy_to_tzname()
222 _TZ_STRINGS_SIZE - 1, // Leave room for null terminator in tzset_env_copy_to_tzname()
259 memset(wide_tzname[0], 0, _TZ_STRINGS_SIZE * sizeof(wchar_t)); in tzset_from_environment_nolock()
260 memset(wide_tzname[1], 0, _TZ_STRINGS_SIZE * sizeof(wchar_t)); in tzset_from_environment_nolock()
261 memset(tzname[0], 0, _TZ_STRINGS_SIZE); in tzset_from_environment_nolock()
[all …]
/reactos/sdk/lib/ucrt/inc/
H A Dcorecrt_internal_time.h42 #define _TZ_STRINGS_SIZE 64 macro