68 _PVFV*
const encoded_nullptr = __crt_fast_encode_pointer(
nullptr);
70 table->_first = encoded_nullptr;
71 table->_last = encoded_nullptr;
72 table->_end = encoded_nullptr;
98 size_t const old_count =
end -
first;
103 size_t new_count = old_count + increment;
109 _PVFV* new_first =
nullptr;
110 if (new_count >= old_count)
112 new_first = _recalloc_crt_t(
_PVFV,
first, new_count).detach();
116 if (new_first ==
nullptr)
119 new_first = _recalloc_crt_t(
_PVFV,
first, new_count).detach();
122 if (new_first ==
nullptr)
128 last = new_first + old_count;
129 end = new_first + new_count;
134 _PVFV const encoded_nullptr = __crt_fast_encode_pointer(
nullptr);
135 for (
auto it =
last; it !=
end; ++it)
137 *it = encoded_nullptr;
141 *
last++ =
reinterpret_cast<_PVFV>(__crt_fast_encode_pointer(function));
143 table->_first = __crt_fast_encode_pointer(
first);
144 table->_last = __crt_fast_encode_pointer(
last);
145 table->_end = __crt_fast_encode_pointer(
end);
180 __crt_state_management::scoped_global_state_reset saved_state;
182 _PVFV const encoded_nullptr = __crt_fast_encode_pointer(
nullptr);
201 _PVFV const function = __crt_fast_decode_pointer(*
last);
202 *
last = encoded_nullptr;
206 _PVFV*
const new_first = __crt_fast_decode_pointer(
table->_first);
207 _PVFV*
const new_last = __crt_fast_decode_pointer(
table->_last);
210 if (new_first != saved_first || new_last != saved_last)
212 first = saved_first = new_first;
213 last = saved_last = new_last;
223 _PVFV*
const encoded_nullptr = __crt_fast_encode_pointer(
nullptr);
225 table->_first = encoded_nullptr;
226 table->_last = encoded_nullptr;
227 table->_end = encoded_nullptr;
#define __acrt_select_exit_lock()
void(__cdecl * _PVFV)(void)
int(__cdecl * _onexit_t)(void)
int __cdecl _crt_at_quick_exit(_PVFV const function)
_onexit_table_t __acrt_at_quick_exit_table
@ maximum_table_increment
@ minimum_table_increment
int __cdecl _crt_atexit(_PVFV const function)
int __cdecl _initialize_onexit_table(_onexit_table_t *const table)
int __cdecl _register_onexit_function(_onexit_table_t *const table, _onexit_t const function)
int __cdecl _execute_onexit_table(_onexit_table_t *const table)
_onexit_table_t __acrt_atexit_table