| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| 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; 44 static constexpr bool has_quiet_NaN = false; 45 static constexpr bool has_signaling_NaN = false; 47 static constexpr bool has_denorm_loss = false; // deprecated in C++23 53 static constexpr bool is_iec559 = false; 54 static constexpr bool is_bounded = false; [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 24 template <bool B> // C++14 25 using bool_constant = integral_constant<bool, B>; // C++14 30 template <bool, class T = void> struct enable_if; 31 template <bool, class T, class F> struct conditional; 150 template <typename From, typename To> inline constexpr bool is_nothrow_convertible_v; // C++20 207 inline constexpr bool is_bounded_array_v 209 inline constexpr bool is_unbounded_array_v 227 template <bool b, class T=void> [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, 90 bool compare_exchange_weak(T& expc, T desr, memory_order s, memory_order f) noexcept; 91 bool compare_exchange_strong(T& expc, T desr, 93 bool compare_exchange_strong(T& expc, T desr, 95 bool compare_exchange_weak(T& expc, T desr, 97 bool compare_exchange_weak(T& expc, T desr, 99 bool compare_exchange_strong(T& expc, T desr, [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 50 inline constexpr bool is_error_condition_enum_v = is_error_condition_enum<_Tp>::value; // C++17 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; [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; 65 …_LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__… 66 …_LIBCPP_HIDE_FROM_ABI bool operator!=(const type_index& __y) const _NOEXCEPT { return *__t_ != *__… 67 …_LIBCPP_HIDE_FROM_ABI bool operator<(const type_index& __y) const _NOEXCEPT { return __t_->before(… 68 …_LIBCPP_HIDE_FROM_ABI bool operator<=(const type_index& __y) const _NOEXCEPT { return !__y.__t_->b… [all …]
|
| H A D | mutex | 29 bool try_lock(); 46 bool try_lock() noexcept; 63 bool try_lock(); 65 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 67 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time); 81 bool try_lock() noexcept; 83 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 85 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time); 149 bool try_lock(); 152 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); [all …]
|
| /freebsd/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; 44 static constexpr bool has_quiet_NaN = false; 45 static constexpr bool has_signaling_NaN = false; 47 static constexpr bool has_denorm_loss = false; // deprecated in C++23 53 static constexpr bool is_iec559 = false; 54 static constexpr bool is_bounded = false; [all …]
|
| H A D | filesystem | 81 friend bool operator==(const path& lhs, const path& rhs) noexcept; 82 … friend bool operator!=(const path& lhs, const path& rhs) noexcept; // removed in C++20 83 … friend bool operator< (const path& lhs, const path& rhs) noexcept; // removed in C++20 84 … friend bool operator<=(const path& lhs, const path& rhs) noexcept; // removed in C++20 85 … friend bool operator> (const path& lhs, const path& rhs) noexcept; // removed in C++20 86 … friend bool operator>=(const path& lhs, const path& rhs) noexcept; // removed in C++20 129 [[nodiscard]] bool empty() const noexcept; 130 bool has_root_name() const; 131 bool has_root_directory() const; 132 bool has_root_path() const; [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; } 73 friend constexpr bool operator==(partial_ordering v, unspecified) noexcept; 74 friend constexpr bool operator==(partial_ordering v, partial_ordering w) noexcept = default; 75 friend constexpr bool operator< (partial_ordering v, unspecified) noexcept; 76 friend constexpr bool operator> (partial_ordering v, unspecified) noexcept; [all …]
|
| H A D | type_traits | 21 typedef integral_constant<bool, true> true_type; // since C++11 22 typedef integral_constant<bool, false> false_type; // since C++11 24 template <bool B> 25 using bool_constant = integral_constant<bool, B>; // since C++17 28 template <bool, class T = void> struct enable_if; 29 template <bool, class T, class F> struct conditional; 228 inline constexpr bool is_bounded_array_v 230 inline constexpr bool is_unbounded_array_v 252 template <bool b, class T=void> 254 template <bool b, class T, class F> [all …]
|
| H A D | __bit_reference | 57 static const bool value = false; 106 __fill_masked_range(_StoragePointer __word, unsigned __clz, unsigned __ctz, bool __fill_val) { 119 template <class _Cp, bool = __has_storage_type<_Cp>::value> 137 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 operator bool() const _NOEXCEPT { 138 return static_cast<bool>(*__seg_ & __mask_); 140 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 bool operator~() const _NOEXCEPT { 141 return !static_cast<bool>(*this); 144 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 __bit_reference& operator=(bool __x) _NOEXCEPT… 153 _LIBCPP_HIDE_FROM_ABI constexpr const __bit_reference& operator=(bool __x) const noexcept { 163 return operator=(static_cast<bool>(__x)); [all …]
|
| H A D | optional | 37 constexpr bool operator==(const optional<T>&, const optional<U>&); 39 constexpr bool operator!=(const optional<T>&, const optional<U>&); 41 constexpr bool operator<(const optional<T>&, const optional<U>&); 43 constexpr bool operator>(const optional<T>&, const optional<U>&); 45 constexpr bool operator<=(const optional<T>&, const optional<U>&); 47 constexpr bool operator>=(const optional<T>&, const optional<U>&); 53 template<class T> constexpr bool operator==(const optional<T>&, nullopt_t) noexcept; 54 …template<class T> constexpr bool operator==(nullopt_t, const optional<T>&) noexcept; // until C++17 55 …template<class T> constexpr bool operator!=(const optional<T>&, nullopt_t) noexcept; // until C++17 56 …template<class T> constexpr bool operator!=(nullopt_t, const optional<T>&) noexcept; // until C++17 [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, 90 bool compare_exchange_weak(T& expc, T desr, memory_order s, memory_order f) noexcept; 91 bool compare_exchange_strong(T& expc, T desr, 93 bool compare_exchange_strong(T& expc, T desr, 95 bool compare_exchange_weak(T& expc, T desr, 97 bool compare_exchange_weak(T& expc, T desr, 99 bool compare_exchange_strong(T& expc, T desr, [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 50 inline constexpr bool is_error_condition_enum_v = is_error_condition_enum<_Tp>::value; // C++17 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; [all …]
|
| H A D | shared_mutex | 32 bool try_lock(); 37 bool try_lock_shared(); 55 bool try_lock(); 57 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 59 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time); 64 bool try_lock_shared(); 66 bool 69 bool 101 bool try_lock(); 103 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); [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; 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_ != *__… 75 …_LIBCPP_HIDE_FROM_ABI bool operator<(const type_index& __y) const _NOEXCEPT { return __t_->before(… 76 …_LIBCPP_HIDE_FROM_ABI bool operator<=(const type_index& __y) const _NOEXCEPT { return !__y.__t_->b… [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_flags.inc | 18 // Supported types: bool, const char *, int, uptr. 23 bool, symbolize, true, 31 bool, allow_addr2line, false, 37 COMMON_FLAG(bool, fast_unwind_on_check, false, 40 COMMON_FLAG(bool, fast_unwind_on_fatal, false, 47 COMMON_FLAG(bool, fast_unwind_on_malloc, 51 COMMON_FLAG(bool, handle_ioctl, false, "Intercept and handle ioctl requests.") 59 bool, log_exe_name, false, 65 bool, log_to_syslog, (bool)SANITIZER_ANDROI [all...] |
| /freebsd/contrib/llvm-project/clang/include/clang/CIR/Interfaces/ |
| H A D | CIROpInterfaces.td | 38 "bool", "getNothrow", (ins)>, 49 "bool", "hasExternalLinkage", (ins), [{}], 55 "bool", "hasAvailableExternallyLinkage", (ins), [{}], 61 "bool", "hasLinkOnceLinkage", (ins), [{}], 67 "bool", "hasLinkOnceAnyLinkage", (ins), [{}], 73 "bool", "hasLinkOnceODRLinkage", (ins), [{}], 79 "bool", "hasWeakLinkage", (ins), [{}], 85 "bool", "hasWeakAnyLinkage", (ins), [{}], 91 "bool", "hasWeakODRLinkage", (ins), [{}], 97 "bool", "hasInternalLinkage", (ins), [{}], [all …]
|
| /freebsd/contrib/jemalloc/include/jemalloc/internal/ |
| H A D | jemalloc_preamble.h.in | 65 static const bool config_debug = 72 static const bool have_dss = 79 static const bool have_madvise_huge = 86 static const bool config_fill = 93 static const bool config_lazy_lock = true; 95 static const bool config_prof = 102 static const bool config_prof_libgcc = 109 static const bool config_prof_libunwind = 116 static const bool maps_coalesce = 123 static const bool config_stats = [all …]
|
| /freebsd/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/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, 28 TSAN_FLAG(bool, report_thread_leaks, true, "Report thread leaks at exit?") 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, 42 TSAN_FLAG(bool, force_background_thread, false, [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/experimental/ |
| H A D | propagate_const | 26 template <class T> constexpr bool operator==(const propagate_const<T>& pt, nullptr_t); 27 template <class T> constexpr bool operator==(nullptr_t, const propagate_const<T>& pu); 28 template <class T> constexpr bool operator!=(const propagate_const<T>& pt, nullptr_t); 29 template <class T> constexpr bool operator!=(nullptr_t, const propagate_const<T>& pu); 30 …template <class T, class U> constexpr bool operator==(const propagate_const<T>& pt, const propagat… 31 …template <class T, class U> constexpr bool operator!=(const propagate_const<T>& pt, const propagat… 32 …template <class T, class U> constexpr bool operator<(const propagate_const<T>& pt, const propagate… 33 …template <class T, class U> constexpr bool operator>(const propagate_const<T>& pt, const propagate… 34 …template <class T, class U> constexpr bool operator<=(const propagate_const<T>& pt, const propagat… 35 …template <class T, class U> constexpr bool operator>=(const propagate_const<T>& pt, const propagat… [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | FPOptions.def | 17 FP_OPTION(RoundingMath, bool, 1, FPContractMode) 20 FP_OPTION(AllowFEnvAccess, bool, 1, SpecifiedExceptionMode) 21 FP_OPTION(AllowFPReassociate, bool, 1, AllowFEnvAccess) 22 FP_OPTION(NoHonorNaNs, bool, 1, AllowFPReassociate) 23 FP_OPTION(NoHonorInfs, bool, 1, NoHonorNaNs) 24 FP_OPTION(NoSignedZero, bool, 1, NoHonorInfs) 25 FP_OPTION(AllowReciprocal, bool, 1, NoSignedZero) 26 FP_OPTION(AllowApproxFunc, bool, 1, AllowReciprocal) 30 FP_OPTION(MathErrno, bool, 1, BFloat16ExcessPrecision)
|
| /freebsd/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, use_detached, false, [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_flags.inc | 37 bool, debug, false, 44 ASAN_FLAG(bool, check_initialization_order, false, 47 bool, replace_str, true, 50 ASAN_FLAG(bool, replace_intrin, true, 52 ASAN_FLAG(bool, detect_stack_use_after_return, 60 ASAN_FLAG(bool, uar_noreserve, false, 74 ASAN_FLAG(bool, allow_user_poisoning, true, 90 ASAN_FLAG(bool, check_malloc_usable_size, true, 93 ASAN_FLAG(bool, unmap_shadow_on_exit, false, 95 ASAN_FLAG(bool, protect_shadow_gap, true, "If set, mprotect the shadow gap") [all …]
|