/external/libcxx/include/ |
D | deque | 1199 typedef __deque_base<value_type, allocator_type> __base; 1201 typedef typename __base::__alloc_traits __alloc_traits; 1202 typedef typename __base::reference reference; 1203 typedef typename __base::const_reference const_reference; 1204 typedef typename __base::iterator iterator; 1205 typedef typename __base::const_iterator const_iterator; 1206 typedef typename __base::size_type size_type; 1207 typedef typename __base::difference_type difference_type; 1209 typedef typename __base::pointer pointer; 1210 typedef typename __base::const_pointer const_pointer; [all …]
|
D | limits | 445 typedef __libcpp_numeric_limits<typename remove_cv<_Tp>::type> __base; 446 typedef typename __base::type type; 448 static _LIBCPP_CONSTEXPR const bool is_specialized = __base::is_specialized; 449 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type min() _NOEXCEPT {return __base::min();} 450 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type max() _NOEXCEPT {return __base::max();} 451 …_LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type lowest() _NOEXCEPT {return __base::lowest(… 453 static _LIBCPP_CONSTEXPR const int digits = __base::digits; 454 static _LIBCPP_CONSTEXPR const int digits10 = __base::digits10; 455 static _LIBCPP_CONSTEXPR const int max_digits10 = __base::max_digits10; 456 static _LIBCPP_CONSTEXPR const bool is_signed = __base::is_signed; [all …]
|
D | __functional_03 | 22 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 …]
|
D | shared_mutex | 180 __shared_mutex_base __base; 182 _LIBCPP_INLINE_VISIBILITY shared_mutex() : __base() {} 189 _LIBCPP_INLINE_VISIBILITY void lock() { return __base.lock(); } 190 _LIBCPP_INLINE_VISIBILITY bool try_lock() { return __base.try_lock(); } 191 _LIBCPP_INLINE_VISIBILITY void unlock() { return __base.unlock(); } 194 _LIBCPP_INLINE_VISIBILITY void lock_shared() { return __base.lock_shared(); } 195 _LIBCPP_INLINE_VISIBILITY bool try_lock_shared() { return __base.try_lock_shared(); } 196 _LIBCPP_INLINE_VISIBILITY void unlock_shared() { return __base.unlock_shared(); } 199 // _LIBCPP_INLINE_VISIBILITY native_handle_type native_handle() { return __base::unlock_shared(… 206 __shared_mutex_base __base; [all …]
|
D | set | 416 typedef __tree<value_type, value_compare, allocator_type> __base; 418 typedef typename __base::__node_holder __node_holder; 420 __base __tree_; 423 typedef typename __base::pointer pointer; 424 typedef typename __base::const_pointer const_pointer; 425 typedef typename __base::size_type size_type; 426 typedef typename __base::difference_type difference_type; 427 typedef typename __base::const_iterator iterator; 428 typedef typename __base::const_iterator const_iterator; 492 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value) [all …]
|
D | map | 841 typedef __tree<__value_type, __vc, __allocator_type> __base; 842 typedef typename __base::__node_traits __node_traits; 845 __base __tree_; 852 typedef __map_iterator<typename __base::iterator> iterator; 853 typedef __map_const_iterator<typename __base::const_iterator> const_iterator; 874 : __tree_(__vc(__comp), typename __base::allocator_type(__a)) {} 889 : __tree_(__vc(__comp), typename __base::allocator_type(__a)) 928 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value) 937 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value) 952 : __tree_(__vc(__comp), typename __base::allocator_type(__a)) [all …]
|
D | variant | 412 struct __base { 425 return __base::__get_alt<_Ip>(_VSTD::forward<_Vp>(__v).__impl); 433 struct __base { 491 __access::__base::__get_alt<_Is>(static_cast<_Vs>(__vs))...); 511 return __base::__make_farray(__make_fdiagonal_impl<_Is, _Fp, _Vs...>()...); 533 return __base::__make_farray(__make_fmatrix_impl<_Fp, _Vs...>( 550 return __base::__visit_alt_at(__index, 559 return __base::__visit_alt(_VSTD::forward<_Visitor>(__visitor), 673 class _LIBCPP_TEMPLATE_VIS __base { 678 explicit constexpr __base(__valueless_t tag) noexcept [all …]
|
D | future | 1834 typedef __packaged_task_base<_Rp(_ArgTypes...)> __base; 1836 __base* __f_; 1868 else if (__f.__f_ == (__base*)&__f.__buf_) 1870 __f_ = (__base*)&__buf_; 1889 __f_ = (__base*)&__buf_; 1897 unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1)); 1913 __f_ = (__base*)&__buf_; 1921 unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1)); 1932 if (__f_ == (__base*)&__buf_) 1939 else if (__f.__f_ == (__base*)&__f.__buf_) [all …]
|
D | functional | 1461 template<class _Fp> class __base; 1464 class __base<_Rp(_ArgTypes...)> 1466 __base(const __base&); 1467 __base& operator=(const __base&); 1469 _LIBCPP_INLINE_VISIBILITY __base() {} 1470 _LIBCPP_INLINE_VISIBILITY virtual ~__base() {} 1471 virtual __base* __clone() const = 0; 1472 virtual void __clone(__base*) const = 0; 1486 : public __base<_Rp(_ArgTypes...)> 1508 virtual __base<_Rp(_ArgTypes...)>* __clone() const; [all …]
|
D | optional | 282 using __base = __optional_destruct_base<_Tp>; 284 using __base::__base; 584 using __base = __optional_move_assign_base<_Tp>; 690 : __base(in_place, _VSTD::forward<_Args>(__args)...) {} 697 : __base(in_place, __il, _VSTD::forward<_Args>(__args)...) {} 704 : __base(in_place, _VSTD::forward<_Up>(__v)) {} 711 : __base(in_place, _VSTD::forward<_Up>(__v)) {} 927 using __base::has_value; 928 using __base::__get; 986 using __base::reset;
|
D | vector | 451 typedef __vector_base<_Tp, _Allocator> __base; 457 typedef typename __base::__alloc_traits __alloc_traits; 458 typedef typename __base::reference reference; 459 typedef typename __base::const_reference const_reference; 460 typedef typename __base::size_type size_type; 461 typedef typename __base::difference_type difference_type; 462 typedef typename __base::pointer pointer; 463 typedef typename __base::const_pointer const_pointer; 485 : __base(__a) 636 {return __base::capacity();} [all …]
|
D | atomic | 1006 typedef __atomic_base<_Tp, false> __base; 1010 _LIBCPP_CONSTEXPR __atomic_base(_Tp __d) _NOEXCEPT : __base(__d) {} 1087 typedef __atomic_base<_Tp> __base; 1091 _LIBCPP_CONSTEXPR atomic(_Tp __d) _NOEXCEPT : __base(__d) {} 1095 {__base::store(__d); return __d;} 1098 {__base::store(__d); return __d;} 1107 typedef __atomic_base<_Tp*> __base; 1111 _LIBCPP_CONSTEXPR atomic(_Tp* __d) _NOEXCEPT : __base(__d) {} 1115 {__base::store(__d); return __d;} 1118 {__base::store(__d); return __d;}
|
D | locale | 385 static int __stage2_int_loop(_CharT __ct, int __base, char* __a, char*& __a_end, 404 static int __stage2_int_loop(_CharT __ct, int __base, char* __a, char*& __a_end, 454 __num_get<_CharT>::__stage2_int_loop(_CharT __ct, int __base, char* __a, char*& __a_end, 458 __num_get<_CharT>::__stage2_int_loop(_CharT __ct, int __base, char* __a, char*& __a_end, 482 switch (__base) 486 if (__f >= __base) 732 ios_base::iostate& __err, int __base) 739 long long __ll = strtoll_l(__a, &__p2, __base, _LIBCPP_GET_C_LOCALE); 767 ios_base::iostate& __err, int __base) 779 unsigned long long __ll = strtoull_l(__a, &__p2, __base, _LIBCPP_GET_C_LOCALE); [all …]
|
D | iomanip | 168 setbase(int __base) 170 return __iom_t3(__base);
|
D | string | 3907 _LIBCPP_FUNC_VIS int stoi (const string& __str, size_t* __idx = 0, int __base = 10); 3908 _LIBCPP_FUNC_VIS long stol (const string& __str, size_t* __idx = 0, int __base = 10); 3909 _LIBCPP_FUNC_VIS unsigned long stoul (const string& __str, size_t* __idx = 0, int __base = 10); 3910 _LIBCPP_FUNC_VIS long long stoll (const string& __str, size_t* __idx = 0, int __base = 10); 3911 _LIBCPP_FUNC_VIS unsigned long long stoull(const string& __str, size_t* __idx = 0, int __base = 10); 3927 _LIBCPP_FUNC_VIS int stoi (const wstring& __str, size_t* __idx = 0, int __base = 10… 3928 _LIBCPP_FUNC_VIS long stol (const wstring& __str, size_t* __idx = 0, int __base = 10… 3929 _LIBCPP_FUNC_VIS unsigned long stoul (const wstring& __str, size_t* __idx = 0, int __base = 10… 3930 _LIBCPP_FUNC_VIS long long stoll (const wstring& __str, size_t* __idx = 0, int __base = 10… 3931 _LIBCPP_FUNC_VIS unsigned long long stoull(const wstring& __str, size_t* __idx = 0, int __base = 10…
|
D | list | 262 typedef __list_node_base<_Tp, _VoidPtr> __base; 263 typedef typename __base::__link_pointer __link_pointer; 267 return static_cast<__link_pointer>(__base::__self());
|
D | __tree | 679 typedef __tree_node_base_types<_VoidPtr> __base; 693 typedef typename __base::__end_node_pointer __iter_pointer; 697 typename __base::__end_node_pointer,
|
D | random | 3650 _RealType __base = _Rp; 3652 for (size_t __i = 1; __i < __k; ++__i, __base *= _Rp) 3653 _Sp += (__g() - _URNG::min()) * __base; 3654 return _Sp / __base;
|
/external/libcxx/include/support/solaris/ |
D | xlocale.h | 38 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()
|
/external/libcxx/src/ |
D | shared_mutex.cpp | 107 shared_timed_mutex::shared_timed_mutex() : __base() {} in shared_timed_mutex() 108 void shared_timed_mutex::lock() { return __base.lock(); } in lock() 109 bool shared_timed_mutex::try_lock() { return __base.try_lock(); } in try_lock() 110 void shared_timed_mutex::unlock() { return __base.unlock(); } in unlock() 111 void shared_timed_mutex::lock_shared() { return __base.lock_shared(); } in lock_shared() 112 bool shared_timed_mutex::try_lock_shared() { return __base.try_lock_shared(); } in try_lock_shared() 113 void shared_timed_mutex::unlock_shared() { return __base.unlock_shared(); } in unlock_shared()
|
/external/libcxx/include/support/ibm/ |
D | xlocale.h | 223 int __base, locale_t locale) { in strtoll_l() argument 224 return strtoll(__nptr, __endptr, __base); in strtoll_l() 228 int __base, locale_t locale) { in strtol_l() argument 229 return strtol(__nptr, __endptr, __base); in strtol_l() 238 int __base, locale_t locale) { in strtoull_l() argument 239 return strtoull(__nptr, __endptr, __base); in strtoull_l() 243 int __base, locale_t locale) { in strtoul_l() argument 244 return strtoul(__nptr, __endptr, __base); in strtoul_l()
|
/external/clang/lib/Headers/ |
D | __clang_cuda_cmath.h | 129 __DEVICE__ float pow(float __base, float __exp) { in pow() argument 130 return ::powf(__base, __exp); in pow() 132 __DEVICE__ float pow(float __base, int __iexp) { in pow() argument 133 return ::powif(__base, __iexp); in pow() 135 __DEVICE__ double pow(double __base, int __iexp) { in pow() argument 136 return ::powi(__base, __iexp); in pow()
|
/external/fio/ |
D | filesetup.c | 760 char __base[256]; member 811 strncpy(fm->__base, buf, sizeof(fm->__base) - 1); in get_fs_free_counts() 812 fm->base = basename(fm->__base); in get_fs_free_counts()
|
/external/libcxx/include/experimental/ |
D | filesystem | 1335 path canonical(const path& __p, const path& __base = current_path()) { 1336 return __canonical(__p, __base); 1341 path __base = __current_path(&__ec); 1343 return __canonical(__p, __base, &__ec); 1347 path canonical(const path& __p, const path& __base, error_code& __ec) { 1348 return __canonical(__p, __base, &__ec);
|
/external/valgrind/perf/ |
D | test_input_for_tinycc.c | 56 char **__restrict __endptr, int __base) 60 char **__restrict __endptr, int __base) 68 char **__restrict __endptr, int __base) 73 char **__restrict __endptr, int __base) 82 char **__restrict __endptr, int __base) 87 char **__restrict __endptr, int __base) 103 int __base, int __group) 110 int __base, int __group) 119 int __base, int __group) 128 int __base, int __group) [all …]
|