Home
last modified time | relevance | path

Searched refs:__base (Results 1 – 25 of 171) sorted by relevance

1234567

/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 Dios_base.h908 boolalpha(ios_base& __base) in _GLIBCXX_VISIBILITY()
910 __base.setf(ios_base::boolalpha); in _GLIBCXX_VISIBILITY()
911 return __base; in _GLIBCXX_VISIBILITY()
916 noboolalpha(ios_base& __base) in _GLIBCXX_VISIBILITY()
918 __base.unsetf(ios_base::boolalpha); in _GLIBCXX_VISIBILITY()
919 return __base; in _GLIBCXX_VISIBILITY()
924 showbase(ios_base& __base) in _GLIBCXX_VISIBILITY()
926 __base.setf(ios_base::showbase); in _GLIBCXX_VISIBILITY()
927 return __base; in _GLIBCXX_VISIBILITY()
932 noshowbase(ios_base& __base) in _GLIBCXX_VISIBILITY()
[all …]
H A Dsstream.tcc96 char_type* __base = const_cast<char_type*>(_M_string.data()); in overflow() local
97 _M_pbump(__base, __base + __capacity, this->pptr() - this->pbase()); in overflow()
102 this->setg(__base, __base + __nget, __base + __eget + 1); in overflow()
246 _M_sync(char_type* __base, __size_type __i, __size_type __o) in _M_sync() argument
250 char_type* __endg = __base + _M_string.size(); in _M_sync()
251 char_type* __endp = __base + _M_string.capacity(); in _M_sync()
253 if (__base != _M_string.data()) in _M_sync()
262 this->setg(__base, __base + __i, __endg); in _M_sync()
265 _M_pbump(__base, __endp, __o); in _M_sync()
H A Dcharconv.h47 __to_chars_len(_Tp __value, int __base = 10) noexcept in _GLIBCXX_VISIBILITY()
53 const unsigned __b2 = __base * __base; in _GLIBCXX_VISIBILITY()
54 const unsigned __b3 = __b2 * __base; in _GLIBCXX_VISIBILITY()
55 const unsigned long __b4 = __b3 * __base; in _GLIBCXX_VISIBILITY()
58 if (__value < (unsigned)__base) return __n; in _GLIBCXX_VISIBILITY()
/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 Dios_base.h908 boolalpha(ios_base& __base) in _GLIBCXX_VISIBILITY()
910 __base.setf(ios_base::boolalpha); in _GLIBCXX_VISIBILITY()
911 return __base; in _GLIBCXX_VISIBILITY()
916 noboolalpha(ios_base& __base) in _GLIBCXX_VISIBILITY()
918 __base.unsetf(ios_base::boolalpha); in _GLIBCXX_VISIBILITY()
919 return __base; in _GLIBCXX_VISIBILITY()
924 showbase(ios_base& __base) in _GLIBCXX_VISIBILITY()
926 __base.setf(ios_base::showbase); in _GLIBCXX_VISIBILITY()
927 return __base; in _GLIBCXX_VISIBILITY()
932 noshowbase(ios_base& __base) in _GLIBCXX_VISIBILITY()
[all …]
H A Dsstream.tcc96 char_type* __base = const_cast<char_type*>(_M_string.data()); in overflow() local
97 _M_pbump(__base, __base + __capacity, this->pptr() - this->pbase()); in overflow()
102 this->setg(__base, __base + __nget, __base + __eget + 1); in overflow()
246 _M_sync(char_type* __base, __size_type __i, __size_type __o) in _M_sync() argument
250 char_type* __endg = __base + _M_string.size(); in _M_sync()
251 char_type* __endp = __base + _M_string.capacity(); in _M_sync()
253 if (__base != _M_string.data()) in _M_sync()
262 this->setg(__base, __base + __i, __endg); in _M_sync()
265 _M_pbump(__base, __endp, __o); in _M_sync()
H A Dcharconv.h47 __to_chars_len(_Tp __value, int __base = 10) noexcept in _GLIBCXX_VISIBILITY()
53 const unsigned __b2 = __base * __base; in _GLIBCXX_VISIBILITY()
54 const unsigned __b3 = __b2 * __base; in _GLIBCXX_VISIBILITY()
55 const unsigned long __b4 = __b3 * __base; in _GLIBCXX_VISIBILITY()
58 if (__value < (unsigned)__base) return __n; in _GLIBCXX_VISIBILITY()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Ddeque1211 typedef __deque_base<value_type, allocator_type> __base;
1213 typedef typename __base::__alloc_traits __alloc_traits;
1214 typedef typename __base::reference reference;
1215 typedef typename __base::const_reference const_reference;
1216 typedef typename __base::iterator iterator;
1217 typedef typename __base::const_iterator const_iterator;
1218 typedef typename __base::size_type size_type;
1219 typedef typename __base::difference_type difference_type;
1221 typedef typename __base::pointer pointer;
1222 typedef typename __base::const_pointer const_pointer;
[all …]
H A D__functional_0322 template<class _Fp> class __base;
25 class __base<_Rp()>
27 __base(const __base&);
28 __base& operator=(const __base&);
30 __base() {}
31 virtual ~__base() {}
32 virtual __base* __clone() const = 0;
33 virtual void __clone(__base*) const = 0;
44 class __base<_Rp(_A0)>
46 __base(const __base&);
[all …]
H A Dlimits447 typedef __libcpp_numeric_limits<typename remove_cv<_Tp>::type> __base;
448 typedef typename __base::type type;
450 static _LIBCPP_CONSTEXPR const bool is_specialized = __base::is_specialized;
451 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type min() _NOEXCEPT {return __base::min();}
452 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type max() _NOEXCEPT {return __base::max();}
453 …_LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type lowest() _NOEXCEPT {return __base::lowest(…
455 static _LIBCPP_CONSTEXPR const int digits = __base::digits;
456 static _LIBCPP_CONSTEXPR const int digits10 = __base::digits10;
457 static _LIBCPP_CONSTEXPR const int max_digits10 = __base::max_digits10;
458 static _LIBCPP_CONSTEXPR const bool is_signed = __base::is_signed;
[all …]
H A Dshared_mutex182 __shared_mutex_base __base;
184 _LIBCPP_INLINE_VISIBILITY shared_mutex() : __base() {}
191 _LIBCPP_INLINE_VISIBILITY void lock() { return __base.lock(); }
192 _LIBCPP_INLINE_VISIBILITY bool try_lock() { return __base.try_lock(); }
193 _LIBCPP_INLINE_VISIBILITY void unlock() { return __base.unlock(); }
196 _LIBCPP_INLINE_VISIBILITY void lock_shared() { return __base.lock_shared(); }
197 _LIBCPP_INLINE_VISIBILITY bool try_lock_shared() { return __base.try_lock_shared(); }
198 _LIBCPP_INLINE_VISIBILITY void unlock_shared() { return __base.unlock_shared(); }
201 // _LIBCPP_INLINE_VISIBILITY native_handle_type native_handle() { return __base::unlock_shared(…
208 __shared_mutex_base __base;
[all …]
H A Dcharconv342 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base,
352 return __to_chars_integral(__first, __last, __x, __base, false_type());
357 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base,
360 if (__base == 10)
366 auto __c = __value % __base;
367 __value /= __base;
392 to_chars(char* __first, char* __last, _Tp __value, int __base)
394 _LIBCPP_ASSERT(2 <= __base && __base <= 36, "base not in [2, 36]");
395 return __to_chars_integral(__first, __last, __value, __base,
456 __in_pattern(_Tp __c, int __base)
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Ddeque1211 typedef __deque_base<value_type, allocator_type> __base;
1213 typedef typename __base::__alloc_traits __alloc_traits;
1214 typedef typename __base::reference reference;
1215 typedef typename __base::const_reference const_reference;
1216 typedef typename __base::iterator iterator;
1217 typedef typename __base::const_iterator const_iterator;
1218 typedef typename __base::size_type size_type;
1219 typedef typename __base::difference_type difference_type;
1221 typedef typename __base::pointer pointer;
1222 typedef typename __base::const_pointer const_pointer;
[all …]
H A D__functional_0322 template<class _Fp> class __base;
25 class __base<_Rp()>
27 __base(const __base&);
28 __base& operator=(const __base&);
30 __base() {}
31 virtual ~__base() {}
32 virtual __base* __clone() const = 0;
33 virtual void __clone(__base*) const = 0;
44 class __base<_Rp(_A0)>
46 __base(const __base&);
[all …]
H A Dlimits447 typedef __libcpp_numeric_limits<typename remove_cv<_Tp>::type> __base;
448 typedef typename __base::type type;
450 static _LIBCPP_CONSTEXPR const bool is_specialized = __base::is_specialized;
451 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type min() _NOEXCEPT {return __base::min();}
452 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type max() _NOEXCEPT {return __base::max();}
453 …_LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type lowest() _NOEXCEPT {return __base::lowest(…
455 static _LIBCPP_CONSTEXPR const int digits = __base::digits;
456 static _LIBCPP_CONSTEXPR const int digits10 = __base::digits10;
457 static _LIBCPP_CONSTEXPR const int max_digits10 = __base::max_digits10;
458 static _LIBCPP_CONSTEXPR const bool is_signed = __base::is_signed;
[all …]
H A Dshared_mutex182 __shared_mutex_base __base;
184 _LIBCPP_INLINE_VISIBILITY shared_mutex() : __base() {}
191 _LIBCPP_INLINE_VISIBILITY void lock() { return __base.lock(); }
192 _LIBCPP_INLINE_VISIBILITY bool try_lock() { return __base.try_lock(); }
193 _LIBCPP_INLINE_VISIBILITY void unlock() { return __base.unlock(); }
196 _LIBCPP_INLINE_VISIBILITY void lock_shared() { return __base.lock_shared(); }
197 _LIBCPP_INLINE_VISIBILITY bool try_lock_shared() { return __base.try_lock_shared(); }
198 _LIBCPP_INLINE_VISIBILITY void unlock_shared() { return __base.unlock_shared(); }
201 // _LIBCPP_INLINE_VISIBILITY native_handle_type native_handle() { return __base::unlock_shared(…
208 __shared_mutex_base __base;
[all …]
H A Dcharconv342 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base,
352 return __to_chars_integral(__first, __last, __x, __base, false_type());
357 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base,
360 if (__base == 10)
366 auto __c = __value % __base;
367 __value /= __base;
392 to_chars(char* __first, char* __last, _Tp __value, int __base)
394 _LIBCPP_ASSERT(2 <= __base && __base <= 36, "base not in [2, 36]");
395 return __to_chars_integral(__first, __last, __value, __base,
456 __in_pattern(_Tp __c, int __base)
[all …]
/OK3568_Linux_fs/u-boot/include/
H A Ddiv64.h29 uint32_t __base = (base); \
31 __rem = ((uint64_t)(n)) % __base; \
32 (n) = ((uint64_t)(n)) / __base; \
205 uint32_t __base = (base); \
208 if (__builtin_constant_p(__base) && \
209 is_power_of_2(__base)) { \
210 __rem = (n) & (__base - 1); \
211 (n) >>= ilog2(__base); \
213 __builtin_constant_p(__base) && \
214 __base != 0) { \
[all …]
/OK3568_Linux_fs/kernel/include/asm-generic/
H A Ddiv64.h44 uint32_t __base = (base); \
46 __rem = ((uint64_t)(n)) % __base; \
47 (n) = ((uint64_t)(n)) / __base; \
224 uint32_t __base = (base); \
227 if (__builtin_constant_p(__base) && \
228 is_power_of_2(__base)) { \
229 __rem = (n) & (__base - 1); \
230 (n) >>= ilog2(__base); \
232 __builtin_constant_p(__base) && \
233 __base != 0) { \
[all …]
/OK3568_Linux_fs/kernel/arch/x86/include/asm/
H A Ddiv64.h24 unsigned long __upper, __low, __high, __mod, __base; \
25 __base = (base); \
26 if (__builtin_constant_p(__base) && is_power_of_2(__base)) { \
27 __mod = n & (__base - 1); \
28 n >>= ilog2(__base); \
33 __upper = __high % (__base); \
34 __high = __high / (__base); \
37 : "rm" (__base), "0" (__low), "1" (__upper)); \
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/support/solaris/
H A Dxlocale.h38 int __base, locale_t __loc) { in strtoll_l() argument
39 return strtoll(__nptr, __endptr, __base); in strtoll_l()
43 int __base, locale_t __loc) { in strtol_l() argument
44 return strtol(__nptr, __endptr, __base); in strtol_l()
48 int __base, locale_t __loc) { in strtoull_l() argument
49 return strtoull(__nptr, __endptr, __base); in strtoull_l()
53 int __base, locale_t __loc) { in strtoul_l() argument
54 return strtoul(__nptr, __endptr, __base); in strtoul_l()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/support/solaris/
H A Dxlocale.h38 int __base, locale_t __loc) { in strtoll_l() argument
39 return strtoll(__nptr, __endptr, __base); in strtoll_l()
43 int __base, locale_t __loc) { in strtol_l() argument
44 return strtol(__nptr, __endptr, __base); in strtol_l()
48 int __base, locale_t __loc) { in strtoull_l() argument
49 return strtoull(__nptr, __endptr, __base); in strtoull_l()
53 int __base, locale_t __loc) { in strtoul_l() argument
54 return strtoul(__nptr, __endptr, __base); in strtoul_l()
/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/debug/
H A Dmacros.h348 __gnu_debug::__base(_First), \
349 __gnu_debug::__base(_Last)), \
360 __gnu_debug::__base(_First), \
361 __gnu_debug::__base(_Last), _Pred), \
371 __gnu_debug::__check_sorted_set(__gnu_debug::__base(_First1), \
372 __gnu_debug::__base(_Last1), _First2),\
381 __gnu_debug::__check_sorted_set(__gnu_debug::__base(_First1), \
382 __gnu_debug::__base(_Last1), \
394 __gnu_debug::__base(_First), \
395 __gnu_debug::__base(_Last), _Value), \
[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/debug/
H A Dmacros.h348 __gnu_debug::__base(_First), \
349 __gnu_debug::__base(_Last)), \
360 __gnu_debug::__base(_First), \
361 __gnu_debug::__base(_Last), _Pred), \
371 __gnu_debug::__check_sorted_set(__gnu_debug::__base(_First1), \
372 __gnu_debug::__base(_Last1), _First2),\
381 __gnu_debug::__check_sorted_set(__gnu_debug::__base(_First1), \
382 __gnu_debug::__base(_Last1), \
394 __gnu_debug::__base(_First), \
395 __gnu_debug::__base(_Last), _Value), \
[all …]
/OK3568_Linux_fs/kernel/include/net/netfilter/
H A Dnf_tables_offload.h78 #define NFT_OFFLOAD_MATCH_FLAGS(__key, __base, __field, __len, __reg, __flags) \ argument
80 offsetof(struct nft_flow_key, __base); \
82 offsetof(struct nft_flow_key, __base.__field); \
87 #define NFT_OFFLOAD_MATCH(__key, __base, __field, __len, __reg) \ argument
88 NFT_OFFLOAD_MATCH_FLAGS(__key, __base, __field, __len, __reg, 0)
90 #define NFT_OFFLOAD_MATCH_EXACT(__key, __base, __field, __len, __reg) \ argument
91 NFT_OFFLOAD_MATCH(__key, __base, __field, __len, __reg) \
/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 Dcharconv110 __to_chars_len(_Tp __value, int __base /* = 10 */) noexcept;
120 __to_chars(char* __first, char* __last, _Tp __val, int __base) noexcept
127 const unsigned __len = __to_chars_len(__val, __base);
145 while (__val >= (unsigned)__base)
147 auto const __quo = __val / __base;
148 auto const __rem = __val % __base;
323 __to_chars_i(char* __first, char* __last, _Tp __value, int __base = 10)
325 __glibcxx_assert(2 <= __base && __base <= 36);
347 switch (__base)
358 return __detail::__to_chars(__first, __last, __unsigned_val, __base);
[all …]

1234567