| /freebsd/contrib/llvm-project/libcxx/include/__flat_set/ |
| H A D | utils.h | 42 __emplace_exact_pos(_Set& __set, _Iter&& __iter, _KeyArg&& __key) { in __emplace_exact_pos() 46 __set.clear() /* noexcept */; in __emplace_exact_pos() 49 auto __key_it = __set.__keys_.emplace(__iter.__base(), std::forward<_KeyArg>(__key)); in __emplace_exact_pos() 56 __append(_Set& __set, _InputIterator __first, _InputIterator __last) { in __append() 57 __set.__keys_.insert(__set.__keys_.end(), std::move(__first), std::move(__last)); in __append() 61 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 static void __append(_Set& __set, _Range&& __r… in __append() 62 …if constexpr (requires { __set.__keys_.insert_range(__set.__keys_.end(), std::forward<_Range>(__rn… in __append() 65 __set.__keys_.insert_range(__set.__keys_.end(), std::forward<_Range>(__rng)); in __append() 68 __set.__keys_.insert(__set.__keys_.end(), ranges::begin(__rng), ranges::end(__rng)); in __append() 71 __set.__keys_.insert(__set.__keys_.end(), std::forward<decltype(__x)>(__x)); in __append()
|
| /freebsd/contrib/llvm-project/libcxx/include/experimental/__simd/ |
| H A D | reference.h | 44 _LIBCPP_HIDE_FROM_ABI void __set(_Vp __v) { in __set() function 46 __s_.__set(__idx_, experimental::__set_all_bits<_Tp>(__v)); in __set() 48 __s_.__set(__idx_, __v); in __set() 61 __set(static_cast<value_type>(std::forward<_Up>(__v))); 79 __set(__get() + static_cast<value_type>(std::forward<_Up>(__v))); 85 __set(__get() - static_cast<value_type>(std::forward<_Up>(__v))); 91 __set(__get() * static_cast<value_type>(std::forward<_Up>(__v))); 97 __set(__get() / static_cast<value_type>(std::forward<_Up>(__v))); 103 __set(__get() % static_cast<value_type>(std::forward<_Up>(__v))); 109 __set(__get() & static_cast<value_type>(std::forward<_Up>(__v))); [all …]
|
| H A D | vec_ext.h | 46 _LIBCPP_HIDE_FROM_ABI void __set(size_t __idx, _Tp __v) noexcept { 64 __result.__set(__i, __v); 110 __result.__set(__i, __all_bits_v);
|
| H A D | scalar.h | 41 _LIBCPP_HIDE_FROM_ABI void __set([[maybe_unused]] size_t __idx, _Tp __v) noexcept {
|
| /freebsd/contrib/llvm-project/libc/include/llvm-libc-macros/ |
| H A D | sys-select-macros.h | 21 (set)->__set[i] = 0; \ 28 #define FD_CLR(fd, set) (void)((set)->__set[__FD_WORD(fd)] &= ~__FD_MASK(fd)) 30 #define FD_SET(fd, set) (void)((set)->__set[__FD_WORD(fd)] |= __FD_MASK(fd)) 33 (int)(((set)->__set[__FD_WORD(fd)] & __FD_MASK(fd)) != 0)
|
| /freebsd/contrib/llvm-project/libcxx/include/__locale_dir/ |
| H A D | messages.h | 56 …_LIBCPP_HIDE_FROM_ABI string_type get(catalog __c, int __set, int __msgid, const string_type& __df… in get() argument 57 return do_get(__c, __set, __msgid, __dflt); in get() 68 virtual string_type do_get(catalog, int __set, int __msgid, const string_type& __dflt) const; 87 messages<_CharT>::do_get(catalog __c, int __set, int __msgid, const string_type& __dflt) const { in do_get() argument 94 char* __n = catgets(__cat, __set, __msgid, __ndflt.c_str()); in do_get() 100 (void)__set; in do_get()
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__memory/ |
| H A D | destruct_n.h | 39 _LIBCPP_HIDE_FROM_ABI void __set(size_t __s, false_type) _NOEXCEPT { __size_ = __s; } in __set() function 40 _LIBCPP_HIDE_FROM_ABI void __set(size_t, true_type) _NOEXCEPT {} in __set() function 51 _LIBCPP_HIDE_FROM_ABI void __set(size_t __s, _Tp*) _NOEXCEPT { in __set() function 52 __set(__s, integral_constant<bool, is_trivially_destructible<_Tp>::value>()); in __set()
|
| /freebsd/contrib/llvm-project/libcxx/include/__memory/ |
| H A D | destruct_n.h | 39 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 void __set(size_t __s, false_type) _NOEXCEPT {… in __set() function 40 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 void __set(size_t, true_type) _NOEXCEPT {} in __set() function 51 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 void __set(size_t __s, _Tp*) _NOEXCEPT { in __set() function 52 __set(__s, integral_constant<bool, is_trivially_destructible<_Tp>::value>()); in __set()
|
| /freebsd/sys/compat/linuxkpi/common/include/linux/ |
| H A D | debugfs.h | 91 #define DEFINE_DEBUGFS_ATTRIBUTE(__fops, __get, __set, __fmt) \ argument 92 DEFINE_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt) 93 #define DEFINE_DEBUGFS_ATTRIBUTE_SIGNED(__fops, __get, __set, __fmt) \ argument 94 DEFINE_SIMPLE_ATTRIBUTE_SIGNED(__fops, __get, __set, __fmt)
|
| H A D | fs.h | 400 #define __DEFINE_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt, __wrfunc)\ argument 404 return (simple_attr_open(inode, filp, __get, __set, __fmt)); \
|
| /freebsd/sys/contrib/ck/include/gcc/arm/ |
| H A D | ck_pr.h | 246 uint64_t __set = ((uint64_t)_set[0]) | ((uint64_t)_set[1] << 32); local 250 __set, 290 uint64_t __set = ((uint64_t)_set[0]) | ((uint64_t)_set[1] << 32); in CK_PR_DOUBLE_CAS() local 293 __set)); in CK_PR_DOUBLE_CAS()
|
| /freebsd/contrib/llvm-project/libc/include/llvm-libc-types/ |
| H A D | fd_set.h | 15 __FD_SET_WORD_TYPE __set[__FD_SET_ARRAYSIZE]; member
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__algorithm/ |
| H A D | stable_sort.h | 220 __d.__set(__l2, (value_type*)nullptr); in __stable_sort() 222 __d.__set(__len, (value_type*)nullptr); in __stable_sort()
|
| /freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | stable_sort.h | 272 __d.__set(__l2, (value_type*)nullptr); in __stable_sort() 274 __d.__set(__len, (value_type*)nullptr); in __stable_sort()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| H A D | hwasan_interceptors.cpp | 343 extern "C" int sigprocmask(int __how, const __hw_sigset_t *__restrict __set,
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | locale | 3056 …_LIBCPP_HIDE_FROM_ABI string_type get(catalog __c, int __set, int __msgid, const string_type& __df… 3057 return do_get(__c, __set, __msgid, __dflt); 3068 virtual string_type do_get(catalog, int __set, int __msgid, const string_type& __dflt) const; 3087 messages<_CharT>::do_get(catalog __c, int __set, int __msgid, const string_type& __dflt) const { 3094 char* __n = catgets(__cat, __set, __msgid, __ndflt.c_str()); 3100 (void)__set;
|