| /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 D | stl_function.h | 235 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 236 noexcept(noexcept(std::forward<_Tp>(__t) + std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY() 237 -> decltype(std::forward<_Tp>(__t) + std::forward<_Up>(__u)) in _GLIBCXX_VISIBILITY() 238 { return std::forward<_Tp>(__t) + std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY() 250 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 251 noexcept(noexcept(std::forward<_Tp>(__t) - std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY() 252 -> decltype(std::forward<_Tp>(__t) - std::forward<_Up>(__u)) in _GLIBCXX_VISIBILITY() 253 { return std::forward<_Tp>(__t) - std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY() 265 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 266 noexcept(noexcept(std::forward<_Tp>(__t) * std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | range_cmp.h | 70 = requires (_Tp&& __t, _Up&& __u) { { __t < __u } -> same_as<bool>; } in _GLIBCXX_VISIBILITY() 73 && (! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY() 74 { operator<(std::forward<_Tp>(__t), std::forward<_Up>(__u)); } in _GLIBCXX_VISIBILITY() 75 && ! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY() 76 { std::forward<_Tp>(__t).operator<(std::forward<_Up>(__u)); }); in _GLIBCXX_VISIBILITY() 90 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 92 { return std::forward<_Tp>(__t) == std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY() 103 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 105 { return !equal_to{}(std::forward<_Tp>(__t), std::forward<_Up>(__u)); } in _GLIBCXX_VISIBILITY() 116 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | unique_lock.h | 109 unique_lock(unique_lock&& __u) noexcept in _GLIBCXX_VISIBILITY() 110 : _M_device(__u._M_device), _M_owns(__u._M_owns) in _GLIBCXX_VISIBILITY() 112 __u._M_device = 0; in _GLIBCXX_VISIBILITY() 113 __u._M_owns = false; in _GLIBCXX_VISIBILITY() 116 unique_lock& operator=(unique_lock&& __u) noexcept in _GLIBCXX_VISIBILITY() 121 unique_lock(std::move(__u)).swap(*this); in _GLIBCXX_VISIBILITY() 123 __u._M_device = 0; in _GLIBCXX_VISIBILITY() 124 __u._M_owns = false; in _GLIBCXX_VISIBILITY() 200 swap(unique_lock& __u) noexcept in _GLIBCXX_VISIBILITY() 202 std::swap(_M_device, __u._M_device); in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | unique_ptr.h | 161 __uniq_ptr_impl(__uniq_ptr_impl&& __u) noexcept in _GLIBCXX_VISIBILITY() 162 : _M_t(std::move(__u._M_t)) in _GLIBCXX_VISIBILITY() 163 { __u._M_ptr() = nullptr; } in _GLIBCXX_VISIBILITY() 165 __uniq_ptr_impl& operator=(__uniq_ptr_impl&& __u) noexcept in _GLIBCXX_VISIBILITY() 167 reset(__u.release()); in _GLIBCXX_VISIBILITY() 168 _M_deleter() = std::forward<_Dp>(__u._M_deleter()); in _GLIBCXX_VISIBILITY() 340 unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept in _GLIBCXX_VISIBILITY() 341 : _M_t(__u.release(), std::forward<_Ep>(__u.get_deleter())) in _GLIBCXX_VISIBILITY() 350 unique_ptr(auto_ptr<_Up>&& __u) noexcept; in _GLIBCXX_VISIBILITY() 386 operator=(unique_ptr<_Up, _Ep>&& __u) noexcept 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 D | stl_function.h | 235 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 236 noexcept(noexcept(std::forward<_Tp>(__t) + std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY() 237 -> decltype(std::forward<_Tp>(__t) + std::forward<_Up>(__u)) in _GLIBCXX_VISIBILITY() 238 { return std::forward<_Tp>(__t) + std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY() 250 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 251 noexcept(noexcept(std::forward<_Tp>(__t) - std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY() 252 -> decltype(std::forward<_Tp>(__t) - std::forward<_Up>(__u)) in _GLIBCXX_VISIBILITY() 253 { return std::forward<_Tp>(__t) - std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY() 265 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 266 noexcept(noexcept(std::forward<_Tp>(__t) * std::forward<_Up>(__u))) in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | range_cmp.h | 70 = requires (_Tp&& __t, _Up&& __u) { { __t < __u } -> same_as<bool>; } in _GLIBCXX_VISIBILITY() 73 && (! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY() 74 { operator<(std::forward<_Tp>(__t), std::forward<_Up>(__u)); } in _GLIBCXX_VISIBILITY() 75 && ! requires(_Tp&& __t, _Up&& __u) in _GLIBCXX_VISIBILITY() 76 { std::forward<_Tp>(__t).operator<(std::forward<_Up>(__u)); }); in _GLIBCXX_VISIBILITY() 90 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 92 { return std::forward<_Tp>(__t) == std::forward<_Up>(__u); } in _GLIBCXX_VISIBILITY() 103 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() 105 { return !equal_to{}(std::forward<_Tp>(__t), std::forward<_Up>(__u)); } in _GLIBCXX_VISIBILITY() 116 operator()(_Tp&& __t, _Up&& __u) const in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | unique_lock.h | 109 unique_lock(unique_lock&& __u) noexcept in _GLIBCXX_VISIBILITY() 110 : _M_device(__u._M_device), _M_owns(__u._M_owns) in _GLIBCXX_VISIBILITY() 112 __u._M_device = 0; in _GLIBCXX_VISIBILITY() 113 __u._M_owns = false; in _GLIBCXX_VISIBILITY() 116 unique_lock& operator=(unique_lock&& __u) noexcept in _GLIBCXX_VISIBILITY() 121 unique_lock(std::move(__u)).swap(*this); in _GLIBCXX_VISIBILITY() 123 __u._M_device = 0; in _GLIBCXX_VISIBILITY() 124 __u._M_owns = false; in _GLIBCXX_VISIBILITY() 200 swap(unique_lock& __u) noexcept in _GLIBCXX_VISIBILITY() 202 std::swap(_M_device, __u._M_device); in _GLIBCXX_VISIBILITY() [all …]
|
| H A D | unique_ptr.h | 161 __uniq_ptr_impl(__uniq_ptr_impl&& __u) noexcept in _GLIBCXX_VISIBILITY() 162 : _M_t(std::move(__u._M_t)) in _GLIBCXX_VISIBILITY() 163 { __u._M_ptr() = nullptr; } in _GLIBCXX_VISIBILITY() 165 __uniq_ptr_impl& operator=(__uniq_ptr_impl&& __u) noexcept in _GLIBCXX_VISIBILITY() 167 reset(__u.release()); in _GLIBCXX_VISIBILITY() 168 _M_deleter() = std::forward<_Dp>(__u._M_deleter()); in _GLIBCXX_VISIBILITY() 340 unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept in _GLIBCXX_VISIBILITY() 341 : _M_t(__u.release(), std::forward<_Ep>(__u.get_deleter())) in _GLIBCXX_VISIBILITY() 350 unique_ptr(auto_ptr<_Up>&& __u) noexcept; in _GLIBCXX_VISIBILITY() 386 operator=(unique_ptr<_Up, _Ep>&& __u) noexcept in _GLIBCXX_VISIBILITY() [all …]
|
| /OK3568_Linux_fs/kernel/tools/arch/arm64/include/asm/ |
| H A D | barrier.h | 29 union { typeof(*p) __val; char __c[1]; } __u = \ 36 : "r" (*(__u8_alias_t *)__u.__c) \ 42 : "r" (*(__u16_alias_t *)__u.__c) \ 48 : "r" (*(__u32_alias_t *)__u.__c) \ 54 : "r" (*(__u64_alias_t *)__u.__c) \ 66 union { typeof(*p) __val; char __c[1]; } __u = \ 72 : "=r" (*(__u8_alias_t *)__u.__c) \ 77 : "=r" (*(__u16_alias_t *)__u.__c) \ 82 : "=r" (*(__u32_alias_t *)__u.__c) \ 87 : "=r" (*(__u64_alias_t *)__u.__c) \ [all …]
|
| /OK3568_Linux_fs/kernel/arch/parisc/include/asm/ |
| H A D | barrier.h | 36 union { typeof(*p) __val; char __c[1]; } __u = \ 42 : : "r"(*(__u8 *)__u.__c), "r"(__p) \ 47 : : "r"(*(__u16 *)__u.__c), "r"(__p) \ 52 : : "r"(*(__u32 *)__u.__c), "r"(__p) \ 58 : : "r"(*(__u64 *)__u.__c), "r"(__p) \ 66 union { typeof(*p) __val; char __c[1]; } __u; \ 72 : "=r"(*(__u8 *)__u.__c) : "r"(__p) \ 77 : "=r"(*(__u16 *)__u.__c) : "r"(__p) \ 82 : "=r"(*(__u32 *)__u.__c) : "r"(__p) \ 88 : "=r"(*(__u64 *)__u.__c) : "r"(__p) \ [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm64/include/asm/ |
| H A D | barrier.h | 114 union { __unqual_scalar_typeof(*p) __val; char __c[1]; } __u = \ 122 : "r" (*(__u8 *)__u.__c) \ 128 : "r" (*(__u16 *)__u.__c) \ 134 : "r" (*(__u32 *)__u.__c) \ 140 : "r" (*(__u64 *)__u.__c) \ 148 union { __unqual_scalar_typeof(*p) __val; char __c[1]; } __u; \ 155 : "=r" (*(__u8 *)__u.__c) \ 160 : "=r" (*(__u16 *)__u.__c) \ 165 : "=r" (*(__u32 *)__u.__c) \ 170 : "=r" (*(__u64 *)__u.__c) \ [all …]
|
| H A D | rwonce.h | 40 union { __unqual_scalar_typeof(*__x) __val; char __c[1]; } __u; \ 44 : "=r" (*(__u8 *)__u.__c) \ 49 : "=r" (*(__u16 *)__u.__c) \ 54 : "=r" (*(__u32 *)__u.__c) \ 59 : "=r" (*(__u64 *)__u.__c) \ 65 atomic ? (typeof(*__x))__u.__val : (*(volatile typeof(__x))__x);\
|
| /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/ |
| H A D | concepts | 175 && requires(_Tp&& __t, _Up&& __u) { 176 swap(static_cast<_Tp&&>(__t), static_cast<_Up&&>(__u)); 200 operator()(_Tp&& __t, _Up&& __u) const 204 swap(static_cast<_Tp&&>(__t), static_cast<_Up&&>(__u)); 208 __t = static_cast<remove_reference_t<_Tp>&&>(__u); 209 __u = static_cast<remove_reference_t<_Tp>&&>(__tmp); 239 && requires(_Tp&& __t, _Up&& __u) { 241 ranges::swap(static_cast<_Up&&>(__u), static_cast<_Up&&>(__u)); 242 ranges::swap(static_cast<_Tp&&>(__t), static_cast<_Up&&>(__u)); 243 ranges::swap(static_cast<_Up&&>(__u), static_cast<_Tp&&>(__t)); [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/ |
| H A D | concepts | 175 && requires(_Tp&& __t, _Up&& __u) { 176 swap(static_cast<_Tp&&>(__t), static_cast<_Up&&>(__u)); 200 operator()(_Tp&& __t, _Up&& __u) const 204 swap(static_cast<_Tp&&>(__t), static_cast<_Up&&>(__u)); 208 __t = static_cast<remove_reference_t<_Tp>&&>(__u); 209 __u = static_cast<remove_reference_t<_Tp>&&>(__tmp); 239 && requires(_Tp&& __t, _Up&& __u) { 241 ranges::swap(static_cast<_Up&&>(__u), static_cast<_Up&&>(__u)); 242 ranges::swap(static_cast<_Tp&&>(__t), static_cast<_Up&&>(__u)); 243 ranges::swap(static_cast<_Up&&>(__u), static_cast<_Tp&&>(__t)); [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/ |
| H A D | propagate_const | 87 __to_raw_pointer(_Up* __u) 88 { return __u; } 92 __to_raw_pointer(_Up& __u) 93 { return __u.get(); } 97 __to_raw_pointer(const _Up* __u) 98 { return __u; } 102 __to_raw_pointer(const _Up& __u) 103 { return __u.get(); } 136 constexpr propagate_const(_Up&& __u) 137 : _M_t(std::forward<_Up>(__u)) [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/ |
| H A D | propagate_const | 87 __to_raw_pointer(_Up* __u) 88 { return __u; } 92 __to_raw_pointer(_Up& __u) 93 { return __u.get(); } 97 __to_raw_pointer(const _Up* __u) 98 { return __u; } 102 __to_raw_pointer(const _Up& __u) 103 { return __u.get(); } 136 constexpr propagate_const(_Up&& __u) 137 : _M_t(std::forward<_Up>(__u)) [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/libc/usr/include/bits/ |
| H A D | stdlib-bsearch.h | 23 size_t __l, __u, __idx; in bsearch() local 28 __u = __nmemb; in bsearch() 29 while (__l < __u) in bsearch() 31 __idx = (__l + __u) / 2; in bsearch() 35 __u = __idx; in bsearch()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/bits/ |
| H A D | stdlib-bsearch.h | 23 size_t __l, __u, __idx; in bsearch() local 28 __u = __nmemb; in bsearch() 29 while (__l < __u) in bsearch() 31 __idx = (__l + __u) / 2; in bsearch() 35 __u = __idx; in bsearch()
|
| /OK3568_Linux_fs/kernel/tools/virtio/ringtest/ |
| H A D | main.h | 180 union { typeof(x) __val; char __c[1]; } __u; \ 181 __read_once_size(&(x), __u.__c, sizeof(x)); \ 183 __u.__val; \ 188 union { typeof(x) __val; char __c[1]; } __u = \ 190 __write_once_size(&(x), __u.__c, sizeof(x)); \ 191 __u.__val; \
|
| /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/tr1/ |
| H A D | random.tcc | 195 _UIntType __a, int __u, int __s, 198 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, 202 _UIntType __a, int __u, int __s, 205 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, 209 _UIntType __a, int __u, int __s, 212 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, 216 _UIntType __a, int __u, int __s, 219 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, 223 _UIntType __a, int __u, int __s, 226 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, [all …]
|
| H A D | tuple | 298 static bool __eq(const _Tp& __t, const _Up& __u) 300 return (get<__i>(__t) == get<__i>(__u) && 301 __tuple_compare<0, __i+1, __j, _Tp, _Up>::__eq(__t, __u)); 304 static bool __less(const _Tp& __t, const _Up& __u) 306 return ((get<__i>(__t) < get<__i>(__u)) 307 || !(get<__i>(__u) < get<__i>(__t)) && 308 __tuple_compare<0, __i+1, __j, _Tp, _Up>::__less(__t, __u)); 325 const tuple<_UElements...>& __u) 330 0, tuple_size<_Tp>::value, _Tp, _Up>::__eq(__t, __u)); 336 const tuple<_UElements...>& __u) [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/tr1/ |
| H A D | random.tcc | 195 _UIntType __a, int __u, int __s, 198 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, 202 _UIntType __a, int __u, int __s, 205 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, 209 _UIntType __a, int __u, int __s, 212 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, 216 _UIntType __a, int __u, int __s, 219 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, 223 _UIntType __a, int __u, int __s, 226 mersenne_twister<_UIntType, __w, __n, __m, __r, __a, __u, __s, [all …]
|
| H A D | tuple | 298 static bool __eq(const _Tp& __t, const _Up& __u) 300 return (get<__i>(__t) == get<__i>(__u) && 301 __tuple_compare<0, __i+1, __j, _Tp, _Up>::__eq(__t, __u)); 304 static bool __less(const _Tp& __t, const _Up& __u) 306 return ((get<__i>(__t) < get<__i>(__u)) 307 || !(get<__i>(__u) < get<__i>(__t)) && 308 __tuple_compare<0, __i+1, __j, _Tp, _Up>::__less(__t, __u)); 325 const tuple<_UElements...>& __u) 330 0, tuple_size<_Tp>::value, _Tp, _Up>::__eq(__t, __u)); 336 const tuple<_UElements...>& __u) [all …]
|
| /OK3568_Linux_fs/kernel/tools/include/linux/ |
| H A D | compiler.h | 180 union { typeof(x) __val; char __c[1]; } __u = \ 182 __read_once_size(&(x), __u.__c, sizeof(x)); \ 183 __u.__val; \ 188 union { typeof(x) __val; char __c[1]; } __u = \ 190 __write_once_size(&(x), __u.__c, sizeof(x)); \ 191 __u.__val; \
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/ |
| H A D | __hash_table | 1007 __hash_table(const __hash_table& __u); 1008 __hash_table(const __hash_table& __u, const allocator_type& __a); 1010 __hash_table(__hash_table&& __u) 1017 __hash_table(__hash_table&& __u, const allocator_type& __a); 1021 __hash_table& operator=(const __hash_table& __u); 1024 __hash_table& operator=(__hash_table&& __u) 1262 void swap(__hash_table& __u) 1368 void __copy_assign_alloc(const __hash_table& __u) 1369 {__copy_assign_alloc(__u, integral_constant<bool, 1371 void __copy_assign_alloc(const __hash_table& __u, true_type); [all …]
|