Home
last modified time | relevance | path

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

/external/libcxx/include/
Ddeque1167 typedef __deque_base<value_type, allocator_type> __base;
1169 typedef typename __base::__alloc_traits __alloc_traits;
1170 typedef typename __base::reference reference;
1171 typedef typename __base::const_reference const_reference;
1172 typedef typename __base::iterator iterator;
1173 typedef typename __base::const_iterator const_iterator;
1174 typedef typename __base::size_type size_type;
1175 typedef typename __base::difference_type difference_type;
1177 typedef typename __base::pointer pointer;
1178 typedef typename __base::const_pointer const_pointer;
[all …]
Dlimits443 typedef __libcpp_numeric_limits<typename remove_cv<_Tp>::type> __base;
444 typedef typename __base::type type;
446 static _LIBCPP_CONSTEXPR const bool is_specialized = __base::is_specialized;
447 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type min() _NOEXCEPT {return __base::min();}
448 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type max() _NOEXCEPT {return __base::max();}
449 …_LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type lowest() _NOEXCEPT {return __base::lowest(…
451 static _LIBCPP_CONSTEXPR const int digits = __base::digits;
452 static _LIBCPP_CONSTEXPR const int digits10 = __base::digits10;
453 static _LIBCPP_CONSTEXPR const int max_digits10 = __base::max_digits10;
454 static _LIBCPP_CONSTEXPR const bool is_signed = __base::is_signed;
[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 …]
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 …]
Dfunctional1336 template<class _Fp> class __base;
1339 class __base<_Rp(_ArgTypes...)>
1341 __base(const __base&);
1342 __base& operator=(const __base&);
1344 _LIBCPP_INLINE_VISIBILITY __base() {}
1345 _LIBCPP_INLINE_VISIBILITY virtual ~__base() {}
1346 virtual __base* __clone() const = 0;
1347 virtual void __clone(__base*) const = 0;
1361 : public __base<_Rp(_ArgTypes...)>
1383 virtual __base<_Rp(_ArgTypes...)>* __clone() const;
[all …]
Dset413 typedef __tree<value_type, value_compare, allocator_type> __base;
415 typedef typename __base::__node_holder __node_holder;
417 __base __tree_;
420 typedef typename __base::pointer pointer;
421 typedef typename __base::const_pointer const_pointer;
422 typedef typename __base::size_type size_type;
423 typedef typename __base::difference_type difference_type;
424 typedef typename __base::const_iterator iterator;
425 typedef typename __base::const_iterator const_iterator;
489 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value)
[all …]
Dfuture1839 typedef __packaged_task_base<_Rp(_ArgTypes...)> __base;
1841 __base* __f_;
1872 else if (__f.__f_ == (__base*)&__f.__buf_)
1874 __f_ = (__base*)&__buf_;
1893 __f_ = (__base*)&__buf_;
1901 unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
1917 __f_ = (__base*)&__buf_;
1925 unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1));
1936 if (__f_ == (__base*)&__buf_)
1943 else if (__f.__f_ == (__base*)&__f.__buf_)
[all …]
Dmap863 typedef __tree<__value_type, __vc, __allocator_type> __base;
864 typedef typename __base::__node_traits __node_traits;
867 __base __tree_;
874 typedef __map_iterator<typename __base::iterator> iterator;
875 typedef __map_const_iterator<typename __base::const_iterator> const_iterator;
950 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value)
959 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value)
1244 _NOEXCEPT_(__is_nothrow_swappable<__base>::value)
1324 typedef typename __base::__node __node;
1325 typedef typename __base::__node_allocator __node_allocator;
[all …]
Dvector461 typedef __vector_base<_Tp, _Allocator> __base;
467 typedef typename __base::__alloc_traits __alloc_traits;
468 typedef typename __base::reference reference;
469 typedef typename __base::const_reference const_reference;
470 typedef typename __base::size_type size_type;
471 typedef typename __base::difference_type difference_type;
472 typedef typename __base::pointer pointer;
473 typedef typename __base::const_pointer const_pointer;
495 : __base(__a)
644 {return __base::capacity();}
[all …]
Datomic919 typedef __atomic_base<_Tp, false> __base;
923 _LIBCPP_CONSTEXPR __atomic_base(_Tp __d) _NOEXCEPT : __base(__d) {}
1000 typedef __atomic_base<_Tp> __base;
1004 _LIBCPP_CONSTEXPR atomic(_Tp __d) _NOEXCEPT : __base(__d) {}
1008 {__base::store(__d); return __d;}
1011 {__base::store(__d); return __d;}
1020 typedef __atomic_base<_Tp*> __base;
1024 _LIBCPP_CONSTEXPR atomic(_Tp* __d) _NOEXCEPT : __base(__d) {}
1028 {__base::store(__d); return __d;}
1031 {__base::store(__d); return __d;}
Dlocale562 static int __stage2_int_loop(_CharT __ct, int __base, char* __a, char*& __a_end,
598 __num_get<_CharT>::__stage2_int_loop(_CharT __ct, int __base, char* __a, char*& __a_end,
620 switch (__base)
624 if (__f >= __base)
867 ios_base::iostate& __err, int __base)
874 long long __ll = strtoll_l(__a, &__p2, __base, _LIBCPP_GET_C_LOCALE);
902 ios_base::iostate& __err, int __base)
914 unsigned long long __ll = strtoull_l(__a, &__p2, __base, _LIBCPP_GET_C_LOCALE);
1008 int __base = this->__get_base(__iob);
1030 if (this->__stage2_int_loop(*__b, __base, __a, __a_end, __dc,
[all …]
Diomanip167 setbase(int __base)
169 return __iom_t3(__base);
Dstring4089 _LIBCPP_FUNC_VIS int stoi (const string& __str, size_t* __idx = 0, int __base = 10);
4090 _LIBCPP_FUNC_VIS long stol (const string& __str, size_t* __idx = 0, int __base = 10);
4091 _LIBCPP_FUNC_VIS unsigned long stoul (const string& __str, size_t* __idx = 0, int __base = 10);
4092 _LIBCPP_FUNC_VIS long long stoll (const string& __str, size_t* __idx = 0, int __base = 10);
4093 _LIBCPP_FUNC_VIS unsigned long long stoull(const string& __str, size_t* __idx = 0, int __base = 10);
4109 _LIBCPP_FUNC_VIS int stoi (const wstring& __str, size_t* __idx = 0, int __base = 10…
4110 _LIBCPP_FUNC_VIS long stol (const wstring& __str, size_t* __idx = 0, int __base = 10…
4111 _LIBCPP_FUNC_VIS unsigned long stoul (const wstring& __str, size_t* __idx = 0, int __base = 10…
4112 _LIBCPP_FUNC_VIS long long stoll (const wstring& __str, size_t* __idx = 0, int __base = 10…
4113 _LIBCPP_FUNC_VIS unsigned long long stoull(const wstring& __str, size_t* __idx = 0, int __base = 10…
Drandom3645 _RealType __base = _Rp;
3647 for (size_t __i = 1; __i < __k; ++__i, __base *= _Rp)
3648 _Sp += (__g() - _URNG::min()) * __base;
3649 return _Sp / __base;
/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()
53 int __base, locale_t __loc) { in strtoull_l() argument
54 return strtoull(__nptr, __endptr, __base); in strtoull_l()
58 int __base, locale_t __loc) { in strtoul_l() argument
59 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.h278 int __base, locale_t locale) { in strtoll_l() argument
279 return strtoll(__nptr, __endptr, __base); in strtoll_l()
283 int __base, locale_t locale) { in strtol_l() argument
284 return strtol(__nptr, __endptr, __base); in strtol_l()
293 int __base, locale_t locale) { in strtoull_l() argument
294 return strtoull(__nptr, __endptr, __base); in strtoull_l()
298 int __base, locale_t locale) { in strtoul_l() argument
299 return strtoul(__nptr, __endptr, __base); in strtoul_l()
/external/v8/third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/include/
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/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)...) {}
/external/bison/m4/
Dfpending.m447 '(fp->__ptr ? fp->__ptr - fp->__base : 0)' \
/external/fio/
Dfilesetup.c667 char __base[256]; member
718 strncpy(fm->__base, buf, sizeof(fm->__base) - 1); in get_fs_free_counts()
719 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 …]