| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | limits | 23 static constexpr bool is_specialized = false; 31 static constexpr bool is_signed = false; 32 static constexpr bool is_integer = false; 33 static constexpr bool is_exact = false; 43 static constexpr bool has_infinity = false; 53 static constexpr bool is_iec559 = false; 54 static constexpr bool is_bounded = false; 55 static constexpr bool is_modulo = false; 57 static constexpr bool traps = false; 78 template<> class numeric_limits<cv bool>; [all …]
|
| H A D | filesystem | 136 bool has_stem() const; 138 bool is_absolute() const; 139 bool is_relative() const; 193 bool exists() const; 199 bool is_directory() const; 201 bool is_fifo() const; 203 bool is_other() const; 207 bool is_socket() const; 209 bool is_symlink() const; 423 bool exists(const path& p); [all …]
|
| H A D | compare | 23 constexpr bool is_eq (partial_ordering cmp) noexcept { return cmp == 0; } 24 constexpr bool is_neq (partial_ordering cmp) noexcept { return cmp != 0; } 25 constexpr bool is_lt (partial_ordering cmp) noexcept { return cmp < 0; } 26 constexpr bool is_lteq(partial_ordering cmp) noexcept { return cmp <= 0; } 27 constexpr bool is_gt (partial_ordering cmp) noexcept { return cmp > 0; } 28 constexpr bool is_gteq(partial_ordering cmp) noexcept { return cmp >= 0; } 99 friend constexpr bool operator==(weak_ordering v, unspecified) noexcept; 101 friend constexpr bool operator< (weak_ordering v, unspecified) noexcept; 102 friend constexpr bool operator> (weak_ordering v, unspecified) noexcept; 103 friend constexpr bool operator<=(weak_ordering v, unspecified) noexcept; [all …]
|
| H A D | type_traits | 21 typedef integral_constant<bool, true> true_type; // C++11 22 typedef integral_constant<bool, false> false_type; // C++11 30 template <bool, class T = void> struct enable_if; 31 template <bool, class T, class F> struct conditional; 207 inline constexpr bool is_bounded_array_v 209 inline constexpr bool is_unbounded_array_v 227 template <bool b, class T=void> 229 template <bool b, class T, class F> 244 template <class T> inline constexpr bool is_void_v 264 template <class T> inline constexpr bool is_enum_v [all …]
|
| H A D | optional | 987 bool > 999 bool > 1011 bool > 1023 bool > 1035 bool > 1047 bool > 1144 bool > 1152 bool > 1160 bool > 1168 bool > [all …]
|
| H A D | system_error | 30 virtual bool equivalent(int code, const error_condition& condition) const noexcept; 31 virtual bool equivalent(const error_code& code, int condition) const noexcept; 34 bool operator==(const error_category& rhs) const noexcept; 35 bool operator!=(const error_category& rhs) const noexcept; // removed in C++20 36 bool operator<(const error_category& rhs) const noexcept; // removed in C++20 53 inline constexpr bool is_error_code_enum_v = is_error_code_enum<_Tp>::value; // C++17 75 explicit operator bool() const noexcept; 102 explicit operator bool() const noexcept; 127 bool operator==(const error_code& lhs, const error_code& rhs) noexcept; 128 bool operator==(const error_code& lhs, const error_condition& rhs) noexcept; [all …]
|
| H A D | atomic | 66 static constexpr bool is_always_lock_free; 67 bool is_lock_free() const volatile noexcept; 68 bool is_lock_free() const noexcept; 88 bool compare_exchange_weak(T& expc, T desr, 95 bool compare_exchange_weak(T& expc, T desr, 97 bool compare_exchange_weak(T& expc, T desr, 118 static constexpr bool is_always_lock_free; 120 bool is_lock_free() const noexcept; 201 static constexpr bool is_always_lock_free; 203 bool is_lock_free() const noexcept; [all …]
|
| H A D | shared_mutex | 32 bool try_lock(); 37 bool try_lock_shared(); 55 bool try_lock(); 64 bool try_lock_shared(); 66 bool 69 bool 101 bool try_lock(); 113 bool owns_lock() const noexcept; 174 bool try_lock(); 179 bool try_lock_shared(); [all …]
|
| H A D | typeindex | 25 bool operator==(const type_index& rhs) const noexcept; 26 bool operator!=(const type_index& rhs) const noexcept; // removed in C++20 27 bool operator< (const type_index& rhs) const noexcept; 28 bool operator<=(const type_index& rhs) const noexcept; 29 bool operator> (const type_index& rhs) const noexcept; 30 bool operator>=(const type_index& rhs) const noexcept; 69 …_LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__… 71 …_LIBCPP_HIDE_FROM_ABI bool operator!=(const type_index& __y) const _NOEXCEPT { return *__t_ != *__… 73 …_LIBCPP_HIDE_FROM_ABI bool operator<(const type_index& __y) const _NOEXCEPT { return __t_->before(… 74 …_LIBCPP_HIDE_FROM_ABI bool operator<=(const type_index& __y) const _NOEXCEPT { return !__y.__t_->b… [all …]
|
| H A D | execution | 31 inline constexpr bool is_execution_policy_v; 98 inline constexpr bool is_execution_policy_v<execution::sequenced_policy> = true; 101 inline constexpr bool is_execution_policy_v<execution::parallel_policy> = true; 104 inline constexpr bool is_execution_policy_v<execution::parallel_unsequenced_policy> = true; 107 inline constexpr bool is_execution_policy_v<execution::__unsequenced_policy> = true; 110 inline constexpr bool __is_parallel_execution_policy_impl<execution::parallel_policy> = true; 113 inline constexpr bool __is_parallel_execution_policy_impl<execution::parallel_unsequenced_policy> =… 116 inline constexpr bool __is_unsequenced_execution_policy_impl<execution::__unsequenced_policy> = tru… 119 inline constexpr bool __is_unsequenced_execution_policy_impl<execution::parallel_unsequenced_policy… 123 inline constexpr bool is_execution_policy_v<execution::unsequenced_policy> = true; [all …]
|
| H A D | mutex | 29 bool try_lock(); 46 bool try_lock() noexcept; 63 bool try_lock(); 81 bool try_lock() noexcept; 149 bool try_lock(); 161 bool owns_lock() const noexcept; 232 bool try_lock() _NOEXCEPT; 243 bool __locked_; 254 bool try_lock() _NOEXCEPT; 269 bool __no_timeout = _Clock::now() < __t; [all …]
|
| H A D | mdspan | 71 friend constexpr bool operator==(const extents&, 125 static constexpr bool is_unique() noexcept { return true; } 179 static constexpr bool is_unique() noexcept { return true; } 236 constexpr bool is_exhaustive() const noexcept; 328 [[nodiscard]] constexpr bool empty() const noexcept; 338 static constexpr bool is_always_unique() noexcept 340 static constexpr bool is_always_exhaustive() noexcept 342 static constexpr bool is_always_strided() noexcept 345 constexpr bool is_unique() const 347 constexpr bool is_exhaustive() const [all …]
|
| H A D | random | 55 bool 60 bool 119 bool 127 bool 177 bool 183 bool 232 bool 238 bool 284 bool 290 bool [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_flags.inc | 23 bool, symbolize, true, 31 bool, allow_addr2line, false, 59 bool, log_exe_name, false, 65 bool, log_to_syslog, (bool)SANITIZER_ANDROID || (bool)SANITIZER_APPLE, 71 COMMON_FLAG(bool, strip_env, true, 79 bool, leak_check_at_exit, true, 151 ((bool)SANITIZER_FUCHSIA || (bool)SANITIZER_WINDOWS) ? -1 : 5000, 160 bool, coverage, false, 217 bool, intercept_strcmp, true, 245 COMMON_FLAG(bool, decorate_proc_maps, (bool)SANITIZER_ANDROID, [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/msan/ |
| H A D | msan_flags.inc | 23 MSAN_FLAG(bool, poison_heap_with_zeroes, false, "") 24 MSAN_FLAG(bool, poison_stack_with_zeroes, false, "") 25 MSAN_FLAG(bool, poison_in_malloc, true, "") 26 MSAN_FLAG(bool, poison_in_free, true, "") 27 MSAN_FLAG(bool, poison_in_dtor, true, "") 28 MSAN_FLAG(bool, report_umrs, true, "") 29 MSAN_FLAG(bool, wrap_signals, true, "") 30 MSAN_FLAG(bool, print_stats, false, "") 31 MSAN_FLAG(bool, halt_on_error, !&__msan_keep_going, "") 32 MSAN_FLAG(bool, atexit, false, "")
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_flags.inc | 19 TSAN_FLAG(bool, enable_annotations, true, 23 TSAN_FLAG(bool, suppress_equal_stacks, true, 26 TSAN_FLAG(bool, report_bugs, true, 29 TSAN_FLAG(bool, report_destroy_locked, true, 31 TSAN_FLAG(bool, report_mutex_bugs, true, 33 TSAN_FLAG(bool, report_signal_unsafe, true, 36 TSAN_FLAG(bool, report_atomic_races, true, 39 bool, force_seq_cst_atomics, false, 57 TSAN_FLAG(bool, stop_on_start, false, 59 TSAN_FLAG(bool, running_on_valgrind, false, [all …]
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/experimental/ |
| H A D | propagate_const | 221 bool> = true> 227 bool> = false> 298 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool 304 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool 310 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR bool 428 _LIBCPP_HIDE_FROM_ABI bool 439 _LIBCPP_HIDE_FROM_ABI bool 450 _LIBCPP_HIDE_FROM_ABI bool 461 _LIBCPP_HIDE_FROM_ABI bool 472 _LIBCPP_HIDE_FROM_ABI bool [all …]
|
| H A D | memory | 38 constexpr explicit operator bool() const noexcept; 124 _LIBCPP_HIDE_FROM_ABI bool operator==(observer_ptr<_W1> __a, observer_ptr<_W2> __b) { 129 _LIBCPP_HIDE_FROM_ABI bool operator!=(observer_ptr<_W1> __a, observer_ptr<_W2> __b) { 134 _LIBCPP_HIDE_FROM_ABI bool operator==(observer_ptr<_Wp> __p, nullptr_t) { 139 _LIBCPP_HIDE_FROM_ABI bool operator==(nullptr_t, observer_ptr<_Wp> __p) { 144 _LIBCPP_HIDE_FROM_ABI bool operator!=(observer_ptr<_Wp> __p, nullptr_t) { 145 return (bool)__p; 149 _LIBCPP_HIDE_FROM_ABI bool operator!=(nullptr_t, observer_ptr<_Wp> __p) { 150 return (bool)__p; 154 _LIBCPP_HIDE_FROM_ABI bool operator<(observer_ptr<_W1> __a, observer_ptr<_W2> __b) { [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | FPOptions.def | 17 OPTION(RoundingMath, bool, 1, FPContractMode) 20 OPTION(AllowFEnvAccess, bool, 1, SpecifiedExceptionMode) 21 OPTION(AllowFPReassociate, bool, 1, AllowFEnvAccess) 22 OPTION(NoHonorNaNs, bool, 1, AllowFPReassociate) 23 OPTION(NoHonorInfs, bool, 1, NoHonorNaNs) 24 OPTION(NoSignedZero, bool, 1, NoHonorInfs) 25 OPTION(AllowReciprocal, bool, 1, NoSignedZero) 26 OPTION(AllowApproxFunc, bool, 1, AllowReciprocal) 30 OPTION(MathErrno, bool, 1, BFloat16ExcessPrecision)
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/lsan/ |
| H A D | lsan_flags.inc | 19 LSAN_FLAG(bool, report_objects, false, 28 LSAN_FLAG(bool, use_globals, true, 30 LSAN_FLAG(bool, use_stacks, true, "Root set: include thread stacks") 31 LSAN_FLAG(bool, use_registers, true, "Root set: include thread registers") 32 LSAN_FLAG(bool, use_tls, true, 34 LSAN_FLAG(bool, use_root_regions, true, 36 LSAN_FLAG(bool, use_ld_allocations, true, 41 LSAN_FLAG(bool, use_unaligned, false, "Consider unaligned pointers valid.") 42 LSAN_FLAG(bool, use_poisoned, false, 44 LSAN_FLAG(bool, log_pointers, false, "Debug logging") [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_flags.inc | 37 bool, debug, false, 47 bool, replace_str, true, 50 ASAN_FLAG(bool, replace_intrin, true, 60 ASAN_FLAG(bool, uar_noreserve, false, 96 ASAN_FLAG(bool, print_stats, false, 102 ASAN_FLAG(bool, atexit, false, 110 bool, poison_heap, true, 113 ASAN_FLAG(bool, poison_partial, true, 131 bool, strict_init_order, false, 135 bool, start_deactivated, false, [all …]
|
| /freebsd-14.2/tools/tools/sysdoc/ |
| H A D | tunables.mdoc | 3 bool 11 bool 19 bool 35 bool 62 bool 72 bool 85 bool 121 bool 136 bool 150 bool [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/memprof/ |
| H A D | memprof_flags.inc | 19 MEMPROF_FLAG(bool, unmap_shadow_on_exit, false, 21 MEMPROF_FLAG(bool, protect_shadow_gap, true, "If set, mprotect the shadow gap") 22 MEMPROF_FLAG(bool, print_legend, true, "Print the legend for the shadow bytes.") 23 MEMPROF_FLAG(bool, atexit, false, 27 bool, print_full_thread_history, true, 31 MEMPROF_FLAG(bool, halt_on_error, true, 34 MEMPROF_FLAG(bool, allocator_frees_and_returns_null_on_realloc_zero, true, 38 MEMPROF_FLAG(bool, print_text, false, 40 MEMPROF_FLAG(bool, print_terse, false,
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| H A D | hwasan_flags.inc | 19 HWASAN_FLAG(bool, verbose_threads, false, 21 HWASAN_FLAG(bool, tag_in_malloc, true, "") 22 HWASAN_FLAG(bool, tag_in_free, true, "") 23 HWASAN_FLAG(bool, print_stats, false, "") 24 HWASAN_FLAG(bool, halt_on_error, true, "") 25 HWASAN_FLAG(bool, atexit, false, "") 27 bool, print_live_threads_info, true, 36 HWASAN_FLAG(bool, random_tags, true, "") 43 HWASAN_FLAG(bool, free_checks_tail_magic, 1, 59 HWASAN_FLAG(bool, export_memory_stats, true, [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/ |
| H A D | AnalyzerOptions.def | 96 bool, ShouldIncludeLifetimeInCFG, "cfg-lifetime", 112 bool, ShouldIncludeScopesInCFG, "cfg-scopes", 157 bool, ShouldAvoidSuppressingNullArgumentPaths, 204 bool, ShouldSerializeStats, "serialize-stats", 215 ANALYZER_OPTION(bool, ShouldPrunePaths, "prune-paths", 225 bool, ShouldConditionalizeStaticInitializers, 245 bool, ShouldInlineLambdas, "inline-lambdas", 250 ANALYZER_OPTION(bool, ShouldWidenLoops, "widen-loops", 254 bool, ShouldUnrollLoops, "unroll-loops", 265 bool, ShouldAggressivelySimplifyBinaryOperation, [all …]
|