/freebsd/contrib/llvm-project/libcxx/include/__atomic/ |
H A D | atomic_flag.h | 107 …IDE_FROM_ABI bool atomic_flag_test(const volatile atomic_flag* __o) _NOEXCEPT { return __o->test()… 109 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test(const atomic_flag* __o) _NOEXCEPT { return __o->… 112 atomic_flag_test_explicit(const volatile atomic_flag* __o, memory_order __m) _NOEXCEPT { 113 return __o->test(__m); 116 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test_explicit(const atomic_flag* __o, memory_order __… 117 return __o->test(__m); 120 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test_and_set(volatile atomic_flag* __o) _NOEXCEPT { 121 return __o->test_and_set(); 124 inline _LIBCPP_HIDE_FROM_ABI bool atomic_flag_test_and_set(atomic_flag* __o) _NOEXCEPT { return __o… 127 atomic_flag_test_and_set_explicit(volatile atomic_flag* __o, memory_order __m) _NOEXCEPT { [all …]
|
H A D | atomic.h | 257 _LIBCPP_HIDE_FROM_ABI bool atomic_is_lock_free(const volatile atomic<_Tp>* __o) _NOEXCEPT { 258 return __o->is_lock_free(); 262 _LIBCPP_HIDE_FROM_ABI bool atomic_is_lock_free(const atomic<_Tp>* __o) _NOEXCEPT { 263 return __o->is_lock_free(); 270 atomic_init(volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_type __d) _NOEXCEPT { 271 std::__cxx_atomic_init(std::addressof(__o->__a_), __d); 276 atomic_init(atomic<_Tp>* __o, typename atomic<_Tp>::value_type __d) _NOEXCEPT { 277 std::__cxx_atomic_init(std::addressof(__o->__a_), __d); 283 _LIBCPP_HIDE_FROM_ABI void atomic_store(volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_type… 284 __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/__filesystem/ |
H A D | recursive_directory_iterator.h | 66 …_LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator=(recursive_directory_iterator&& __o) … 68 if (this != &__o) { 69 __imp_ = std::move(__o.__imp_); 70 __rec_ = __o.__rec_;
|
H A D | directory_iterator.h | 67 _LIBCPP_HIDE_FROM_ABI directory_iterator& operator=(directory_iterator&& __o) noexcept { 69 if (this != &__o) { 70 __imp_ = std::move(__o.__imp_);
|
H A D | directory_entry.h | 423 …_LIBCPP_HIDE_FROM_ABI __dir_element_proxy(__dir_element_proxy&& __o) : __elem_(std::move(__o.__ele… in __dir_element_proxy() argument
|
/freebsd/contrib/llvm-project/libcxx/include/__ostream/ |
H A D | print.h | 45 string __o = std::vformat(__os.getloc(), __fmt, __args); in __vprint_nonunicode() local 47 __o += '\n'; in __vprint_nonunicode() 49 const char* __str = __o.data(); in __vprint_nonunicode() 50 size_t __len = __o.size(); in __vprint_nonunicode()
|
H A D | basic_ostream.h | 198 _Op __o(*this); 200 for (; __i != __eof; ++__i, ++__o, ++__c) { 201 *__o = *__i; 202 if (__o.failed()) 644 _Op __o(*this); in put() 645 *__o = __c; in put() 646 if (__o.failed()) in put()
|
/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 | 72 concept indirectly_writable = requires(_Out&& __o, _Tp&& __t) { in requires() argument 73 …*__o = std::forward<_Tp>(__t); // not required to be e… in requires() 74 …*std::forward<_Out>(__o) = std::forward<_Tp>(__t); // not required to be e… in requires() 75 …const_cast<const iter_reference_t<_Out>&&>(*__o) = std::forward<_Tp>(__t); // not required to be e… in requires() 76 const_cast<const iter_reference_t<_Out>&&>(*std::forward<_Out>(__o)) = in requires()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | scoped_allocator | 234 …_LIBCPP_HIDE_FROM_ABI __scoped_allocator_storage(_OuterA2&& __o, const inner_allocator_type& __i) … 235 : outer_allocator_type(std::forward<_OuterA2>(__o)), 300 …__scoped_allocator_storage(const outer_allocator_type& __o, const inner_allocator_type& __i) _NOEX… 479 …outer_allocator_type&& __o, inner_allocator_type&& __i) _NOEXCEPT : _Base(std::move(__o), std::mov…
|
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 …]
|
/freebsd/sys/sys/ |
H A D | stdatomic.h | 313 __typeof__(object) __o = (object); \ 317 __sync_lock_test_and_set(&(__o)->__val, __d); \
|
/freebsd/contrib/llvm-project/libcxx/include/__format/ |
H A D | buffer.h | 70 __flush_([](_CharT* __p, size_t __n, void* __o) { static_cast<_Tp*>(__o)->__flush(__p, __n); }), in __output_buffer()
|