Home
last modified time | relevance | path

Searched refs:__p (Results 1 – 25 of 397) sorted by relevance

12345678910>>...16

/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/
H A Dfs_ops.h47 path absolute(const path& __p); in _GLIBCXX_VISIBILITY()
48 path absolute(const path& __p, error_code& __ec); in _GLIBCXX_VISIBILITY()
50 path canonical(const path& __p); in _GLIBCXX_VISIBILITY()
51 path canonical(const path& __p, error_code& __ec); in _GLIBCXX_VISIBILITY()
81 bool create_directories(const path& __p); in _GLIBCXX_VISIBILITY()
82 bool create_directories(const path& __p, error_code& __ec); in _GLIBCXX_VISIBILITY()
84 bool create_directory(const path& __p); in _GLIBCXX_VISIBILITY()
85 bool create_directory(const path& __p, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
87 bool create_directory(const path& __p, const path& attributes); in _GLIBCXX_VISIBILITY()
88 bool create_directory(const path& __p, const path& attributes, in _GLIBCXX_VISIBILITY()
[all …]
H A Dshared_ptr_atomic.h76 atomic_is_lock_free(const __shared_ptr<_Tp, _Lp>* __p) in _GLIBCXX_VISIBILITY()
87 atomic_is_lock_free(const shared_ptr<_Tp>* __p) in _GLIBCXX_VISIBILITY()
88 { return std::atomic_is_lock_free<_Tp, __default_lock_policy>(__p); } in _GLIBCXX_VISIBILITY()
103 atomic_load_explicit(const shared_ptr<_Tp>* __p, memory_order) in _GLIBCXX_VISIBILITY()
105 _Sp_locker __lock{__p}; in _GLIBCXX_VISIBILITY()
106 return *__p; in _GLIBCXX_VISIBILITY()
111 atomic_load(const shared_ptr<_Tp>* __p) in _GLIBCXX_VISIBILITY()
112 { return std::atomic_load_explicit(__p, memory_order_seq_cst); } in _GLIBCXX_VISIBILITY()
116 atomic_load_explicit(const __shared_ptr<_Tp, _Lp>* __p, memory_order) in _GLIBCXX_VISIBILITY()
118 _Sp_locker __lock{__p}; in _GLIBCXX_VISIBILITY()
[all …]
H A Dvalarray_array.tcc44 _Tp* __p = __a._M_data; in __valarray_fill() local
46 for (size_t __i=0; __i < __n; ++__i, ++__ok, ++__p) in __valarray_fill()
51 ++__p; in __valarray_fill()
53 *__p = __t; in __valarray_fill()
68 _Tp* __p (__a._M_data); in __valarray_copy() local
71 ++__q, ++__ok, ++__p) in __valarray_copy()
76 ++__p; in __valarray_copy()
78 *__q = *__p; in __valarray_copy()
95 for (_Tp* __p = __a._M_data; __p < __a._M_data+__n; in __valarray_copy() local
96 ++__p, ++__ok, ++__q) in __valarray_copy()
[all …]
H A Dfs_dir.h105 directory_entry(const filesystem::path& __p) in _GLIBCXX_VISIBILITY()
106 : _M_path(__p) in _GLIBCXX_VISIBILITY()
109 directory_entry(const filesystem::path& __p, error_code& __ec) in _GLIBCXX_VISIBILITY()
110 : _M_path(__p) in _GLIBCXX_VISIBILITY()
124 assign(const filesystem::path& __p) in _GLIBCXX_VISIBILITY()
126 _M_path = __p; in _GLIBCXX_VISIBILITY()
131 assign(const filesystem::path& __p, error_code& __ec) in _GLIBCXX_VISIBILITY()
133 _M_path = __p; in _GLIBCXX_VISIBILITY()
138 replace_filename(const filesystem::path& __p) in _GLIBCXX_VISIBILITY()
140 _M_path.replace_filename(__p); in _GLIBCXX_VISIBILITY()
[all …]
H A Dvalarray_array.h62 __valarray_release_memory(void* __p) in _GLIBCXX_VISIBILITY()
63 { operator delete(__p); } in _GLIBCXX_VISIBILITY()
492 _Array<_Tp>::_Array(_Tp* const __restrict__ __p) in _GLIBCXX_VISIBILITY()
493 : _M_data (__p) {} in _GLIBCXX_VISIBILITY()
516 for (_Tp* __p = __a._M_data; __p < __a._M_data + __n; ++__p) \ in _GLIBCXX_VISIBILITY()
517 *__p _Op##= __t; \ in _GLIBCXX_VISIBILITY()
524 _Tp* __p = __a._M_data; \ in _GLIBCXX_VISIBILITY()
525 for (_Tp* __q = __b._M_data; __q < __b._M_data + __n; ++__p, ++__q) \ in _GLIBCXX_VISIBILITY()
526 *__p _Op##= *__q; \ in _GLIBCXX_VISIBILITY()
534 _Tp* __p(__a._M_data); \ in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/
H A Dfs_ops.h47 path absolute(const path& __p); in _GLIBCXX_VISIBILITY()
48 path absolute(const path& __p, error_code& __ec); in _GLIBCXX_VISIBILITY()
50 path canonical(const path& __p); in _GLIBCXX_VISIBILITY()
51 path canonical(const path& __p, error_code& __ec); in _GLIBCXX_VISIBILITY()
81 bool create_directories(const path& __p); in _GLIBCXX_VISIBILITY()
82 bool create_directories(const path& __p, error_code& __ec); in _GLIBCXX_VISIBILITY()
84 bool create_directory(const path& __p); in _GLIBCXX_VISIBILITY()
85 bool create_directory(const path& __p, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
87 bool create_directory(const path& __p, const path& attributes); in _GLIBCXX_VISIBILITY()
88 bool create_directory(const path& __p, const path& attributes, in _GLIBCXX_VISIBILITY()
[all …]
H A Dshared_ptr_atomic.h76 atomic_is_lock_free(const __shared_ptr<_Tp, _Lp>* __p) in _GLIBCXX_VISIBILITY()
87 atomic_is_lock_free(const shared_ptr<_Tp>* __p) in _GLIBCXX_VISIBILITY()
88 { return std::atomic_is_lock_free<_Tp, __default_lock_policy>(__p); } in _GLIBCXX_VISIBILITY()
103 atomic_load_explicit(const shared_ptr<_Tp>* __p, memory_order) in _GLIBCXX_VISIBILITY()
105 _Sp_locker __lock{__p}; in _GLIBCXX_VISIBILITY()
106 return *__p; in _GLIBCXX_VISIBILITY()
111 atomic_load(const shared_ptr<_Tp>* __p) in _GLIBCXX_VISIBILITY()
112 { return std::atomic_load_explicit(__p, memory_order_seq_cst); } in _GLIBCXX_VISIBILITY()
116 atomic_load_explicit(const __shared_ptr<_Tp, _Lp>* __p, memory_order) in _GLIBCXX_VISIBILITY()
118 _Sp_locker __lock{__p}; in _GLIBCXX_VISIBILITY()
[all …]
H A Dvalarray_array.tcc44 _Tp* __p = __a._M_data; in __valarray_fill() local
46 for (size_t __i=0; __i < __n; ++__i, ++__ok, ++__p) in __valarray_fill()
51 ++__p; in __valarray_fill()
53 *__p = __t; in __valarray_fill()
68 _Tp* __p (__a._M_data); in __valarray_copy() local
71 ++__q, ++__ok, ++__p) in __valarray_copy()
76 ++__p; in __valarray_copy()
78 *__q = *__p; in __valarray_copy()
95 for (_Tp* __p = __a._M_data; __p < __a._M_data+__n; in __valarray_copy() local
96 ++__p, ++__ok, ++__q) in __valarray_copy()
[all …]
H A Dfs_dir.h105 directory_entry(const filesystem::path& __p) in _GLIBCXX_VISIBILITY()
106 : _M_path(__p) in _GLIBCXX_VISIBILITY()
109 directory_entry(const filesystem::path& __p, error_code& __ec) in _GLIBCXX_VISIBILITY()
110 : _M_path(__p) in _GLIBCXX_VISIBILITY()
124 assign(const filesystem::path& __p) in _GLIBCXX_VISIBILITY()
126 _M_path = __p; in _GLIBCXX_VISIBILITY()
131 assign(const filesystem::path& __p, error_code& __ec) in _GLIBCXX_VISIBILITY()
133 _M_path = __p; in _GLIBCXX_VISIBILITY()
138 replace_filename(const filesystem::path& __p) in _GLIBCXX_VISIBILITY()
140 _M_path.replace_filename(__p); in _GLIBCXX_VISIBILITY()
[all …]
H A Dvalarray_array.h62 __valarray_release_memory(void* __p) in _GLIBCXX_VISIBILITY()
63 { operator delete(__p); } in _GLIBCXX_VISIBILITY()
492 _Array<_Tp>::_Array(_Tp* const __restrict__ __p) in _GLIBCXX_VISIBILITY()
493 : _M_data (__p) {} in _GLIBCXX_VISIBILITY()
516 for (_Tp* __p = __a._M_data; __p < __a._M_data + __n; ++__p) \ in _GLIBCXX_VISIBILITY()
517 *__p _Op##= __t; \ in _GLIBCXX_VISIBILITY()
524 _Tp* __p = __a._M_data; \ in _GLIBCXX_VISIBILITY()
525 for (_Tp* __q = __b._M_data; __q < __b._M_data + __n; ++__p, ++__q) \ in _GLIBCXX_VISIBILITY()
526 *__p _Op##= *__q; \ in _GLIBCXX_VISIBILITY()
534 _Tp* __p(__a._M_data); \ in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/experimental/bits/
H A Dfs_ops.h54 path absolute(const path& __p, const path& __base = current_path()); in _GLIBCXX_VISIBILITY()
56 path canonical(const path& __p, const path& __base = current_path()); in _GLIBCXX_VISIBILITY()
57 path canonical(const path& __p, error_code& __ec); in _GLIBCXX_VISIBILITY()
58 path canonical(const path& __p, const path& __base, error_code& __ec); in _GLIBCXX_VISIBILITY()
88 bool create_directories(const path& __p); in _GLIBCXX_VISIBILITY()
89 bool create_directories(const path& __p, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
91 bool create_directory(const path& __p); in _GLIBCXX_VISIBILITY()
92 bool create_directory(const path& __p, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
94 bool create_directory(const path& __p, const path& attributes); in _GLIBCXX_VISIBILITY()
95 bool create_directory(const path& __p, const path& attributes, in _GLIBCXX_VISIBILITY()
[all …]
H A Dshared_ptr.h94 shared_ptr(_Tp1* __p) : _Base_type(__p) in _GLIBCXX_VISIBILITY()
95 { _M_enable_shared_from_this_with(__p); } in _GLIBCXX_VISIBILITY()
98 shared_ptr(_Tp1* __p, _Deleter __d) in _GLIBCXX_VISIBILITY()
99 : _Base_type(__p, __d) in _GLIBCXX_VISIBILITY()
100 { _M_enable_shared_from_this_with(__p); } in _GLIBCXX_VISIBILITY()
104 shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a) in _GLIBCXX_VISIBILITY()
105 : _Base_type(__p, __d, __a) in _GLIBCXX_VISIBILITY()
106 { _M_enable_shared_from_this_with(__p); } in _GLIBCXX_VISIBILITY()
109 shared_ptr(nullptr_t __p, _Deleter __d) in _GLIBCXX_VISIBILITY()
110 : _Base_type(__p, __d) { } in _GLIBCXX_VISIBILITY()
[all …]
H A Dfs_dir.h94 explicit directory_entry(const filesystem::path& __p) : _M_path(__p) { } in _GLIBCXX_VISIBILITY()
101 void assign(const filesystem::path& __p) { _M_path = __p; } in _GLIBCXX_VISIBILITY()
104 replace_filename(const filesystem::path& __p) in _GLIBCXX_VISIBILITY()
105 { _M_path = _M_path.parent_path() / __p; } in _GLIBCXX_VISIBILITY()
187 directory_iterator(const path& __p) in _GLIBCXX_VISIBILITY()
188 : directory_iterator(__p, directory_options::none, nullptr) { } in _GLIBCXX_VISIBILITY()
190 directory_iterator(const path& __p, directory_options __options) in _GLIBCXX_VISIBILITY()
191 : directory_iterator(__p, __options, nullptr) { } in _GLIBCXX_VISIBILITY()
193 directory_iterator(const path& __p, error_code& __ec) noexcept in _GLIBCXX_VISIBILITY()
194 : directory_iterator(__p, directory_options::none, __ec) { } in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/experimental/bits/
H A Dfs_ops.h54 path absolute(const path& __p, const path& __base = current_path()); in _GLIBCXX_VISIBILITY()
56 path canonical(const path& __p, const path& __base = current_path()); in _GLIBCXX_VISIBILITY()
57 path canonical(const path& __p, error_code& __ec); in _GLIBCXX_VISIBILITY()
58 path canonical(const path& __p, const path& __base, error_code& __ec); in _GLIBCXX_VISIBILITY()
88 bool create_directories(const path& __p); in _GLIBCXX_VISIBILITY()
89 bool create_directories(const path& __p, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
91 bool create_directory(const path& __p); in _GLIBCXX_VISIBILITY()
92 bool create_directory(const path& __p, error_code& __ec) noexcept; in _GLIBCXX_VISIBILITY()
94 bool create_directory(const path& __p, const path& attributes); in _GLIBCXX_VISIBILITY()
95 bool create_directory(const path& __p, const path& attributes, in _GLIBCXX_VISIBILITY()
[all …]
H A Dshared_ptr.h94 shared_ptr(_Tp1* __p) : _Base_type(__p) in _GLIBCXX_VISIBILITY()
95 { _M_enable_shared_from_this_with(__p); } in _GLIBCXX_VISIBILITY()
98 shared_ptr(_Tp1* __p, _Deleter __d) in _GLIBCXX_VISIBILITY()
99 : _Base_type(__p, __d) in _GLIBCXX_VISIBILITY()
100 { _M_enable_shared_from_this_with(__p); } in _GLIBCXX_VISIBILITY()
104 shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a) in _GLIBCXX_VISIBILITY()
105 : _Base_type(__p, __d, __a) in _GLIBCXX_VISIBILITY()
106 { _M_enable_shared_from_this_with(__p); } in _GLIBCXX_VISIBILITY()
109 shared_ptr(nullptr_t __p, _Deleter __d) in _GLIBCXX_VISIBILITY()
110 : _Base_type(__p, __d) { } in _GLIBCXX_VISIBILITY()
[all …]
H A Dfs_dir.h94 explicit directory_entry(const filesystem::path& __p) : _M_path(__p) { } in _GLIBCXX_VISIBILITY()
101 void assign(const filesystem::path& __p) { _M_path = __p; } in _GLIBCXX_VISIBILITY()
104 replace_filename(const filesystem::path& __p) in _GLIBCXX_VISIBILITY()
105 { _M_path = _M_path.parent_path() / __p; } in _GLIBCXX_VISIBILITY()
187 directory_iterator(const path& __p) in _GLIBCXX_VISIBILITY()
188 : directory_iterator(__p, directory_options::none, nullptr) { } in _GLIBCXX_VISIBILITY()
190 directory_iterator(const path& __p, directory_options __options) in _GLIBCXX_VISIBILITY()
191 : directory_iterator(__p, __options, nullptr) { } in _GLIBCXX_VISIBILITY()
193 directory_iterator(const path& __p, error_code& __ec) noexcept in _GLIBCXX_VISIBILITY()
194 : directory_iterator(__p, directory_options::none, __ec) { } in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/include/
H A Darm_mve.h55 #define vaddlvq_p(__a, __p) __arm_vaddlvq_p(__a, __p) argument
84 #define vaddvq_p(__a, __p) __arm_vaddvq_p(__a, __p) argument
135 #define vbicq_m_n(__a, __imm, __p) __arm_vbicq_m_n(__a, __imm, __p) argument
140 #define vpselq(__a, __b, __p) __arm_vpselq(__a, __b, __p) argument
141 #define vrev64q_m(__inactive, __a, __p) __arm_vrev64q_m(__inactive, __a, __p) argument
146 #define vmvnq_m(__inactive, __a, __p) __arm_vmvnq_m(__inactive, __a, __p) argument
149 #define vmladavq_p(__a, __b, __p) __arm_vmladavq_p(__a, __b, __p) argument
151 #define vminvq_p(__a, __b, __p) __arm_vminvq_p(__a, __b, __p) argument
152 #define vmaxvq_p(__a, __b, __p) __arm_vmaxvq_p(__a, __b, __p) argument
153 #define vdupq_m(__inactive, __a, __p) __arm_vdupq_m(__inactive, __a, __p) argument
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/
H A Dvstring_util.h137 _S_copy_chars(_CharT* __p, _Iterator __k1, _Iterator __k2) in _GLIBCXX_VISIBILITY()
139 for (; __k1 != __k2; ++__k1, ++__p) in _GLIBCXX_VISIBILITY()
140 traits_type::assign(*__p, *__k1); // These types are off. in _GLIBCXX_VISIBILITY()
144 _S_copy_chars(_CharT* __p, __sso_iterator __k1, __sso_iterator __k2) in _GLIBCXX_VISIBILITY()
145 { _S_copy_chars(__p, __k1.base(), __k2.base()); } in _GLIBCXX_VISIBILITY()
148 _S_copy_chars(_CharT* __p, __const_sso_iterator __k1, in _GLIBCXX_VISIBILITY()
150 { _S_copy_chars(__p, __k1.base(), __k2.base()); } in _GLIBCXX_VISIBILITY()
153 _S_copy_chars(_CharT* __p, __rc_iterator __k1, __rc_iterator __k2) in _GLIBCXX_VISIBILITY()
154 { _S_copy_chars(__p, __k1.base(), __k2.base()); } in _GLIBCXX_VISIBILITY()
157 _S_copy_chars(_CharT* __p, __const_rc_iterator __k1, in _GLIBCXX_VISIBILITY()
[all …]
H A Dextptr_allocator.h98 void deallocate(pointer __p, size_type __n) in _GLIBCXX_VISIBILITY()
99 { _M_real_alloc.deallocate(__p.get(), __n); } in _GLIBCXX_VISIBILITY()
107 construct(_Up* __p, _Args&&... __args) in _GLIBCXX_VISIBILITY()
108 { ::new((void *)__p) _Up(std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY()
112 construct(pointer __p, _Args&&... __args) in _GLIBCXX_VISIBILITY()
113 { construct(__p.get(), std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY()
117 destroy(_Up* __p) in _GLIBCXX_VISIBILITY()
118 { __p->~_Up(); } in _GLIBCXX_VISIBILITY()
120 void destroy(pointer __p) in _GLIBCXX_VISIBILITY()
121 { destroy(__p.get()); } in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/
H A Dvstring_util.h137 _S_copy_chars(_CharT* __p, _Iterator __k1, _Iterator __k2) in _GLIBCXX_VISIBILITY()
139 for (; __k1 != __k2; ++__k1, ++__p) in _GLIBCXX_VISIBILITY()
140 traits_type::assign(*__p, *__k1); // These types are off. in _GLIBCXX_VISIBILITY()
144 _S_copy_chars(_CharT* __p, __sso_iterator __k1, __sso_iterator __k2) in _GLIBCXX_VISIBILITY()
145 { _S_copy_chars(__p, __k1.base(), __k2.base()); } in _GLIBCXX_VISIBILITY()
148 _S_copy_chars(_CharT* __p, __const_sso_iterator __k1, in _GLIBCXX_VISIBILITY()
150 { _S_copy_chars(__p, __k1.base(), __k2.base()); } in _GLIBCXX_VISIBILITY()
153 _S_copy_chars(_CharT* __p, __rc_iterator __k1, __rc_iterator __k2) in _GLIBCXX_VISIBILITY()
154 { _S_copy_chars(__p, __k1.base(), __k2.base()); } in _GLIBCXX_VISIBILITY()
157 _S_copy_chars(_CharT* __p, __const_rc_iterator __k1, in _GLIBCXX_VISIBILITY()
[all …]
H A Dextptr_allocator.h98 void deallocate(pointer __p, size_type __n) in _GLIBCXX_VISIBILITY()
99 { _M_real_alloc.deallocate(__p.get(), __n); } in _GLIBCXX_VISIBILITY()
107 construct(_Up* __p, _Args&&... __args) in _GLIBCXX_VISIBILITY()
108 { ::new((void *)__p) _Up(std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY()
112 construct(pointer __p, _Args&&... __args) in _GLIBCXX_VISIBILITY()
113 { construct(__p.get(), std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY()
117 destroy(_Up* __p) in _GLIBCXX_VISIBILITY()
118 { __p->~_Up(); } in _GLIBCXX_VISIBILITY()
120 void destroy(pointer __p) in _GLIBCXX_VISIBILITY()
121 { destroy(__p.get()); } in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Dsstream264 char_type* __p = const_cast<char_type*>(__rhs.__str_.data());
270 __binp = __rhs.eback() - __p;
271 __ninp = __rhs.gptr() - __p;
272 __einp = __rhs.egptr() - __p;
279 __bout = __rhs.pbase() - __p;
280 __nout = __rhs.pptr() - __p;
281 __eout = __rhs.epptr() - __p;
283 ptrdiff_t __hm = __rhs.__hm_ == nullptr ? -1 : __rhs.__hm_ - __p;
285 __p = const_cast<char_type*>(__str_.data());
287 this->setg(__p + __binp, __p + __ninp, __p + __einp);
[all …]
H A Dfilesystem520 void permissions(perms __p) noexcept { __prms_ = __p; }
762 _LIBCPP_INLINE_VISIBILITY path(const path& __p) : __pn_(__p.__pn_) {}
763 _LIBCPP_INLINE_VISIBILITY path(path&& __p) noexcept
764 : __pn_(_VSTD::move(__p.__pn_)) {}
793 path& operator=(const path& __p) {
794 __pn_ = __p.__pn_;
799 path& operator=(path&& __p) noexcept {
800 __pn_ = _VSTD::move(__p.__pn_);
845 path& operator/=(const path& __p) {
846 if (__p.is_absolute()) {
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Dsstream264 char_type* __p = const_cast<char_type*>(__rhs.__str_.data());
270 __binp = __rhs.eback() - __p;
271 __ninp = __rhs.gptr() - __p;
272 __einp = __rhs.egptr() - __p;
279 __bout = __rhs.pbase() - __p;
280 __nout = __rhs.pptr() - __p;
281 __eout = __rhs.epptr() - __p;
283 ptrdiff_t __hm = __rhs.__hm_ == nullptr ? -1 : __rhs.__hm_ - __p;
285 __p = const_cast<char_type*>(__str_.data());
287 this->setg(__p + __binp, __p + __ninp, __p + __einp);
[all …]
H A Dfilesystem520 void permissions(perms __p) noexcept { __prms_ = __p; }
762 _LIBCPP_INLINE_VISIBILITY path(const path& __p) : __pn_(__p.__pn_) {}
763 _LIBCPP_INLINE_VISIBILITY path(path&& __p) noexcept
764 : __pn_(_VSTD::move(__p.__pn_)) {}
793 path& operator=(const path& __p) {
794 __pn_ = __p.__pn_;
799 path& operator=(path&& __p) noexcept {
800 __pn_ = _VSTD::move(__p.__pn_);
845 path& operator/=(const path& __p) {
846 if (__p.is_absolute()) {
[all …]

12345678910>>...16