Home
last modified time | relevance | path

Searched refs:bool (Results 1 – 25 of 327) sorted by relevance

12345678910>>...14

/freebsd/contrib/llvm-project/libcxx/include/
H A Dlimits23 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 Dfilesystem81 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 Dcompare23 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 Dtype_traits21 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 Doptional37 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 Datomic66 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 Dsystem_error30 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 Dshared_mutex32 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 Dtypeindex25 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;
68 …_LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__…
70 …_LIBCPP_HIDE_FROM_ABI bool operator!=(const type_index& __y) const _NOEXCEPT { return *__t_ != *__…
72 …_LIBCPP_HIDE_FROM_ABI bool operator<(const type_index& __y) const _NOEXCEPT { return __t_->before(…
73 …_LIBCPP_HIDE_FROM_ABI bool operator<=(const type_index& __y) const _NOEXCEPT { return !__y.__t_->b…
[all …]
H A Dexecution31 inline constexpr bool is_execution_policy_v;
97 inline constexpr bool is_execution_policy_v<execution::sequenced_policy> = true;
100 inline constexpr bool is_execution_policy_v<execution::parallel_policy> = true;
103 inline constexpr bool is_execution_policy_v<execution::parallel_unsequenced_policy> = true;
106 inline constexpr bool is_execution_policy_v<execution::__unsequenced_policy> = true;
109 inline constexpr bool __is_parallel_execution_policy_impl<execution::parallel_policy> = true;
112 inline constexpr bool __is_parallel_execution_policy_impl<execution::parallel_unsequenced_policy> =…
115 inline constexpr bool __is_unsequenced_execution_policy_impl<execution::__unsequenced_policy> = tru…
118 inline constexpr bool __is_unsequenced_execution_policy_impl<execution::parallel_unsequenced_policy…
122 inline constexpr bool is_execution_policy_v<execution::unsequenced_policy> = true;
[all …]
H A Dmutex29 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 …]
H A Drandom55 bool
60 bool
119 bool
127 bool
177 bool
183 bool
232 bool
238 bool
284 bool
290 bool
[all …]
H A D__bit_reference43 static const bool value = false;
46 template <class _Cp, bool = __has_storage_type<_Cp>::value>
64 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 operator bool() const _NOEXCEPT {
65 return static_cast<bool>(*__seg_ & __mask_);
67 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 bool operator~() const _NOEXCEPT {
68 return !static_cast<bool>(*this);
71 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 __bit_reference& operator=(bool __x) _NOEXCEPT…
80 _LIBCPP_HIDE_FROM_ABI constexpr const __bit_reference& operator=(bool __x) const noexcept {
90 return operator=(static_cast<bool>(__x));
111 bool __t = __x;
[all …]
H A Dmdspan75 friend constexpr bool operator==(const extents&,
125 static constexpr bool is_always_unique() noexcept { return true; }
126 static constexpr bool is_always_exhaustive() noexcept { return true; }
127 static constexpr bool is_always_strided() noexcept { return true; }
129 static constexpr bool is_unique() noexcept { return true; }
130 static constexpr bool is_exhaustive() noexcept { return true; }
131 static constexpr bool is_strided() noexcept { return true; }
136 friend constexpr bool operator==(const mapping&, const mapping<OtherExtents>&) noexcept;
179 static constexpr bool is_always_unique() noexcept { return true; }
180 static constexpr bool is_always_exhaustive() noexcept { return true; }
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flags.inc18 // 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/compiler-rt/lib/msan/
H A Dmsan_flags.inc23 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 Dtsan_flags.inc19 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 Dpropagate_const26 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 …]
H A Dmemory38 constexpr explicit operator bool() const noexcept;
89 …_LIBCPP_HIDE_FROM_ABI constexpr explicit operator bool() const noexcept { return __ptr_ != nullptr…
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;
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_flags.inc37 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 …]
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_flags.inc19 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/tools/tools/sysdoc/
H A Dtunables.mdoc3 bool
11 bool
19 bool
35 bool
62 bool
72 bool
85 bool
121 bool
136 bool
150 bool
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_flags.inc19 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/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_flags.inc19 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,
32 HWASAN_FLAG(bool, disable_allocator_tagging, false, "")
36 HWASAN_FLAG(bool, random_tags, true, "")
43 HWASAN_FLAG(bool, free_checks_tail_magi
[all...]
/freebsd/sys/contrib/xz-embedded/linux/lib/xz/
H A DKconfig12 bool "x86 BCJ filter decoder"
17 bool "PowerPC BCJ filter decoder"
22 bool "IA-64 BCJ filter decoder"
27 bool "ARM BCJ filter decoder"
32 bool "ARM-Thumb BCJ filter decoder"
37 bool "SPARC BCJ filter decoder"
42 bool "MicroLZMA decoder"
57 bool

12345678910>>...14