Home
last modified time | relevance | path

Searched refs:__get (Results 1 – 25 of 33) sorted by relevance

12

/freebsd/contrib/llvm-project/libcxx/include/experimental/__simd/
H A Dreference.h42 _LIBCPP_HIDE_FROM_ABI _Vp __get() const noexcept { return __s_.__get(__idx_); } in __get() function
57 _LIBCPP_HIDE_FROM_ABI operator value_type() const noexcept { return __get(); } in value_type()
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)));
115 __set(__get() | static_cast<value_type>(std::forward<_Up>(__v)));
121 __set(__get() ^ static_cast<value_type>(std::forward<_Up>(__v)));
[all …]
H A Dscalar.h37 _LIBCPP_HIDE_FROM_ABI _Tp __get([[maybe_unused]] size_t __idx) const noexcept {
H A Dsimd_mask.h81 _LIBCPP_HIDE_FROM_ABI value_type operator[](size_t __i) const noexcept { return __s_.__get(__i); }
H A Dvec_ext.h42 _LIBCPP_HIDE_FROM_ABI _Tp __get(size_t __idx) const noexcept {
H A Dsimd.h108 _LIBCPP_HIDE_FROM_ABI value_type operator[](size_t __i) const noexcept { return __s_.__get(__i); }
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__memory/
H A Dcompressed_pair.h54 _LIBCPP_HIDE_FROM_ABI reference __get() _NOEXCEPT { return __value_; } in __get() function
55 _LIBCPP_HIDE_FROM_ABI const_reference __get() const _NOEXCEPT { return __value_; } in __get() function
75 _LIBCPP_HIDE_FROM_ABI reference __get() _NOEXCEPT { return *this; }
76 _LIBCPP_HIDE_FROM_ABI const_reference __get() const _NOEXCEPT { return *this; }
104 …OM_ABI typename _Base1::reference first() _NOEXCEPT { return static_cast<_Base1&>(*this).__get(); }
107 return static_cast<_Base1 const&>(*this).__get();
110 …M_ABI typename _Base2::reference second() _NOEXCEPT { return static_cast<_Base2&>(*this).__get(); }
113 return static_cast<_Base2 const&>(*this).__get();
H A Dallocation_guard.h90 _LIBCPP_HIDE_FROM_ABI _Pointer __get() const _NOEXCEPT { return __ptr_; } in __get() function
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Ddebugfs.h91 #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 Dfs.h399 #define __DEFINE_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt, __wrfunc)\ argument
403 return (simple_attr_open(inode, filp, __get, __set, __fmt)); \
/freebsd/contrib/llvm-project/libcxx/include/__mdspan/
H A Dextents.h59 …_LIBCPP_HIDE_FROM_ABI static constexpr _Tp __get(size_t __index) noexcept { return __array[__index… in __get() function
62 _LIBCPP_HIDE_FROM_ABI static constexpr _Tp __get() { in __get() function
63 return __get(_Index); in __get()
109 _LIBCPP_HIDE_FROM_ABI static constexpr size_t __get(size_t __index) { return __result[__index]; }
171 _TStatic __static_val = _StaticValues::__get(__i);
173 __dyn_vals_[_DynamicIdxMap::__get(__i)] = __values[__i];
190 _TStatic __static_val = _StaticValues::__get(__i);
192 __dyn_vals_[_DynamicIdxMap::__get(__i)] = static_cast<_TDynamic>(__vals[__i]);
207 return _StaticValues::__get(__i);
212 _TStatic __static_val = _StaticValues::__get(__i);
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__utility/
H A Dno_destroy.h45 _LIBCPP_HIDE_FROM_ABI _Tp& __get() { return *reinterpret_cast<_Tp*>(__obj_); } in __get() function
46 _LIBCPP_HIDE_FROM_ABI _Tp const& __get() const { return *reinterpret_cast<const _Tp*>(__obj_); } in __get() function
/freebsd/contrib/llvm-project/libcxx/include/__utility/
H A Dno_destroy.h44 _LIBCPP_HIDE_FROM_ABI _Tp& __get() { return *reinterpret_cast<_Tp*>(__obj_); } in __get() function
45 _LIBCPP_HIDE_FROM_ABI _Tp const& __get() const { return *reinterpret_cast<const _Tp*>(__obj_); } in __get() function
H A Dsmall_buffer.h59 _LIBCPP_HIDE_FROM_ABI _Stored* __get() { in __get() function
80 std::__libcpp_deallocate<_Stored>(__get<_Stored>(), __element_count(1)); in __dealloc()
/freebsd/contrib/llvm-project/libcxx/include/
H A Doptional363 _LIBCPP_HIDE_FROM_ABI constexpr value_type& __get() & noexcept { return this->__val_; }
364 _LIBCPP_HIDE_FROM_ABI constexpr const value_type& __get() const& noexcept { return this->__val_; }
365 …_LIBCPP_HIDE_FROM_ABI constexpr value_type&& __get() && noexcept { return std::move(this->__val_);…
366 …_LIBCPP_HIDE_FROM_ABI constexpr const value_type&& __get() const&& noexcept { return std::move(thi…
378 __construct(std::forward<_That>(__opt).__get());
385 static_cast<_Tp&>(this->__val_) = std::forward<_That>(__opt).__get();
390 __construct(std::forward<_That>(__opt).__get());
434 _LIBCPP_HIDE_FROM_ABI constexpr value_type& __get() const& noexcept { return *__value_; }
436 …_LIBCPP_HIDE_FROM_ABI constexpr value_type&& __get() const&& noexcept { return std::forward<value_…
450 __construct(std::forward<_That>(__opt).__get());
[all …]
H A Dany333 return __get(const_cast<any&>(*__this), __info, __fallback_info);
370 …_LIBCPP_HIDE_FROM_ABI static void* __get(any& __this, type_info const* __info, const void* __fallb…
400 return __get(const_cast<any&>(*__this), __info, __fallback_info);
442 …_LIBCPP_HIDE_FROM_ABI static void* __get(any& __this, type_info const* __info, void const* __fallb…
H A Dvalarray754 // __get(size_t)
757 // __get(__val_expr, size_t)
761 // __get(size_t)
960 _LIBCPP_HIDE_FROM_ABI typename _Expr::value_type __get(const _Expr& __v, size_t __i) {
961 return __v.__get(__i);
966 _LIBCPP_HIDE_FROM_ABI typename _Expr::value_type __get(const _Expr& __v, size_t __i) {
1093 _LIBCPP_HIDE_FROM_ABI value_type __get(size_t __i) const {
1094 _LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(__i < __size_, "slice_array.__get() index out of bounds");
1320 _LIBCPP_HIDE_FROM_ABI value_type __get(size_t __i) const {
1321 …_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(__i < __1d_.size(), "gslice_array.__get() index out of bounds"…
[all …]
H A Dios540 _LIBCPP_HIDE_FROM_ABI typename _Traits::int_type __get() const { return __fill_val_; }
555 _LIBCPP_HIDE_FROM_ABI typename _Traits::int_type __get() const { return __fill_val_; }
703 return __fill_.__get();
710 char_type __r = __fill_.__get();
H A D__tree1203 _LIBCPP_HIDE_FROM_ABI __node_pointer __get() const _NOEXCEPT { return __cache_elem_; }
1315 for (; __cache.__get() != nullptr && __first != __last; ++__first) {
1316 if (__node_assign_unique(*__first, __cache.__get()).second)
1333 for (; __cache.__get() && __first != __last; ++__first) {
1334 __assign_value(__cache.__get()->__value_, *__first);
1335 __node_insert_multi(__cache.__get());
1419 while (__cache.__get() != nullptr && __t.size() != 0) {
1420 __assign_value(__cache.__get()->__value_, std::move(__t.remove(__t.begin())->__value_));
1421 __node_insert_multi(__cache.__get());
/freebsd/contrib/llvm-project/libcxx/include/__memory/
H A Dallocation_guard.h91 …_LIBCPP_CONSTEXPR_SINCE_CXX26 _LIBCPP_HIDE_FROM_ABI _Pointer __get() const _NOEXCEPT { return __pt… in __get() function
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__locale_dir/locale_base_api/
H A Dwin32.h75 lconv* __get() { return &__lc_; } in __get() function
145 return __lc_->__get(); in __store_lconv()
/freebsd/contrib/llvm-project/libcxx/include/__locale_dir/support/
H A Dwindows.h62 __lconv_t* __get() { return &__lc_; } in __get() function
147 return __lc_->__get(); in __store_lconv()
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dvalarray739 // __get(size_t)
742 // __get(__val_expr, size_t)
746 // __get(size_t)
914 _LIBCPP_HIDE_FROM_ABI typename _Expr::value_type __get(const _Expr& __v, size_t __i) {
915 return __v.__get(__i);
920 _LIBCPP_HIDE_FROM_ABI typename _Expr::value_type __get(const _Expr& __v, size_t __i) {
1047 _LIBCPP_HIDE_FROM_ABI value_type __get(size_t __i) const {
1048 _LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(__i < __size_, "slice_array.__get() index out of bounds");
1255 _LIBCPP_HIDE_FROM_ABI value_type __get(size_t __i) const {
1256 …_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(__i < __1d_.size(), "gslice_array.__get() index out of bounds"…
[all …]
H A Dios526 _LIBCPP_HIDE_FROM_ABI typename _Traits::int_type __get() const { return __fill_val_; }
541 _LIBCPP_HIDE_FROM_ABI typename _Traits::int_type __get() const { return __fill_val_; }
685 return __fill_.__get();
692 char_type __r = __fill_.__get();
H A D__tree1230 _LIBCPP_HIDE_FROM_ABI __node_pointer __get() const _NOEXCEPT { return __cache_elem_; }
1347 for (; __cache.__get() != nullptr && __first != __last; ++__first) {
1348 if (__node_assign_unique(*__first, __cache.__get()).second)
1367 for (; __cache.__get() && __first != __last; ++__first) {
1368 __cache.__get()->__value_ = *__first;
1369 __node_insert_multi(__cache.__get());
1446 while (__cache.__get() != nullptr && __t.size() != 0) {
1447 __cache.__get()->__value_ = std::move(__t.remove(__t.begin())->__value_);
1448 __node_insert_multi(__cache.__get());
/freebsd/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp149 install(f, f->id.__get()); in install()
359 long id = F::id.__get(); in install_from()
499 return &locale::__imp::classic_locale_imp_.__get(); in classic()
501 return classic_locale.__get(); in classic()
506 return g.__get(); in __global()
510 if (this != &locale::__imp::classic_locale_imp_.__get()) in acquire()
515 if (this != &locale::__imp::classic_locale_imp_.__get()) in release()
573 bool locale::has_facet(id& x) const { return __locale_->has_facet(x.__get()); } in has_facet()
575 const locale::facet* locale::use_facet(id& x) const { return __locale_->use_facet(x.__get()); } in use_facet()
591 long locale::id::__get() { in __get() function in locale::id

12