| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__atomic/ |
| H A D | atomic.h | 123 _LIBCPP_HIDE_FROM_ABI bool atomic_is_lock_free(const volatile atomic<_Tp>* __o) _NOEXCEPT { 124 return __o->is_lock_free(); 128 _LIBCPP_HIDE_FROM_ABI bool atomic_is_lock_free(const atomic<_Tp>* __o) _NOEXCEPT { 129 return __o->is_lock_free(); 135 _LIBCPP_HIDE_FROM_ABI void atomic_init(volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_type … 136 std::__cxx_atomic_init(std::addressof(__o->__a_), __d); 140 _LIBCPP_HIDE_FROM_ABI void atomic_init(atomic<_Tp>* __o, typename atomic<_Tp>::value_type __d) _NOE… 141 std::__cxx_atomic_init(std::addressof(__o->__a_), __d); 147 _LIBCPP_HIDE_FROM_ABI void atomic_store(volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_type… 148 __o->store(__d); [all …]
|
| H A D | atomic_flag.h | 102 …IDE_FROM_ABI bool atomic_flag_test(const volatile atomic_flag* __o) _NOEXCEPT { return __o->test()… 104 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test(const atomic_flag* __o) _NOEXCEPT { return __o->… 107 atomic_flag_test_explicit(const volatile atomic_flag* __o, memory_order __m) _NOEXCEPT { 108 return __o->test(__m); 111 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test_explicit(const atomic_flag* __o, memory_order __… 112 return __o->test(__m); 115 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test_and_set(volatile atomic_flag* __o) _NOEXCEPT { 116 return __o->test_and_set(); 119 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test_and_set(atomic_flag* __o) _NOEXCEPT { return __o… 122 atomic_flag_test_and_set_explicit(volatile atomic_flag* __o, memory_order __m) _NOEXCEPT { [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__atomic/ |
| H A D | atomic_flag.h | 105 …IDE_FROM_ABI bool atomic_flag_test(const volatile atomic_flag* __o) _NOEXCEPT { return __o->test()… 107 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test(const atomic_flag* __o) _NOEXCEPT { return __o->… 110 atomic_flag_test_explicit(const volatile atomic_flag* __o, memory_order __m) _NOEXCEPT { 111 return __o->test(__m); 114 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test_explicit(const atomic_flag* __o, memory_order __… 115 return __o->test(__m); 118 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test_and_set(volatile atomic_flag* __o) _NOEXCEPT { 119 return __o->test_and_set(); 122 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test_and_set(atomic_flag* __o) _NOEXCEPT { return __o… 125 atomic_flag_test_and_set_explicit(volatile atomic_flag* __o, memory_order __m) _NOEXCEPT { [all …]
|
| H A D | atomic.h | 465 _LIBCPP_HIDE_FROM_ABI bool atomic_is_lock_free(const volatile atomic<_Tp>* __o) _NOEXCEPT { 466 return __o->is_lock_free(); 470 _LIBCPP_HIDE_FROM_ABI bool atomic_is_lock_free(const atomic<_Tp>* __o) _NOEXCEPT { 471 return __o->is_lock_free(); 478 atomic_init(volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_type __d) _NOEXCEPT { 479 std::__cxx_atomic_init(std::addressof(__o->__a_), __d); 484 atomic_init(atomic<_Tp>* __o, typename atomic<_Tp>::value_type __d) _NOEXCEPT { 485 std::__cxx_atomic_init(std::addressof(__o->__a_), __d); 491 _LIBCPP_HIDE_FROM_ABI void atomic_store(volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_type… 492 __o->store(__d); [all …]
|
| /freebsd/sys/compat/linuxkpi/common/include/asm/ |
| H A D | atomic.h | 271 __typeof(*(p)) __o = *__op; \ 272 __typeof(*(p)) __p = __sync_val_compare_and_swap((p), (__o), (n)); \ 273 if (__p != __o) \ 275 (__p == __o); \ 281 __typeof(*(_po)) __r, __o = *__po; \ 282 __r = atomic_cmpxchg##type((_p), __o, (_n)); \ 283 if (unlikely(__r != __o)) \ 285 likely(__r == __o); \
|
| /freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | three_way_comp_ref_type.h | 48 _LIBCPP_HIDE_FROM_ABI constexpr void __do_compare_assert(_LHS& __l, _RHS& __r, _Order __o) { in __do_compare_assert() 49 _Order __expected = __o; in __do_compare_assert() 50 if (__o == _Order::less) in __do_compare_assert() 52 if (__o == _Order::greater) in __do_compare_assert()
|
| /freebsd/contrib/llvm-project/libcxx/include/__ostream/ |
| H A D | print.h | 48 string __o = std::vformat(__os.getloc(), __fmt, __args); in __vprint_nonunicode() local 50 __o += '\n'; in __vprint_nonunicode() 56 !__rdbuf || __rdbuf->sputn(__o.data(), __o.size()) != static_cast<streamsize>(__o.size())) in __vprint_nonunicode()
|
| H A D | basic_ostream.h | 253 _Op __o(*this); 255 for (; __i != __eof; ++__i, ++__o, ++__c) { 256 *__o = *__i; 257 if (__o.failed()) 463 _Op __o(*this); in put() 464 *__o = __c; in put() 465 if (__o.failed()) in put()
|
| /freebsd/contrib/llvm-project/libcxx/include/__filesystem/ |
| H A D | recursive_directory_iterator.h | 65 …_LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator=(recursive_directory_iterator&& __o) … 67 if (this != &__o) { 68 __imp_ = std::move(__o.__imp_); 69 __rec_ = __o.__rec_;
|
| H A D | directory_iterator.h | 66 _LIBCPP_HIDE_FROM_ABI directory_iterator& operator=(directory_iterator&& __o) noexcept { 68 if (this != &__o) { 69 __imp_ = std::move(__o.__imp_);
|
| H A D | directory_entry.h | 458 …_LIBCPP_HIDE_FROM_ABI __dir_element_proxy(__dir_element_proxy&& __o) : __elem_(std::move(__o.__ele… in __dir_element_proxy() argument
|
| /freebsd/contrib/libarchive/libarchive/test/ |
| H A D | test_archive_read_set_filter_option.c | 28 #define should(__a, __code, __m, __o, __v) \ 29 assertEqualInt(__code, archive_read_set_filter_option(__a, __m, __o, __v)) argument
|
| H A D | test_archive_write_set_filter_option.c | 28 #define should(__a, __code, __m, __o, __v) \ 29 assertEqualInt(__code, archive_write_set_filter_option(__a, __m, __o, __v)) argument
|
| H A D | test_archive_read_set_format_option.c | 28 #define should(__a, __code, __m, __o, __v) \ 29 assertEqualInt(__code, archive_read_set_format_option(__a, __m, __o, __v)) argument
|
| H A D | test_archive_write_set_format_option.c | 28 #define should(__a, __code, __m, __o, __v) \ 29 assertEqualInt(__code, archive_write_set_format_option(__a, __m, __o, __v)) argument
|
| H A D | test_archive_read_set_option.c | 28 #define should(__a, __code, __m, __o, __v) \ 29 assertEqualInt(__code, archive_read_set_option(__a, __m, __o, __v)) argument
|
| H A D | test_archive_write_set_option.c | 28 #define should(__a, __code, __m, __o, __v) \ 29 assertEqualInt(__code, archive_write_set_option(__a, __m, __o, __v)) argument
|
| /freebsd/contrib/llvm-project/libcxx/include/__iterator/ |
| H A D | concepts.h | 104 concept indirectly_writable = requires(_Out&& __o, _Tp&& __t) { 105 …*__o = std::forward<_Tp>(__t); // not required to be e… 106 …*std::forward<_Out>(__o) = std::forward<_Tp>(__t); // not required to be e… 107 …const_cast<const iter_reference_t<_Out>&&>(*__o) = std::forward<_Tp>(__t); // not required to be e… 108 const_cast<const iter_reference_t<_Out>&&>(*std::forward<_Out>(__o)) =
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__ostream/ |
| H A D | basic_ostream.h | 186 _Op __o(*this); 188 for (; __i != __eof; ++__i, ++__o, ++__c) { 189 *__o = *__i; 190 if (__o.failed()) 632 _Op __o(*this); in put() 633 *__o = __c; in put() 634 if (__o.failed()) in put()
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | scoped_allocator | 237 …_LIBCPP_HIDE_FROM_ABI __scoped_allocator_storage(_OuterA2&& __o, const inner_allocator_type& __i) … 238 : outer_allocator_type(std::forward<_OuterA2>(__o)), 303 …__scoped_allocator_storage(const outer_allocator_type& __o, const inner_allocator_type& __i) _NOEX… 482 …outer_allocator_type&& __o, inner_allocator_type&& __i) _NOEXCEPT : _Base(std::move(__o), std::mov…
|
| /freebsd/sys/sys/ |
| H A D | stdatomic.h | 319 __typeof__(object) __o = (object); \ 323 __sync_lock_test_and_set(&(__o)->__val, __d); \
|
| /freebsd/contrib/llvm-project/libcxx/include/__locale_dir/ |
| H A D | num.h | 954 char_type __o[2 * (__buffer_size - 1) - 1]; 957 this->__widen_and_group_int(__char_buffer, __np, __res.__ptr, __o, __op, __oe, __iob.getloc()); 960 return std::__pad_and_output(__s, __o, __op, __oe, __iob, __fl); 1019 char_type __o[2 * (__nbuf - 1) - 1]; 1020 char_type* __ob = __o;
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | locale | 1344 char_type __o[2 * (__nbuf - 1) - 1]; 1347 this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc()); 1348 // [__o, __oe) contains thousands_sep'd wide number 1350 return std::__pad_and_output(__s, __o, __op, __oe, __iob, __fl); 1409 char_type __o[2 * (__nbuf - 1) - 1]; 1410 char_type* __ob = __o; 1421 // [__o, __oe) contains thousands_sep'd wide number 1449 char_type __o[2 * (__nbuf - 1) - 1]; 1453 __ct.widen(__nar, __ne, __o); 1454 __oe = __o + (__ne - __nar); [all …]
|