Home
last modified time | relevance | path

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

12

/external/libcxx/include/
Ddeque1198 typedef __deque_base<value_type, allocator_type> __base;
1200 typedef typename __base::__alloc_traits __alloc_traits;
1201 typedef typename __base::reference reference;
1202 typedef typename __base::const_reference const_reference;
1203 typedef typename __base::iterator iterator;
1204 typedef typename __base::const_iterator const_iterator;
1205 typedef typename __base::size_type size_type;
1206 typedef typename __base::difference_type difference_type;
1208 typedef typename __base::pointer pointer;
1209 typedef typename __base::const_pointer const_pointer;
[all …]
Dlimits444 typedef __libcpp_numeric_limits<typename remove_cv<_Tp>::type> __base;
445 typedef typename __base::type type;
447 static _LIBCPP_CONSTEXPR const bool is_specialized = __base::is_specialized;
448 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type min() _NOEXCEPT {return __base::min();}
449 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type max() _NOEXCEPT {return __base::max();}
450 …_LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type lowest() _NOEXCEPT {return __base::lowest(…
452 static _LIBCPP_CONSTEXPR const int digits = __base::digits;
453 static _LIBCPP_CONSTEXPR const int digits10 = __base::digits10;
454 static _LIBCPP_CONSTEXPR const int max_digits10 = __base::max_digits10;
455 static _LIBCPP_CONSTEXPR const bool is_signed = __base::is_signed;
[all …]
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 …]
Dshared_mutex178 __shared_mutex_base __base;
180 shared_mutex() : __base() {}
187 _LIBCPP_INLINE_VISIBILITY void lock() { return __base.lock(); }
188 _LIBCPP_INLINE_VISIBILITY bool try_lock() { return __base.try_lock(); }
189 _LIBCPP_INLINE_VISIBILITY void unlock() { return __base.unlock(); }
192 _LIBCPP_INLINE_VISIBILITY void lock_shared() { return __base.lock_shared(); }
193 _LIBCPP_INLINE_VISIBILITY bool try_lock_shared() { return __base.try_lock_shared(); }
194 _LIBCPP_INLINE_VISIBILITY void unlock_shared() { return __base.unlock_shared(); }
197 // _LIBCPP_INLINE_VISIBILITY native_handle_type native_handle() { return __base::unlock_shared(…
204 __shared_mutex_base __base;
[all …]
Dset416 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 …]
Dmap841 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)
956 : __tree_(__vc(__comp), typename __base::allocator_type(__a))
[all …]
Dvariant388 struct __base {
401 return __base::__get_alt<_Ip>(_VSTD::forward<_Vp>(__v).__impl);
409 struct __base {
476 __access::__base::__get_alt<_Is>(static_cast<_Vs>(__vs))...);
496 return __base::__make_farray(__make_fdiagonal_impl<_Is, _Fp, _Vs...>()...);
518 return __base::__make_farray(__make_fmatrix_impl<_Fp, _Vs...>(
535 return __base::__visit_alt_at(__index,
544 return __base::__visit_alt(_VSTD::forward<_Visitor>(__visitor),
658 class _LIBCPP_TEMPLATE_VIS __base {
661 explicit constexpr __base(__valueless_t tag) noexcept
[all …]
Dfuture1830 typedef __packaged_task_base<_Rp(_ArgTypes...)> __base;
1832 __base* __f_;
1864 else if (__f.__f_ == (__base*)&__f.__buf_)
1866 __f_ = (__base*)&__buf_;
1885 __f_ = (__base*)&__buf_;
1893 unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
1909 __f_ = (__base*)&__buf_;
1917 unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
1928 if (__f_ == (__base*)&__buf_)
1935 else if (__f.__f_ == (__base*)&__f.__buf_)
[all …]
Dfunctional1452 template<class _Fp> class __base;
1455 class __base<_Rp(_ArgTypes...)>
1457 __base(const __base&);
1458 __base& operator=(const __base&);
1460 _LIBCPP_INLINE_VISIBILITY __base() {}
1461 _LIBCPP_INLINE_VISIBILITY virtual ~__base() {}
1462 virtual __base* __clone() const = 0;
1463 virtual void __clone(__base*) const = 0;
1477 : public __base<_Rp(_ArgTypes...)>
1499 virtual __base<_Rp(_ArgTypes...)>* __clone() const;
[all …]
Doptional277 using __base = __optional_destruct_base<_Tp>;
279 using __base::__base;
503 using __base = __optional_storage<_Tp>;
609 : __base(in_place, _VSTD::forward<_Args>(__args)...) {}
616 : __base(in_place, __il, _VSTD::forward<_Args>(__args)...) {}
623 : __base(in_place, _VSTD::forward<_Up>(__v)) {}
630 : __base(in_place, _VSTD::forward<_Up>(__v)) {}
844 using __base::has_value;
845 using __base::__get;
903 using __base::reset;
Dvector454 typedef __vector_base<_Tp, _Allocator> __base;
460 typedef typename __base::__alloc_traits __alloc_traits;
461 typedef typename __base::reference reference;
462 typedef typename __base::const_reference const_reference;
463 typedef typename __base::size_type size_type;
464 typedef typename __base::difference_type difference_type;
465 typedef typename __base::pointer pointer;
466 typedef typename __base::const_pointer const_pointer;
488 : __base(__a)
635 {return __base::capacity();}
[all …]
Datomic993 typedef __atomic_base<_Tp, false> __base;
997 _LIBCPP_CONSTEXPR __atomic_base(_Tp __d) _NOEXCEPT : __base(__d) {}
1074 typedef __atomic_base<_Tp> __base;
1078 _LIBCPP_CONSTEXPR atomic(_Tp __d) _NOEXCEPT : __base(__d) {}
1082 {__base::store(__d); return __d;}
1085 {__base::store(__d); return __d;}
1094 typedef __atomic_base<_Tp*> __base;
1098 _LIBCPP_CONSTEXPR atomic(_Tp* __d) _NOEXCEPT : __base(__d) {}
1102 {__base::store(__d); return __d;}
1105 {__base::store(__d); return __d;}
Dlocale386 static int __stage2_int_loop(_CharT __ct, int __base, char* __a, char*& __a_end,
422 __num_get<_CharT>::__stage2_int_loop(_CharT __ct, int __base, char* __a, char*& __a_end,
444 switch (__base)
448 if (__f >= __base)
694 ios_base::iostate& __err, int __base)
701 long long __ll = strtoll_l(__a, &__p2, __base, _LIBCPP_GET_C_LOCALE);
729 ios_base::iostate& __err, int __base)
741 unsigned long long __ll = strtoull_l(__a, &__p2, __base, _LIBCPP_GET_C_LOCALE);
858 int __base = this->__get_base(__iob);
880 if (this->__stage2_int_loop(*__b, __base, __a, __a_end, __dc,
[all …]
Diomanip168 setbase(int __base)
170 return __iom_t3(__base);
Dstring3870 _LIBCPP_FUNC_VIS int stoi (const string& __str, size_t* __idx = 0, int __base = 10);
3871 _LIBCPP_FUNC_VIS long stol (const string& __str, size_t* __idx = 0, int __base = 10);
3872 _LIBCPP_FUNC_VIS unsigned long stoul (const string& __str, size_t* __idx = 0, int __base = 10);
3873 _LIBCPP_FUNC_VIS long long stoll (const string& __str, size_t* __idx = 0, int __base = 10);
3874 _LIBCPP_FUNC_VIS unsigned long long stoull(const string& __str, size_t* __idx = 0, int __base = 10);
3890 _LIBCPP_FUNC_VIS int stoi (const wstring& __str, size_t* __idx = 0, int __base = 10…
3891 _LIBCPP_FUNC_VIS long stol (const wstring& __str, size_t* __idx = 0, int __base = 10…
3892 _LIBCPP_FUNC_VIS unsigned long stoul (const wstring& __str, size_t* __idx = 0, int __base = 10…
3893 _LIBCPP_FUNC_VIS long long stoll (const wstring& __str, size_t* __idx = 0, int __base = 10…
3894 _LIBCPP_FUNC_VIS unsigned long long stoull(const wstring& __str, size_t* __idx = 0, int __base = 10…
/external/libcxx/include/support/solaris/
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()
/external/libcxx/src/
Dshared_mutex.cpp107 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/
Dxlocale.h223 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.h129 __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/bison/lib/
Dstdio-impl.h108 # define _base __base
/external/bison/m4/
Dfpending.m447 '(fp->__ptr ? fp->__ptr - fp->__base : 0)' \
/external/libcxx/include/experimental/
Doptional299 typedef __optional_storage<_Tp> __base;
320 : __base(__v) {}
322 : __base(_VSTD::move(__v)) {}
333 : __base(in_place, _VSTD::forward<_Args>(__args)...) {}
344 : __base(in_place, __il, _VSTD::forward<_Args>(__args)...) {}
Dfilesystem1329 path canonical(const path& __p, const path& __base = current_path()) {
1330 return __canonical(__p, __base);
1335 path __base = __current_path(&__ec);
1337 return __canonical(__p, __base, &__ec);
1341 path canonical(const path& __p, const path& __base, error_code& __ec) {
1342 return __canonical(__p, __base, &__ec);
/external/fio/
Dfilesetup.c760 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/valgrind/perf/
Dtest_input_for_tinycc.c56 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 …]

12