diff --git a/libcxx/include/__system_error/error_category.h b/libcxx/include/__system_error/error_category.h --- a/libcxx/include/__system_error/error_category.h +++ b/libcxx/include/__system_error/error_category.h @@ -25,52 +25,46 @@ class _LIBCPP_HIDDEN __do_message; -class _LIBCPP_TYPE_VIS error_category -{ +class _LIBCPP_TYPE_VIS error_category { public: - virtual ~error_category() _NOEXCEPT; + virtual ~error_category() _NOEXCEPT; #if defined(_LIBCPP_ERROR_CATEGORY_DEFINE_LEGACY_INLINE_FUNCTIONS) - error_category() noexcept; + error_category() noexcept; #else - _LIBCPP_INLINE_VISIBILITY - _LIBCPP_CONSTEXPR_SINCE_CXX14 error_category() _NOEXCEPT = default; + _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX14 error_category() _NOEXCEPT = default; #endif - error_category(const error_category&) = delete; - error_category& operator=(const error_category&) = delete; + error_category(const error_category&) = delete; + error_category& operator=(const error_category&) = delete; - virtual const char* name() const _NOEXCEPT = 0; - virtual error_condition default_error_condition(int __ev) const _NOEXCEPT; - virtual bool equivalent(int __code, const error_condition& __condition) const _NOEXCEPT; - virtual bool equivalent(const error_code& __code, int __condition) const _NOEXCEPT; - virtual string message(int __ev) const = 0; + virtual const char* name() const _NOEXCEPT = 0; + virtual error_condition default_error_condition(int __ev) const _NOEXCEPT; + virtual bool equivalent(int __code, const error_condition& __condition) const _NOEXCEPT; + virtual bool equivalent(const error_code& __code, int __condition) const _NOEXCEPT; + virtual string message(int __ev) const = 0; - _LIBCPP_INLINE_VISIBILITY - bool operator==(const error_category& __rhs) const _NOEXCEPT {return this == &__rhs;} + _LIBCPP_INLINE_VISIBILITY bool operator==(const error_category& __rhs) const _NOEXCEPT { return this == &__rhs; } #if _LIBCPP_STD_VER >= 20 - _LIBCPP_HIDE_FROM_ABI - strong_ordering operator<=>(const error_category& __rhs) const noexcept {return compare_three_way()(this, std::addressof(__rhs));} + _LIBCPP_HIDE_FROM_ABI strong_ordering operator<=>(const error_category& __rhs) const noexcept { + return compare_three_way()(this, std::addressof(__rhs)); + } -#else // _LIBCPP_STD_VER >= 20 +#else // _LIBCPP_STD_VER >= 20 - _LIBCPP_INLINE_VISIBILITY - bool operator!=(const error_category& __rhs) const _NOEXCEPT {return !(*this == __rhs);} + _LIBCPP_INLINE_VISIBILITY bool operator!=(const error_category& __rhs) const _NOEXCEPT { return !(*this == __rhs); } - _LIBCPP_INLINE_VISIBILITY - bool operator< (const error_category& __rhs) const _NOEXCEPT {return this < &__rhs;} + _LIBCPP_INLINE_VISIBILITY bool operator<(const error_category& __rhs) const _NOEXCEPT { return this < &__rhs; } #endif // _LIBCPP_STD_VER >= 20 - friend class _LIBCPP_HIDDEN __do_message; + friend class _LIBCPP_HIDDEN __do_message; }; -class _LIBCPP_HIDDEN __do_message - : public error_category -{ +class _LIBCPP_HIDDEN __do_message : public error_category { public: - string message(int __ev) const override; + string message(int __ev) const override; }; _LIBCPP_FUNC_VIS const error_category& generic_category() _NOEXCEPT; diff --git a/libcxx/include/__system_error/error_code.h b/libcxx/include/__system_error/error_code.h --- a/libcxx/include/__system_error/error_code.h +++ b/libcxx/include/__system_error/error_code.h @@ -27,8 +27,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD template -struct _LIBCPP_TEMPLATE_VIS is_error_code_enum - : public false_type {}; +struct _LIBCPP_TEMPLATE_VIS is_error_code_enum : public false_type {}; #if _LIBCPP_STD_VER >= 17 template @@ -36,154 +35,111 @@ #endif namespace __adl_only { - // Those cause ADL to trigger but they are not viable candidates, - // so they are never actually selected. - void make_error_code() = delete; +// Those cause ADL to trigger but they are not viable candidates, +// so they are never actually selected. +void make_error_code() = delete; } // namespace __adl_only -class _LIBCPP_TYPE_VIS error_code -{ - int __val_; - const error_category* __cat_; +class _LIBCPP_TYPE_VIS error_code { + int __val_; + const error_category* __cat_; + public: - _LIBCPP_INLINE_VISIBILITY - error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {} - - _LIBCPP_INLINE_VISIBILITY - error_code(int __val, const error_category& __cat) _NOEXCEPT - : __val_(__val), __cat_(&__cat) {} - - template - _LIBCPP_INLINE_VISIBILITY - error_code(_Ep __e, - typename enable_if::value>::type* = nullptr - ) _NOEXCEPT - { - using __adl_only::make_error_code; - *this = make_error_code(__e); - } - - _LIBCPP_INLINE_VISIBILITY - void assign(int __val, const error_category& __cat) _NOEXCEPT - { - __val_ = __val; - __cat_ = &__cat; - } - - template - _LIBCPP_INLINE_VISIBILITY - typename enable_if - < - is_error_code_enum<_Ep>::value, - error_code& - >::type - operator=(_Ep __e) _NOEXCEPT - { - using __adl_only::make_error_code; - *this = make_error_code(__e); - return *this; - } - - _LIBCPP_INLINE_VISIBILITY - void clear() _NOEXCEPT - { - __val_ = 0; - __cat_ = &system_category(); - } - - _LIBCPP_INLINE_VISIBILITY - int value() const _NOEXCEPT {return __val_;} - - _LIBCPP_INLINE_VISIBILITY - const error_category& category() const _NOEXCEPT {return *__cat_;} - - _LIBCPP_INLINE_VISIBILITY - error_condition default_error_condition() const _NOEXCEPT - {return __cat_->default_error_condition(__val_);} - - string message() const; - - _LIBCPP_INLINE_VISIBILITY - explicit operator bool() const _NOEXCEPT {return __val_ != 0;} + _LIBCPP_INLINE_VISIBILITY error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {} + + _LIBCPP_INLINE_VISIBILITY error_code(int __val, const error_category& __cat) _NOEXCEPT + : __val_(__val), + __cat_(&__cat) {} + + template + _LIBCPP_INLINE_VISIBILITY + error_code(_Ep __e, typename enable_if::value>::type* = nullptr) _NOEXCEPT { + using __adl_only::make_error_code; + *this = make_error_code(__e); + } + + _LIBCPP_INLINE_VISIBILITY void assign(int __val, const error_category& __cat) _NOEXCEPT { + __val_ = __val; + __cat_ = &__cat; + } + + template + _LIBCPP_INLINE_VISIBILITY typename enable_if< is_error_code_enum<_Ep>::value, error_code& >::type + operator=(_Ep __e) _NOEXCEPT { + using __adl_only::make_error_code; + *this = make_error_code(__e); + return *this; + } + + _LIBCPP_INLINE_VISIBILITY void clear() _NOEXCEPT { + __val_ = 0; + __cat_ = &system_category(); + } + + _LIBCPP_INLINE_VISIBILITY int value() const _NOEXCEPT { return __val_; } + + _LIBCPP_INLINE_VISIBILITY const error_category& category() const _NOEXCEPT { return *__cat_; } + + _LIBCPP_INLINE_VISIBILITY error_condition default_error_condition() const _NOEXCEPT { + return __cat_->default_error_condition(__val_); + } + + string message() const; + + _LIBCPP_INLINE_VISIBILITY explicit operator bool() const _NOEXCEPT { return __val_ != 0; } }; -inline _LIBCPP_INLINE_VISIBILITY -error_code -make_error_code(errc __e) _NOEXCEPT -{ - return error_code(static_cast(__e), generic_category()); +inline _LIBCPP_INLINE_VISIBILITY error_code make_error_code(errc __e) _NOEXCEPT { + return error_code(static_cast(__e), generic_category()); } -inline _LIBCPP_INLINE_VISIBILITY -bool -operator==(const error_code& __x, const error_code& __y) _NOEXCEPT -{ - return __x.category() == __y.category() && __x.value() == __y.value(); +inline _LIBCPP_INLINE_VISIBILITY bool operator==(const error_code& __x, const error_code& __y) _NOEXCEPT { + return __x.category() == __y.category() && __x.value() == __y.value(); } -inline _LIBCPP_INLINE_VISIBILITY -bool -operator==(const error_code& __x, const error_condition& __y) _NOEXCEPT -{ - return __x.category().equivalent(__x.value(), __y) - || __y.category().equivalent(__x, __y.value()); +inline _LIBCPP_INLINE_VISIBILITY bool operator==(const error_code& __x, const error_condition& __y) _NOEXCEPT { + return __x.category().equivalent(__x.value(), __y) || __y.category().equivalent(__x, __y.value()); } #if _LIBCPP_STD_VER <= 17 -inline _LIBCPP_INLINE_VISIBILITY -bool -operator==(const error_condition& __x, const error_code& __y) _NOEXCEPT -{ - return __y == __x; +inline _LIBCPP_INLINE_VISIBILITY bool operator==(const error_condition& __x, const error_code& __y) _NOEXCEPT { + return __y == __x; } #endif #if _LIBCPP_STD_VER <= 17 -inline _LIBCPP_INLINE_VISIBILITY -bool -operator!=(const error_code& __x, const error_code& __y) _NOEXCEPT -{return !(__x == __y);} - -inline _LIBCPP_INLINE_VISIBILITY -bool -operator!=(const error_code& __x, const error_condition& __y) _NOEXCEPT -{return !(__x == __y);} - -inline _LIBCPP_INLINE_VISIBILITY -bool -operator!=(const error_condition& __x, const error_code& __y) _NOEXCEPT -{return !(__x == __y);} - -inline _LIBCPP_INLINE_VISIBILITY -bool -operator<(const error_code& __x, const error_code& __y) _NOEXCEPT -{ - return __x.category() < __y.category() - || (__x.category() == __y.category() && __x.value() < __y.value()); +inline _LIBCPP_INLINE_VISIBILITY bool operator!=(const error_code& __x, const error_code& __y) _NOEXCEPT { + return !(__x == __y); +} + +inline _LIBCPP_INLINE_VISIBILITY bool operator!=(const error_code& __x, const error_condition& __y) _NOEXCEPT { + return !(__x == __y); +} + +inline _LIBCPP_INLINE_VISIBILITY bool operator!=(const error_condition& __x, const error_code& __y) _NOEXCEPT { + return !(__x == __y); +} + +inline _LIBCPP_INLINE_VISIBILITY bool operator<(const error_code& __x, const error_code& __y) _NOEXCEPT { + return __x.category() < __y.category() || (__x.category() == __y.category() && __x.value() < __y.value()); } -#else // _LIBCPP_STD_VER <= 17 +#else // _LIBCPP_STD_VER <= 17 -inline _LIBCPP_HIDE_FROM_ABI strong_ordering -operator<=>(const error_code& __x, const error_code& __y) noexcept -{ - if (auto __c = __x.category() <=> __y.category(); __c != 0) - return __c; - return __x.value() <=> __y.value(); +inline _LIBCPP_HIDE_FROM_ABI strong_ordering operator<=>(const error_code& __x, const error_code& __y) noexcept { + if (auto __c = __x.category() <=> __y.category(); __c != 0) + return __c; + return __x.value() <=> __y.value(); } #endif // _LIBCPP_STD_VER <= 17 template <> -struct _LIBCPP_TEMPLATE_VIS hash - : public __unary_function -{ - _LIBCPP_INLINE_VISIBILITY - size_t operator()(const error_code& __ec) const _NOEXCEPT - { - return static_cast(__ec.value()); - } +struct _LIBCPP_TEMPLATE_VIS hash : public __unary_function { + _LIBCPP_INLINE_VISIBILITY size_t operator()(const error_code& __ec) const _NOEXCEPT { + return static_cast(__ec.value()); + } }; _LIBCPP_END_NAMESPACE_STD diff --git a/libcxx/include/__system_error/error_condition.h b/libcxx/include/__system_error/error_condition.h --- a/libcxx/include/__system_error/error_condition.h +++ b/libcxx/include/__system_error/error_condition.h @@ -25,8 +25,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD template -struct _LIBCPP_TEMPLATE_VIS is_error_condition_enum - : public false_type {}; +struct _LIBCPP_TEMPLATE_VIS is_error_condition_enum : public false_type {}; #if _LIBCPP_STD_VER >= 17 template @@ -34,133 +33,97 @@ #endif template <> -struct _LIBCPP_TEMPLATE_VIS is_error_condition_enum - : true_type { }; +struct _LIBCPP_TEMPLATE_VIS is_error_condition_enum : true_type {}; #ifdef _LIBCPP_CXX03_LANG template <> -struct _LIBCPP_TEMPLATE_VIS is_error_condition_enum - : true_type { }; +struct _LIBCPP_TEMPLATE_VIS is_error_condition_enum : true_type {}; #endif namespace __adl_only { - // Those cause ADL to trigger but they are not viable candidates, - // so they are never actually selected. - void make_error_condition() = delete; +// Those cause ADL to trigger but they are not viable candidates, +// so they are never actually selected. +void make_error_condition() = delete; } // namespace __adl_only -class _LIBCPP_TYPE_VIS error_condition -{ - int __val_; - const error_category* __cat_; +class _LIBCPP_TYPE_VIS error_condition { + int __val_; + const error_category* __cat_; + public: - _LIBCPP_INLINE_VISIBILITY - error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {} - - _LIBCPP_INLINE_VISIBILITY - error_condition(int __val, const error_category& __cat) _NOEXCEPT - : __val_(__val), __cat_(&__cat) {} - - template - _LIBCPP_INLINE_VISIBILITY - error_condition(_Ep __e, - typename enable_if::value>::type* = nullptr - ) _NOEXCEPT - { - using __adl_only::make_error_condition; - *this = make_error_condition(__e); - } - - _LIBCPP_INLINE_VISIBILITY - void assign(int __val, const error_category& __cat) _NOEXCEPT - { - __val_ = __val; - __cat_ = &__cat; - } - - template - _LIBCPP_INLINE_VISIBILITY - typename enable_if - < - is_error_condition_enum<_Ep>::value, - error_condition& - >::type - operator=(_Ep __e) _NOEXCEPT - { - using __adl_only::make_error_condition; - *this = make_error_condition(__e); - return *this; - } - - _LIBCPP_INLINE_VISIBILITY - void clear() _NOEXCEPT - { - __val_ = 0; - __cat_ = &generic_category(); - } - - _LIBCPP_INLINE_VISIBILITY - int value() const _NOEXCEPT {return __val_;} - - _LIBCPP_INLINE_VISIBILITY - const error_category& category() const _NOEXCEPT {return *__cat_;} - string message() const; - - _LIBCPP_INLINE_VISIBILITY - explicit operator bool() const _NOEXCEPT {return __val_ != 0;} + _LIBCPP_INLINE_VISIBILITY error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {} + + _LIBCPP_INLINE_VISIBILITY error_condition(int __val, const error_category& __cat) _NOEXCEPT + : __val_(__val), + __cat_(&__cat) {} + + template + _LIBCPP_INLINE_VISIBILITY + error_condition(_Ep __e, typename enable_if::value>::type* = nullptr) _NOEXCEPT { + using __adl_only::make_error_condition; + *this = make_error_condition(__e); + } + + _LIBCPP_INLINE_VISIBILITY void assign(int __val, const error_category& __cat) _NOEXCEPT { + __val_ = __val; + __cat_ = &__cat; + } + + template + _LIBCPP_INLINE_VISIBILITY typename enable_if< is_error_condition_enum<_Ep>::value, error_condition& >::type + operator=(_Ep __e) _NOEXCEPT { + using __adl_only::make_error_condition; + *this = make_error_condition(__e); + return *this; + } + + _LIBCPP_INLINE_VISIBILITY void clear() _NOEXCEPT { + __val_ = 0; + __cat_ = &generic_category(); + } + + _LIBCPP_INLINE_VISIBILITY int value() const _NOEXCEPT { return __val_; } + + _LIBCPP_INLINE_VISIBILITY const error_category& category() const _NOEXCEPT { return *__cat_; } + string message() const; + + _LIBCPP_INLINE_VISIBILITY explicit operator bool() const _NOEXCEPT { return __val_ != 0; } }; -inline _LIBCPP_INLINE_VISIBILITY -error_condition -make_error_condition(errc __e) _NOEXCEPT -{ - return error_condition(static_cast(__e), generic_category()); +inline _LIBCPP_INLINE_VISIBILITY error_condition make_error_condition(errc __e) _NOEXCEPT { + return error_condition(static_cast(__e), generic_category()); } -inline _LIBCPP_INLINE_VISIBILITY -bool -operator==(const error_condition& __x, const error_condition& __y) _NOEXCEPT -{ - return __x.category() == __y.category() && __x.value() == __y.value(); +inline _LIBCPP_INLINE_VISIBILITY bool operator==(const error_condition& __x, const error_condition& __y) _NOEXCEPT { + return __x.category() == __y.category() && __x.value() == __y.value(); } #if _LIBCPP_STD_VER <= 17 -inline _LIBCPP_INLINE_VISIBILITY -bool -operator!=(const error_condition& __x, const error_condition& __y) _NOEXCEPT -{return !(__x == __y);} - -inline _LIBCPP_INLINE_VISIBILITY -bool -operator<(const error_condition& __x, const error_condition& __y) _NOEXCEPT -{ - return __x.category() < __y.category() - || (__x.category() == __y.category() && __x.value() < __y.value()); +inline _LIBCPP_INLINE_VISIBILITY bool operator!=(const error_condition& __x, const error_condition& __y) _NOEXCEPT { + return !(__x == __y); } +inline _LIBCPP_INLINE_VISIBILITY bool operator<(const error_condition& __x, const error_condition& __y) _NOEXCEPT { + return __x.category() < __y.category() || (__x.category() == __y.category() && __x.value() < __y.value()); +} -#else // _LIBCPP_STD_VER <= 17 +#else // _LIBCPP_STD_VER <= 17 inline _LIBCPP_HIDE_FROM_ABI strong_ordering -operator<=>(const error_condition& __x, const error_condition& __y) noexcept -{ - if (auto __c = __x.category() <=> __y.category(); __c != 0) - return __c; - return __x.value() <=> __y.value(); +operator<=>(const error_condition& __x, const error_condition& __y) noexcept { + if (auto __c = __x.category() <=> __y.category(); __c != 0) + return __c; + return __x.value() <=> __y.value(); } #endif // _LIBCPP_STD_VER <= 17 template <> -struct _LIBCPP_TEMPLATE_VIS hash - : public __unary_function -{ - _LIBCPP_INLINE_VISIBILITY - size_t operator()(const error_condition& __ec) const _NOEXCEPT - { - return static_cast(__ec.value()); - } +struct _LIBCPP_TEMPLATE_VIS hash : public __unary_function { + _LIBCPP_INLINE_VISIBILITY size_t operator()(const error_condition& __ec) const _NOEXCEPT { + return static_cast(__ec.value()); + } }; _LIBCPP_END_NAMESPACE_STD diff --git a/libcxx/include/__system_error/system_error.h b/libcxx/include/__system_error/system_error.h --- a/libcxx/include/__system_error/system_error.h +++ b/libcxx/include/__system_error/system_error.h @@ -22,30 +22,26 @@ _LIBCPP_BEGIN_NAMESPACE_STD -class _LIBCPP_TYPE_VIS system_error - : public runtime_error -{ - error_code __ec_; +class _LIBCPP_TYPE_VIS system_error : public runtime_error { + error_code __ec_; + public: - system_error(error_code __ec, const string& __what_arg); - system_error(error_code __ec, const char* __what_arg); - system_error(error_code __ec); - system_error(int __ev, const error_category& __ecat, const string& __what_arg); - system_error(int __ev, const error_category& __ecat, const char* __what_arg); - system_error(int __ev, const error_category& __ecat); - system_error(const system_error&) _NOEXCEPT = default; - ~system_error() _NOEXCEPT override; - - _LIBCPP_INLINE_VISIBILITY - const error_code& code() const _NOEXCEPT {return __ec_;} + system_error(error_code __ec, const string& __what_arg); + system_error(error_code __ec, const char* __what_arg); + system_error(error_code __ec); + system_error(int __ev, const error_category& __ecat, const string& __what_arg); + system_error(int __ev, const error_category& __ecat, const char* __what_arg); + system_error(int __ev, const error_category& __ecat); + system_error(const system_error&) _NOEXCEPT = default; + ~system_error() _NOEXCEPT override; + + _LIBCPP_INLINE_VISIBILITY const error_code& code() const _NOEXCEPT { return __ec_; } private: - static string __init(const error_code&, string); + static string __init(const error_code&, string); }; -_LIBCPP_NORETURN _LIBCPP_FUNC_VIS -void __throw_system_error(int __ev, const char* __what_arg); - +_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void __throw_system_error(int __ev, const char* __what_arg); _LIBCPP_END_NAMESPACE_STD #endif // _LIBCPP___SYSTEM_ERROR_SYSTEM_ERROR_H diff --git a/libcxx/utils/data/ignore_format.txt b/libcxx/utils/data/ignore_format.txt --- a/libcxx/utils/data/ignore_format.txt +++ b/libcxx/utils/data/ignore_format.txt @@ -1,842 +1,52 @@ -libcxx/benchmarks/CartesianBenchmarks.h -libcxx/benchmarks/ContainerBenchmarks.h -libcxx/benchmarks/GenerateInput.h -libcxx/benchmarks/Utilities.h -libcxx/benchmarks/VariantBenchmarks.h +libcxx/benchmarks/random.bench.cpp +libcxx/benchmarks/algorithms/sort_heap.bench.cpp libcxx/benchmarks/algorithms/common.h +libcxx/benchmarks/algorithms/ranges_make_heap.bench.cpp libcxx/benchmarks/algorithms/lower_bound.bench.cpp +libcxx/benchmarks/algorithms/ranges_sort.bench.cpp +libcxx/benchmarks/algorithms/ranges_push_heap.bench.cpp +libcxx/benchmarks/algorithms/stable_sort.bench.cpp libcxx/benchmarks/algorithms/make_heap.bench.cpp -libcxx/benchmarks/algorithms/make_heap_then_sort_heap.bench.cpp -libcxx/benchmarks/algorithms.partition_point.bench.cpp -libcxx/benchmarks/algorithms/pop_heap.bench.cpp +libcxx/benchmarks/algorithms/ranges_sort_heap.bench.cpp libcxx/benchmarks/algorithms/push_heap.bench.cpp -libcxx/benchmarks/algorithms/ranges_make_heap.bench.cpp libcxx/benchmarks/algorithms/ranges_make_heap_then_sort_heap.bench.cpp +libcxx/benchmarks/algorithms/sort.bench.cpp libcxx/benchmarks/algorithms/ranges_pop_heap.bench.cpp -libcxx/benchmarks/algorithms/ranges_push_heap.bench.cpp -libcxx/benchmarks/algorithms/ranges_sort.bench.cpp -libcxx/benchmarks/algorithms/ranges_sort_heap.bench.cpp +libcxx/benchmarks/algorithms/make_heap_then_sort_heap.bench.cpp +libcxx/benchmarks/algorithms/pop_heap.bench.cpp libcxx/benchmarks/algorithms/ranges_stable_sort.bench.cpp -libcxx/benchmarks/algorithms/sort.bench.cpp -libcxx/benchmarks/algorithms/sort_heap.bench.cpp -libcxx/benchmarks/algorithms/stable_sort.bench.cpp -libcxx/benchmarks/allocation.bench.cpp -libcxx/benchmarks/deque.bench.cpp -libcxx/benchmarks/filesystem.bench.cpp -libcxx/benchmarks/formatter_float.bench.cpp -libcxx/benchmarks/formatter_int.bench.cpp -libcxx/benchmarks/format_to.bench.cpp -libcxx/benchmarks/format_to_n.bench.cpp libcxx/benchmarks/function.bench.cpp +libcxx/benchmarks/format_to.bench.cpp +libcxx/benchmarks/VariantBenchmarks.h +libcxx/benchmarks/Utilities.h libcxx/benchmarks/map.bench.cpp -libcxx/benchmarks/ordered_set.bench.cpp -libcxx/benchmarks/random.bench.cpp -libcxx/benchmarks/string.bench.cpp -libcxx/benchmarks/stringstream.bench.cpp libcxx/benchmarks/unordered_set_operations.bench.cpp +libcxx/benchmarks/CartesianBenchmarks.h +libcxx/benchmarks/formatter_int.bench.cpp libcxx/benchmarks/vector_operations.bench.cpp -libcxx/include/__algorithm/binary_search.h -libcxx/include/__algorithm/clamp.h -libcxx/include/__algorithm/comp.h -libcxx/include/__algorithm/comp_ref_type.h -libcxx/include/__algorithm/copy_backward.h -libcxx/include/__algorithm/copy.h -libcxx/include/__algorithm/copy_if.h -libcxx/include/__algorithm/copy_move_common.h -libcxx/include/__algorithm/copy_n.h -libcxx/include/__algorithm/equal.h -libcxx/include/__algorithm/equal_range.h -libcxx/include/__algorithm/fill.h -libcxx/include/__algorithm/fill_n.h -libcxx/include/__algorithm/find_end.h -libcxx/include/__algorithm/find_first_of.h -libcxx/include/__algorithm/for_each.h -libcxx/include/__algorithm/for_each_n.h -libcxx/include/__algorithm/generate.h -libcxx/include/__algorithm/generate_n.h -libcxx/include/__algorithm/half_positive.h -libcxx/include/__algorithm/includes.h -libcxx/include/__algorithm/in_found_result.h -libcxx/include/__algorithm/in_fun_result.h -libcxx/include/__algorithm/in_in_out_result.h -libcxx/include/__algorithm/in_in_result.h -libcxx/include/__algorithm/in_out_out_result.h -libcxx/include/__algorithm/in_out_result.h -libcxx/include/__algorithm/inplace_merge.h -libcxx/include/__algorithm/is_heap.h -libcxx/include/__algorithm/is_heap_until.h -libcxx/include/__algorithm/is_partitioned.h -libcxx/include/__algorithm/is_permutation.h -libcxx/include/__algorithm/is_sorted.h -libcxx/include/__algorithm/is_sorted_until.h -libcxx/include/__algorithm/iterator_operations.h -libcxx/include/__algorithm/iter_swap.h -libcxx/include/__algorithm/lexicographical_compare.h -libcxx/include/__algorithm/lower_bound.h -libcxx/include/__algorithm/make_heap.h -libcxx/include/__algorithm/make_projected.h -libcxx/include/__algorithm/max_element.h -libcxx/include/__algorithm/max.h -libcxx/include/__algorithm/merge.h -libcxx/include/__algorithm/min_element.h -libcxx/include/__algorithm/min.h -libcxx/include/__algorithm/minmax_element.h -libcxx/include/__algorithm/minmax.h -libcxx/include/__algorithm/min_max_result.h -libcxx/include/__algorithm/mismatch.h -libcxx/include/__algorithm/move_backward.h -libcxx/include/__algorithm/move.h -libcxx/include/__algorithm/next_permutation.h -libcxx/include/__algorithm/nth_element.h -libcxx/include/__algorithm/partial_sort_copy.h -libcxx/include/__algorithm/partial_sort.h -libcxx/include/__algorithm/partition_copy.h -libcxx/include/__algorithm/partition.h -libcxx/include/__algorithm/partition_point.h -libcxx/include/__algorithm/pop_heap.h -libcxx/include/__algorithm/prev_permutation.h -libcxx/include/__algorithm/push_heap.h -libcxx/include/__algorithm/ranges_adjacent_find.h -libcxx/include/__algorithm/ranges_all_of.h -libcxx/include/__algorithm/ranges_any_of.h -libcxx/include/__algorithm/ranges_binary_search.h -libcxx/include/__algorithm/ranges_clamp.h -libcxx/include/__algorithm/ranges_copy_backward.h -libcxx/include/__algorithm/ranges_copy.h -libcxx/include/__algorithm/ranges_copy_if.h -libcxx/include/__algorithm/ranges_copy_n.h -libcxx/include/__algorithm/ranges_count.h -libcxx/include/__algorithm/ranges_count_if.h -libcxx/include/__algorithm/ranges_equal.h -libcxx/include/__algorithm/ranges_equal_range.h -libcxx/include/__algorithm/ranges_fill.h -libcxx/include/__algorithm/ranges_fill_n.h -libcxx/include/__algorithm/ranges_find_end.h -libcxx/include/__algorithm/ranges_find_first_of.h -libcxx/include/__algorithm/ranges_find.h -libcxx/include/__algorithm/ranges_find_if.h -libcxx/include/__algorithm/ranges_find_if_not.h -libcxx/include/__algorithm/ranges_for_each.h -libcxx/include/__algorithm/ranges_for_each_n.h -libcxx/include/__algorithm/ranges_generate.h -libcxx/include/__algorithm/ranges_generate_n.h -libcxx/include/__algorithm/ranges_includes.h -libcxx/include/__algorithm/ranges_inplace_merge.h -libcxx/include/__algorithm/ranges_is_heap.h -libcxx/include/__algorithm/ranges_is_heap_until.h -libcxx/include/__algorithm/ranges_is_partitioned.h -libcxx/include/__algorithm/ranges_is_permutation.h -libcxx/include/__algorithm/ranges_is_sorted.h -libcxx/include/__algorithm/ranges_is_sorted_until.h -libcxx/include/__algorithm/ranges_lexicographical_compare.h -libcxx/include/__algorithm/ranges_lower_bound.h -libcxx/include/__algorithm/ranges_make_heap.h -libcxx/include/__algorithm/ranges_max_element.h -libcxx/include/__algorithm/ranges_max.h -libcxx/include/__algorithm/ranges_merge.h -libcxx/include/__algorithm/ranges_min_element.h -libcxx/include/__algorithm/ranges_min.h -libcxx/include/__algorithm/ranges_minmax_element.h -libcxx/include/__algorithm/ranges_minmax.h -libcxx/include/__algorithm/ranges_mismatch.h -libcxx/include/__algorithm/ranges_move_backward.h -libcxx/include/__algorithm/ranges_move.h -libcxx/include/__algorithm/ranges_none_of.h -libcxx/include/__algorithm/ranges_nth_element.h -libcxx/include/__algorithm/ranges_partial_sort_copy.h -libcxx/include/__algorithm/ranges_partial_sort.h -libcxx/include/__algorithm/ranges_partition_copy.h -libcxx/include/__algorithm/ranges_partition.h -libcxx/include/__algorithm/ranges_partition_point.h -libcxx/include/__algorithm/ranges_pop_heap.h -libcxx/include/__algorithm/ranges_prev_permutation.h -libcxx/include/__algorithm/ranges_push_heap.h -libcxx/include/__algorithm/ranges_remove_copy.h -libcxx/include/__algorithm/ranges_remove_copy_if.h -libcxx/include/__algorithm/ranges_remove.h -libcxx/include/__algorithm/ranges_remove_if.h -libcxx/include/__algorithm/ranges_replace_copy.h -libcxx/include/__algorithm/ranges_replace_copy_if.h -libcxx/include/__algorithm/ranges_replace.h -libcxx/include/__algorithm/ranges_replace_if.h -libcxx/include/__algorithm/ranges_reverse_copy.h -libcxx/include/__algorithm/ranges_reverse.h -libcxx/include/__algorithm/ranges_rotate_copy.h -libcxx/include/__algorithm/ranges_rotate.h -libcxx/include/__algorithm/ranges_sample.h -libcxx/include/__algorithm/ranges_search.h -libcxx/include/__algorithm/ranges_search_n.h -libcxx/include/__algorithm/ranges_set_difference.h -libcxx/include/__algorithm/ranges_set_intersection.h -libcxx/include/__algorithm/ranges_set_symmetric_difference.h -libcxx/include/__algorithm/ranges_set_union.h -libcxx/include/__algorithm/ranges_shuffle.h -libcxx/include/__algorithm/ranges_sort.h -libcxx/include/__algorithm/ranges_sort_heap.h -libcxx/include/__algorithm/ranges_stable_partition.h -libcxx/include/__algorithm/ranges_stable_sort.h -libcxx/include/__algorithm/ranges_swap_ranges.h -libcxx/include/__algorithm/ranges_transform.h -libcxx/include/__algorithm/ranges_unique_copy.h -libcxx/include/__algorithm/ranges_unique.h -libcxx/include/__algorithm/ranges_upper_bound.h -libcxx/include/__algorithm/remove_copy.h -libcxx/include/__algorithm/remove_copy_if.h -libcxx/include/__algorithm/remove.h -libcxx/include/__algorithm/remove_if.h -libcxx/include/__algorithm/replace_copy.h -libcxx/include/__algorithm/replace_copy_if.h -libcxx/include/__algorithm/replace.h -libcxx/include/__algorithm/replace_if.h -libcxx/include/__algorithm/reverse_copy.h -libcxx/include/__algorithm/reverse.h -libcxx/include/__algorithm/rotate_copy.h -libcxx/include/__algorithm/rotate.h -libcxx/include/__algorithm/sample.h -libcxx/include/__algorithm/search.h -libcxx/include/__algorithm/search_n.h -libcxx/include/__algorithm/set_difference.h -libcxx/include/__algorithm/shift_left.h -libcxx/include/__algorithm/shift_right.h -libcxx/include/__algorithm/shuffle.h -libcxx/include/__algorithm/sift_down.h -libcxx/include/__algorithm/sort.h -libcxx/include/__algorithm/sort_heap.h -libcxx/include/__algorithm/stable_partition.h -libcxx/include/__algorithm/stable_sort.h -libcxx/include/__algorithm/swap_ranges.h -libcxx/include/__algorithm/transform.h -libcxx/include/__algorithm/uniform_random_bit_generator_adaptor.h -libcxx/include/__algorithm/unwrap_iter.h -libcxx/include/__algorithm/unwrap_range.h -libcxx/include/__algorithm/upper_bound.h -libcxx/include/any -libcxx/include/array -libcxx/include/__atomic/atomic_base.h -libcxx/include/__atomic/atomic_flag.h -libcxx/include/__atomic/atomic.h -libcxx/include/__atomic/atomic_init.h -libcxx/include/__atomic/atomic_lock_free.h -libcxx/include/__atomic/atomic_sync.h -libcxx/include/__atomic/check_memory_order.h -libcxx/include/__atomic/contention_t.h -libcxx/include/__atomic/cxx_atomic_impl.h -libcxx/include/__atomic/fence.h -libcxx/include/__atomic/kill_dependency.h -libcxx/include/__atomic/memory_order.h -libcxx/include/__availability -libcxx/include/barrier -libcxx/include/__bit/bit_cast.h -libcxx/include/__bit/bit_ceil.h -libcxx/include/__bit/byteswap.h -libcxx/include/__bit/countl.h -libcxx/include/__bit/countr.h -libcxx/include/__bit/endian.h -libcxx/include/__bit/popcount.h -libcxx/include/__bit_reference -libcxx/include/__bit/rotate.h -libcxx/include/bitset -libcxx/include/__bsd_locale_defaults.h -libcxx/include/__bsd_locale_fallbacks.h -libcxx/include/cctype -libcxx/include/chrono -libcxx/include/__chrono/calendar.h -libcxx/include/__chrono/convert_to_timespec.h -libcxx/include/__chrono/day.h -libcxx/include/__chrono/duration.h -libcxx/include/__chrono/file_clock.h -libcxx/include/__chrono/formatter.h -libcxx/include/__chrono/hh_mm_ss.h -libcxx/include/__chrono/high_resolution_clock.h -libcxx/include/__chrono/literals.h -libcxx/include/__chrono/monthday.h -libcxx/include/__chrono/month.h -libcxx/include/__chrono/month_weekday.h -libcxx/include/__chrono/steady_clock.h -libcxx/include/__chrono/system_clock.h -libcxx/include/__chrono/time_point.h -libcxx/include/__chrono/weekday.h -libcxx/include/__chrono/year.h -libcxx/include/__chrono/year_month_day.h -libcxx/include/__chrono/year_month.h -libcxx/include/__chrono/year_month_weekday.h -libcxx/include/cmath -libcxx/include/codecvt -libcxx/include/__compare/common_comparison_category.h +libcxx/benchmarks/string.bench.cpp +libcxx/benchmarks/allocation.bench.cpp +libcxx/benchmarks/stringstream.bench.cpp +libcxx/benchmarks/filesystem.bench.cpp +libcxx/benchmarks/formatter_float.bench.cpp +libcxx/benchmarks/deque.bench.cpp +libcxx/benchmarks/algorithms.partition_point.bench.cpp +libcxx/benchmarks/ordered_set.bench.cpp +libcxx/benchmarks/ContainerBenchmarks.h +libcxx/benchmarks/GenerateInput.h +libcxx/benchmarks/format_to_n.bench.cpp +libcxx/include/__compare/weak_order.h +libcxx/include/__compare/partial_order.h libcxx/include/__compare/compare_partial_order_fallback.h -libcxx/include/__compare/compare_strong_order_fallback.h +libcxx/include/__compare/three_way_comparable.h libcxx/include/__compare/compare_three_way.h -libcxx/include/__compare/compare_three_way_result.h libcxx/include/__compare/compare_weak_order_fallback.h +libcxx/include/__compare/compare_strong_order_fallback.h libcxx/include/__compare/ordering.h -libcxx/include/__compare/partial_order.h libcxx/include/__compare/strong_order.h -libcxx/include/__compare/three_way_comparable.h -libcxx/include/__compare/weak_order.h -libcxx/include/complex -libcxx/include/__concepts/arithmetic.h -libcxx/include/__concepts/assignable.h -libcxx/include/__concepts/boolean_testable.h -libcxx/include/__concepts/class_or_enum.h -libcxx/include/__concepts/common_reference_with.h -libcxx/include/__concepts/common_with.h -libcxx/include/__concepts/constructible.h -libcxx/include/__concepts/convertible_to.h -libcxx/include/__concepts/copyable.h -libcxx/include/__concepts/derived_from.h -libcxx/include/__concepts/destructible.h -libcxx/include/__concepts/different_from.h -libcxx/include/__concepts/equality_comparable.h -libcxx/include/__concepts/invocable.h -libcxx/include/__concepts/movable.h -libcxx/include/__concepts/predicate.h -libcxx/include/__concepts/regular.h -libcxx/include/__concepts/relation.h -libcxx/include/__concepts/same_as.h -libcxx/include/__concepts/semiregular.h -libcxx/include/__concepts/swappable.h -libcxx/include/__concepts/totally_ordered.h -libcxx/include/condition_variable -libcxx/include/__config -libcxx/include/__coroutine/coroutine_handle.h -libcxx/include/__coroutine/coroutine_traits.h -libcxx/include/__coroutine/noop_coroutine_handle.h -libcxx/include/__coroutine/trivial_awaitables.h -libcxx/include/cstddef -libcxx/include/ctype.h +libcxx/include/__compare/common_comparison_category.h +libcxx/include/__compare/compare_three_way_result.h libcxx/include/cuchar -libcxx/include/__debug -libcxx/include/__debug_utils/randomize_range.h -libcxx/include/deque -libcxx/include/__errc -libcxx/include/errno.h -libcxx/include/execution -libcxx/include/expected -libcxx/include/__expected/expected.h -libcxx/include/experimental/__config -libcxx/include/experimental/iterator -libcxx/include/experimental/map -libcxx/include/experimental/__memory -libcxx/include/experimental/memory_resource -libcxx/include/experimental/propagate_const -libcxx/include/experimental/regex -libcxx/include/experimental/set -libcxx/include/experimental/simd -libcxx/include/experimental/string -libcxx/include/experimental/type_traits -libcxx/include/experimental/unordered_map -libcxx/include/experimental/unordered_set -libcxx/include/experimental/utility -libcxx/include/ext/__hash -libcxx/include/ext/hash_map -libcxx/include/ext/hash_set -libcxx/include/fenv.h -libcxx/include/filesystem -libcxx/include/__filesystem/copy_options.h -libcxx/include/__filesystem/directory_entry.h -libcxx/include/__filesystem/directory_iterator.h -libcxx/include/__filesystem/directory_options.h -libcxx/include/__filesystem/file_status.h -libcxx/include/__filesystem/filesystem_error.h -libcxx/include/__filesystem/file_type.h -libcxx/include/__filesystem/operations.h -libcxx/include/__filesystem/path.h -libcxx/include/__filesystem/path_iterator.h -libcxx/include/__filesystem/perm_options.h -libcxx/include/__filesystem/perms.h -libcxx/include/__filesystem/recursive_directory_iterator.h -libcxx/include/__filesystem/u8path.h -libcxx/include/float.h -libcxx/include/format -libcxx/include/__format/buffer.h -libcxx/include/__format/concepts.h -libcxx/include/__format/escaped_output_table.h -libcxx/include/__format/extended_grapheme_cluster_table.h -libcxx/include/__format/format_arg.h -libcxx/include/__format/format_args.h -libcxx/include/__format/format_arg_store.h -libcxx/include/__format/format_context.h -libcxx/include/__format/format_error.h -libcxx/include/__format/format_functions.h -libcxx/include/__format/format_parse_context.h -libcxx/include/__format/format_string.h -libcxx/include/__format/formatter_bool.h -libcxx/include/__format/formatter_char.h -libcxx/include/__format/formatter_floating_point.h -libcxx/include/__format/formatter.h -libcxx/include/__format/formatter_integer.h -libcxx/include/__format/formatter_integral.h -libcxx/include/__format/formatter_output.h -libcxx/include/__format/formatter_pointer.h -libcxx/include/__format/formatter_string.h -libcxx/include/__format/parser_std_format_spec.h -libcxx/include/__format/unicode.h -libcxx/include/forward_list -libcxx/include/fstream -libcxx/include/__functional/binary_function.h -libcxx/include/__functional/binary_negate.h -libcxx/include/__functional/bind_back.h -libcxx/include/__functional/binder1st.h -libcxx/include/__functional/binder2nd.h -libcxx/include/__functional/bind_front.h -libcxx/include/__functional/bind.h -libcxx/include/__functional/boyer_moore_searcher.h -libcxx/include/__functional/compose.h -libcxx/include/__functional/default_searcher.h -libcxx/include/__functional/function.h -libcxx/include/__functional/hash.h -libcxx/include/__functional/identity.h -libcxx/include/__functional/invoke.h -libcxx/include/__functional/is_transparent.h -libcxx/include/__functional/mem_fn.h -libcxx/include/__functional/mem_fun_ref.h -libcxx/include/__functional/not_fn.h -libcxx/include/__functional/operations.h -libcxx/include/__functional/perfect_forward.h -libcxx/include/__functional/pointer_to_binary_function.h -libcxx/include/__functional/pointer_to_unary_function.h -libcxx/include/__functional/ranges_operations.h -libcxx/include/__functional/reference_wrapper.h -libcxx/include/__functional/unary_function.h -libcxx/include/__functional/unary_negate.h -libcxx/include/__functional/unwrap_ref.h -libcxx/include/__functional/weak_result_type.h -libcxx/include/future -libcxx/include/__fwd/get.h -libcxx/include/__fwd/span.h -libcxx/include/__fwd/string_view.h -libcxx/include/__fwd/subrange.h -libcxx/include/__hash_table -libcxx/include/initializer_list -libcxx/include/inttypes.h -libcxx/include/iomanip -libcxx/include/ios -libcxx/include/__ios/fpos.h -libcxx/include/iosfwd -libcxx/include/istream -libcxx/include/__iterator/access.h -libcxx/include/__iterator/advance.h -libcxx/include/__iterator/back_insert_iterator.h -libcxx/include/__iterator/common_iterator.h -libcxx/include/__iterator/concepts.h -libcxx/include/__iterator/counted_iterator.h -libcxx/include/__iterator/data.h -libcxx/include/__iterator/default_sentinel.h -libcxx/include/__iterator/distance.h -libcxx/include/__iterator/empty.h -libcxx/include/__iterator/erase_if_container.h -libcxx/include/__iterator/front_insert_iterator.h -libcxx/include/__iterator/incrementable_traits.h -libcxx/include/__iterator/indirectly_comparable.h -libcxx/include/__iterator/insert_iterator.h -libcxx/include/__iterator/istreambuf_iterator.h -libcxx/include/__iterator/istream_iterator.h -libcxx/include/__iterator/iterator.h -libcxx/include/__iterator/iterator_traits.h -libcxx/include/__iterator/iter_move.h -libcxx/include/__iterator/iter_swap.h -libcxx/include/__iterator/mergeable.h -libcxx/include/__iterator/move_iterator.h -libcxx/include/__iterator/move_sentinel.h -libcxx/include/__iterator/next.h -libcxx/include/__iterator/ostreambuf_iterator.h -libcxx/include/__iterator/ostream_iterator.h -libcxx/include/__iterator/permutable.h -libcxx/include/__iterator/prev.h -libcxx/include/__iterator/projected.h -libcxx/include/__iterator/readable_traits.h -libcxx/include/__iterator/reverse_access.h -libcxx/include/__iterator/reverse_iterator.h -libcxx/include/__iterator/size.h -libcxx/include/__iterator/sortable.h -libcxx/include/__iterator/unreachable_sentinel.h -libcxx/include/__iterator/wrap_iter.h -libcxx/include/latch -libcxx/include/limits -libcxx/include/limits.h -libcxx/include/list -libcxx/include/__locale -libcxx/include/locale -libcxx/include/locale.h -libcxx/include/map -libcxx/include/math.h -libcxx/include/__mbstate_t.h -libcxx/include/memory -libcxx/include/__memory/addressof.h -libcxx/include/__memory/aligned_alloc.h -libcxx/include/__memory/allocate_at_least.h -libcxx/include/__memory/allocation_guard.h -libcxx/include/__memory/allocator_arg_t.h -libcxx/include/__memory/allocator_destructor.h -libcxx/include/__memory/allocator.h -libcxx/include/__memory/allocator_traits.h -libcxx/include/__memory/assume_aligned.h -libcxx/include/__memory/auto_ptr.h -libcxx/include/__memory/builtin_new_allocator.h -libcxx/include/__memory/compressed_pair.h -libcxx/include/__memory/concepts.h -libcxx/include/__memory/construct_at.h -libcxx/include/__memory/destruct_n.h -libcxx/include/__memory/pointer_traits.h -libcxx/include/__memory/ranges_construct_at.h -libcxx/include/__memory/ranges_uninitialized_algorithms.h -libcxx/include/__memory/raw_storage_iterator.h -libcxx/include/__memory/shared_ptr.h -libcxx/include/__memory/temporary_buffer.h -libcxx/include/__memory/temp_value.h -libcxx/include/__memory/uninitialized_algorithms.h -libcxx/include/__memory/unique_ptr.h -libcxx/include/__memory/uses_allocator.h -libcxx/include/mutex -libcxx/include/new -libcxx/include/__node_handle -libcxx/include/numbers -libcxx/include/numeric -libcxx/include/__numeric/accumulate.h -libcxx/include/__numeric/adjacent_difference.h -libcxx/include/__numeric/exclusive_scan.h -libcxx/include/__numeric/gcd_lcm.h -libcxx/include/__numeric/inclusive_scan.h -libcxx/include/__numeric/inner_product.h -libcxx/include/__numeric/iota.h -libcxx/include/__numeric/midpoint.h -libcxx/include/__numeric/partial_sum.h -libcxx/include/__numeric/reduce.h -libcxx/include/__numeric/transform_exclusive_scan.h -libcxx/include/__numeric/transform_inclusive_scan.h -libcxx/include/__numeric/transform_reduce.h -libcxx/include/optional -libcxx/include/ostream -libcxx/include/queue -libcxx/include/__random/bernoulli_distribution.h -libcxx/include/__random/binomial_distribution.h -libcxx/include/__random/cauchy_distribution.h -libcxx/include/__random/chi_squared_distribution.h -libcxx/include/__random/clamp_to_integral.h -libcxx/include/__random/discard_block_engine.h -libcxx/include/__random/discrete_distribution.h -libcxx/include/__random/exponential_distribution.h -libcxx/include/__random/extreme_value_distribution.h -libcxx/include/__random/fisher_f_distribution.h -libcxx/include/__random/gamma_distribution.h -libcxx/include/__random/generate_canonical.h -libcxx/include/__random/geometric_distribution.h -libcxx/include/__random/independent_bits_engine.h -libcxx/include/__random/is_seed_sequence.h -libcxx/include/__random/is_valid.h -libcxx/include/__random/linear_congruential_engine.h -libcxx/include/__random/log2.h -libcxx/include/__random/lognormal_distribution.h -libcxx/include/__random/mersenne_twister_engine.h -libcxx/include/__random/negative_binomial_distribution.h -libcxx/include/__random/normal_distribution.h -libcxx/include/__random/piecewise_constant_distribution.h -libcxx/include/__random/piecewise_linear_distribution.h -libcxx/include/__random/poisson_distribution.h -libcxx/include/__random/random_device.h -libcxx/include/__random/ranlux.h -libcxx/include/__random/seed_seq.h -libcxx/include/__random/shuffle_order_engine.h -libcxx/include/__random/student_t_distribution.h -libcxx/include/__random/subtract_with_carry_engine.h -libcxx/include/__random/uniform_int_distribution.h -libcxx/include/__random/uniform_random_bit_generator.h -libcxx/include/__random/uniform_real_distribution.h -libcxx/include/__random/weibull_distribution.h -libcxx/include/ranges -libcxx/include/__ranges/access.h -libcxx/include/__ranges/all.h -libcxx/include/__ranges/common_view.h -libcxx/include/__ranges/concepts.h -libcxx/include/__ranges/copyable_box.h -libcxx/include/__ranges/counted.h -libcxx/include/__ranges/data.h -libcxx/include/__ranges/drop_view.h -libcxx/include/__ranges/empty.h -libcxx/include/__ranges/empty_view.h -libcxx/include/__ranges/enable_view.h -libcxx/include/__ranges/filter_view.h -libcxx/include/__ranges/iota_view.h -libcxx/include/__ranges/istream_view.h -libcxx/include/__ranges/join_view.h -libcxx/include/__ranges/lazy_split_view.h -libcxx/include/__ranges/non_propagating_cache.h -libcxx/include/__ranges/owning_view.h -libcxx/include/__ranges/range_adaptor.h -libcxx/include/__ranges/rbegin.h -libcxx/include/__ranges/ref_view.h -libcxx/include/__ranges/rend.h -libcxx/include/__ranges/reverse_view.h -libcxx/include/__ranges/single_view.h -libcxx/include/__ranges/size.h -libcxx/include/__ranges/subrange.h -libcxx/include/__ranges/take_view.h -libcxx/include/__ranges/transform_view.h -libcxx/include/__ranges/view_interface.h -libcxx/include/__ranges/views.h -libcxx/include/__ranges/zip_view.h -libcxx/include/ratio -libcxx/include/regex libcxx/include/scoped_allocator -libcxx/include/semaphore -libcxx/include/set -libcxx/include/setjmp.h -libcxx/include/shared_mutex -libcxx/include/span -libcxx/include/__split_buffer -libcxx/include/sstream -libcxx/include/stack -libcxx/include/stdatomic.h -libcxx/include/stdbool.h -libcxx/include/stddef.h -libcxx/include/stdexcept -libcxx/include/stdint.h -libcxx/include/stdio.h -libcxx/include/stdlib.h -libcxx/include/__std_stream -libcxx/include/streambuf -libcxx/include/string +libcxx/include/math.h libcxx/include/__string/char_traits.h -libcxx/include/__string/extern_template_lists.h -libcxx/include/string.h -libcxx/include/string_view -libcxx/include/strstream -libcxx/include/__support/android/locale_bionic.h -libcxx/include/__support/fuchsia/xlocale.h -libcxx/include/__support/ibm/gettod_zos.h -libcxx/include/__support/ibm/locale_mgmt_zos.h -libcxx/include/__support/ibm/nanosleep.h -libcxx/include/__support/ibm/xlocale.h -libcxx/include/__support/newlib/xlocale.h -libcxx/include/__support/solaris/xlocale.h -libcxx/include/__support/win32/locale_win32.h -libcxx/include/__support/xlocale/__nop_locale_mgmt.h -libcxx/include/__system_error/error_category.h -libcxx/include/__system_error/error_code.h -libcxx/include/__system_error/error_condition.h -libcxx/include/__system_error/system_error.h -libcxx/include/thread -libcxx/include/__threading_support -libcxx/include/__thread/poll_with_backoff.h -libcxx/include/__thread/timed_backoff_policy.h -libcxx/include/__tree -libcxx/include/tuple -libcxx/include/__tuple_dir/apply_cv.h -libcxx/include/__tuple_dir/make_tuple_types.h -libcxx/include/__tuple_dir/sfinae_helpers.h -libcxx/include/__tuple_dir/tuple_element.h -libcxx/include/__tuple_dir/tuple_indices.h -libcxx/include/__tuple_dir/tuple_like_ext.h -libcxx/include/__tuple_dir/tuple_size.h -libcxx/include/__tuple_dir/tuple_types.h -libcxx/include/typeindex -libcxx/include/typeinfo -libcxx/include/__type_traits/add_const.h -libcxx/include/__type_traits/add_cv.h -libcxx/include/__type_traits/add_lvalue_reference.h -libcxx/include/__type_traits/add_pointer.h -libcxx/include/__type_traits/add_volatile.h -libcxx/include/__type_traits/aligned_storage.h -libcxx/include/__type_traits/aligned_union.h -libcxx/include/__type_traits/alignment_of.h -libcxx/include/__type_traits/apply_cv.h -libcxx/include/__type_traits/can_extract_key.h -libcxx/include/__type_traits/common_reference.h -libcxx/include/__type_traits/common_type.h -libcxx/include/__type_traits/copy_cv.h -libcxx/include/__type_traits/copy_cvref.h -libcxx/include/__type_traits/decay.h -libcxx/include/__type_traits/enable_if.h -libcxx/include/__type_traits/extent.h -libcxx/include/__type_traits/has_unique_object_representation.h -libcxx/include/__type_traits/has_virtual_destructor.h -libcxx/include/__type_traits/integral_constant.h -libcxx/include/__type_traits/is_abstract.h -libcxx/include/__type_traits/is_aggregate.h -libcxx/include/__type_traits/is_allocator.h -libcxx/include/__type_traits/is_always_bitcastable.h -libcxx/include/__type_traits/is_arithmetic.h -libcxx/include/__type_traits/is_array.h -libcxx/include/__type_traits/is_assignable.h -libcxx/include/__type_traits/is_base_of.h -libcxx/include/__type_traits/is_bounded_array.h -libcxx/include/__type_traits/is_callable.h -libcxx/include/__type_traits/is_class.h -libcxx/include/__type_traits/is_compound.h -libcxx/include/__type_traits/is_constant_evaluated.h -libcxx/include/__type_traits/is_const.h -libcxx/include/__type_traits/is_constructible.h -libcxx/include/__type_traits/is_convertible.h -libcxx/include/__type_traits/is_copy_assignable.h -libcxx/include/__type_traits/is_copy_constructible.h -libcxx/include/__type_traits/is_core_convertible.h -libcxx/include/__type_traits/is_default_constructible.h -libcxx/include/__type_traits/is_destructible.h -libcxx/include/__type_traits/is_empty.h -libcxx/include/__type_traits/is_enum.h -libcxx/include/__type_traits/is_final.h -libcxx/include/__type_traits/is_floating_point.h -libcxx/include/__type_traits/is_fundamental.h -libcxx/include/__type_traits/is_implicitly_default_constructible.h -libcxx/include/__type_traits/is_integral.h -libcxx/include/__type_traits/is_literal_type.h -libcxx/include/__type_traits/is_member_function_pointer.h -libcxx/include/__type_traits/is_member_object_pointer.h -libcxx/include/__type_traits/is_member_pointer.h -libcxx/include/__type_traits/is_move_assignable.h -libcxx/include/__type_traits/is_move_constructible.h -libcxx/include/__type_traits/is_nothrow_assignable.h -libcxx/include/__type_traits/is_nothrow_constructible.h -libcxx/include/__type_traits/is_nothrow_convertible.h -libcxx/include/__type_traits/is_nothrow_copy_assignable.h -libcxx/include/__type_traits/is_nothrow_copy_constructible.h -libcxx/include/__type_traits/is_nothrow_default_constructible.h -libcxx/include/__type_traits/is_nothrow_destructible.h -libcxx/include/__type_traits/is_nothrow_move_assignable.h -libcxx/include/__type_traits/is_nothrow_move_constructible.h -libcxx/include/__type_traits/is_null_pointer.h -libcxx/include/__type_traits/is_object.h -libcxx/include/__type_traits/is_pod.h -libcxx/include/__type_traits/is_pointer.h -libcxx/include/__type_traits/is_polymorphic.h -libcxx/include/__type_traits/is_primary_template.h -libcxx/include/__type_traits/is_reference.h -libcxx/include/__type_traits/is_reference_wrapper.h -libcxx/include/__type_traits/is_same.h -libcxx/include/__type_traits/is_scalar.h -libcxx/include/__type_traits/is_scoped_enum.h -libcxx/include/__type_traits/is_signed.h -libcxx/include/__type_traits/is_signed_integer.h -libcxx/include/__type_traits/is_standard_layout.h -libcxx/include/__type_traits/is_swappable.h -libcxx/include/__type_traits/is_trivial.h -libcxx/include/__type_traits/is_trivially_assignable.h -libcxx/include/__type_traits/is_trivially_constructible.h -libcxx/include/__type_traits/is_trivially_copyable.h -libcxx/include/__type_traits/is_trivially_copy_assignable.h -libcxx/include/__type_traits/is_trivially_copy_constructible.h -libcxx/include/__type_traits/is_trivially_default_constructible.h -libcxx/include/__type_traits/is_trivially_destructible.h -libcxx/include/__type_traits/is_unbounded_array.h -libcxx/include/__type_traits/is_union.h -libcxx/include/__type_traits/is_unsigned.h -libcxx/include/__type_traits/is_unsigned_integer.h -libcxx/include/__type_traits/is_valid_expansion.h -libcxx/include/__type_traits/is_void.h -libcxx/include/__type_traits/is_volatile.h -libcxx/include/__type_traits/lazy.h -libcxx/include/__type_traits/make_32_64_or_128_bit.h -libcxx/include/__type_traits/make_const_lvalue_ref.h -libcxx/include/__type_traits/make_signed.h -libcxx/include/__type_traits/make_unsigned.h -libcxx/include/__type_traits/maybe_const.h -libcxx/include/__type_traits/nat.h -libcxx/include/__type_traits/negation.h -libcxx/include/__type_traits/noexcept_move_assign_container.h -libcxx/include/__type_traits/promote.h -libcxx/include/__type_traits/rank.h -libcxx/include/__type_traits/remove_all_extents.h -libcxx/include/__type_traits/remove_const.h -libcxx/include/__type_traits/remove_cv.h -libcxx/include/__type_traits/remove_cvref.h -libcxx/include/__type_traits/remove_extent.h -libcxx/include/__type_traits/remove_pointer.h -libcxx/include/__type_traits/remove_reference.h -libcxx/include/__type_traits/remove_volatile.h -libcxx/include/__type_traits/result_of.h -libcxx/include/__type_traits/strip_signature.h -libcxx/include/__type_traits/type_identity.h -libcxx/include/__type_traits/type_list.h -libcxx/include/__type_traits/underlying_type.h -libcxx/include/__type_traits/void_t.h -libcxx/include/uchar.h -libcxx/include/unordered_map -libcxx/include/unordered_set -libcxx/include/__utility/as_const.h -libcxx/include/__utility/cmp.h -libcxx/include/__utility/convert_to_integral.h -libcxx/include/__utility/exchange.h -libcxx/include/__utility/in_place.h -libcxx/include/__utility/integer_sequence.h -libcxx/include/__utility/pair.h -libcxx/include/__utility/piecewise_construct.h -libcxx/include/__utility/priority_tag.h -libcxx/include/__utility/rel_ops.h -libcxx/include/__utility/to_underlying.h -libcxx/include/__utility/unreachable.h -libcxx/include/valarray -libcxx/include/variant -libcxx/include/__variant/monostate.h -libcxx/include/vector -libcxx/include/__verbose_abort -libcxx/include/wchar.h -libcxx/include/wctype.h -libcxx/src/any.cpp -libcxx/src/atomic.cpp -libcxx/src/barrier.cpp -libcxx/src/bind.cpp -libcxx/src/charconv.cpp -libcxx/src/chrono.cpp -libcxx/src/condition_variable.cpp -libcxx/src/condition_variable_destructor.cpp -libcxx/src/debug.cpp -libcxx/src/exception.cpp -libcxx/src/experimental/memory_resource.cpp -libcxx/src/filesystem/directory_iterator.cpp -libcxx/src/filesystem/filesystem_common.h -libcxx/src/filesystem/int128_builtins.cpp -libcxx/src/filesystem/operations.cpp -libcxx/src/filesystem/posix_compat.h -libcxx/src/functional.cpp -libcxx/src/future.cpp -libcxx/src/hash.cpp -libcxx/src/include/apple_availability.h -libcxx/src/include/atomic_support.h -libcxx/src/include/config_elast.h -libcxx/src/include/refstring.h -libcxx/src/include/ryu/ryu.h -libcxx/src/include/sso_allocator.h -libcxx/src/ios.cpp -libcxx/src/iostream.cpp -libcxx/src/legacy_debug_handler.cpp -libcxx/src/locale.cpp -libcxx/src/memory.cpp -libcxx/src/mutex.cpp -libcxx/src/mutex_destructor.cpp -libcxx/src/new.cpp -libcxx/src/optional.cpp -libcxx/src/random.cpp -libcxx/src/random_shuffle.cpp -libcxx/src/regex.cpp -libcxx/src/shared_mutex.cpp -libcxx/src/stdexcept.cpp -libcxx/src/string.cpp -libcxx/src/strstream.cpp -libcxx/src/support/ibm/mbsnrtowcs.cpp -libcxx/src/support/ibm/wcsnrtombs.cpp -libcxx/src/support/ibm/xlocale_zos.cpp -libcxx/src/support/runtime/exception_fallback.ipp -libcxx/src/support/runtime/exception_glibcxx.ipp -libcxx/src/support/runtime/exception_libcxxabi.ipp -libcxx/src/support/runtime/exception_libcxxrt.ipp -libcxx/src/support/runtime/exception_msvc.ipp -libcxx/src/support/runtime/exception_pointer_cxxabi.ipp -libcxx/src/support/runtime/exception_pointer_glibcxx.ipp -libcxx/src/support/runtime/exception_pointer_msvc.ipp -libcxx/src/support/runtime/exception_pointer_unimplemented.ipp -libcxx/src/support/runtime/new_handler_fallback.ipp -libcxx/src/support/runtime/stdexcept_default.ipp -libcxx/src/support/runtime/stdexcept_vcruntime.ipp -libcxx/src/support/solaris/mbsnrtowcs.inc -libcxx/src/support/solaris/wcsnrtombs.inc -libcxx/src/support/solaris/xlocale.cpp -libcxx/src/support/win32/locale_win32.cpp -libcxx/src/support/win32/support.cpp -libcxx/src/support/win32/thread_win32.cpp -libcxx/src/system_error.cpp -libcxx/src/thread.cpp -libcxx/src/typeinfo.cpp -libcxx/src/valarray.cpp -libcxx/src/variant.cpp -libcxx/src/vector.cpp -libcxx/src/verbose_abort.cpp