/external/libcxx/include/ |
D | deque | 1211 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 …]
|
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 | limits | 447 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 …]
|
D | shared_mutex | 182 __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 …]
|
D | charconv | 342 __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 …]
|
D | set | 459 typedef __tree<value_type, value_compare, allocator_type> __base; 461 typedef typename __base::__node_holder __node_holder; 463 __base __tree_; 466 typedef typename __base::pointer pointer; 467 typedef typename __base::const_pointer const_pointer; 468 typedef typename __base::size_type size_type; 469 typedef typename __base::difference_type difference_type; 470 typedef typename __base::const_iterator iterator; 471 typedef typename __base::const_iterator const_iterator; 476 typedef __set_node_handle<typename __base::__node, allocator_type> node_type; [all …]
|
D | map | 935 typedef __tree<__value_type, __vc, __allocator_type> __base; 936 typedef typename __base::__node_traits __node_traits; 939 __base __tree_; 946 typedef __map_iterator<typename __base::iterator> iterator; 947 typedef __map_const_iterator<typename __base::const_iterator> const_iterator; 952 typedef __map_node_handle<typename __base::__node, allocator_type> node_type; 978 : __tree_(__vc(__comp), typename __base::allocator_type(__a)) {} 993 : __tree_(__vc(__comp), typename __base::allocator_type(__a)) 1032 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value) 1041 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value) [all …]
|
/external/llvm-project/libcxx/include/ |
D | deque | 1280 typedef __deque_base<value_type, allocator_type> __base; 1282 typedef typename __base::__alloc_traits __alloc_traits; 1283 typedef typename __base::reference reference; 1284 typedef typename __base::const_reference const_reference; 1285 typedef typename __base::iterator iterator; 1286 typedef typename __base::const_iterator const_iterator; 1287 typedef typename __base::size_type size_type; 1288 typedef typename __base::difference_type difference_type; 1290 typedef typename __base::pointer pointer; 1291 typedef typename __base::const_pointer const_pointer; [all …]
|
D | __functional_03 | 21 template<class _Fp> class __base; 24 class __base<_Rp()> 26 __base(const __base&); 27 __base& operator=(const __base&); 29 __base() {} 30 virtual ~__base() {} 31 virtual __base* __clone() const = 0; 32 virtual void __clone(__base*) const = 0; 43 class __base<_Rp(_A0)> 45 __base(const __base&); [all …]
|
D | limits | 446 typedef __libcpp_numeric_limits<typename remove_cv<_Tp>::type> __base; 447 typedef typename __base::type type; 449 static _LIBCPP_CONSTEXPR const bool is_specialized = __base::is_specialized; 450 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type min() _NOEXCEPT {return __base::min();} 451 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type max() _NOEXCEPT {return __base::max();} 452 …_LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type lowest() _NOEXCEPT {return __base::lowest(… 454 static _LIBCPP_CONSTEXPR const int digits = __base::digits; 455 static _LIBCPP_CONSTEXPR const int digits10 = __base::digits10; 456 static _LIBCPP_CONSTEXPR const int max_digits10 = __base::max_digits10; 457 static _LIBCPP_CONSTEXPR const bool is_signed = __base::is_signed; [all …]
|
D | shared_mutex | 182 __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 …]
|
D | charconv | 348 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, 358 return __to_chars_integral(__first, __last, __x, __base, false_type()); 364 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, 367 if (__base == 10) 373 auto __c = __value % __base; 374 __value /= __base; 401 to_chars(char* __first, char* __last, _Tp __value, int __base) 403 _LIBCPP_ASSERT(2 <= __base && __base <= 36, "base not in [2, 36]"); 404 return __to_chars_integral(__first, __last, __value, __base, 465 __in_pattern(_Tp __c, int __base) [all …]
|
D | set | 461 typedef __tree<value_type, value_compare, allocator_type> __base; 463 typedef typename __base::__node_holder __node_holder; 465 __base __tree_; 468 typedef typename __base::pointer pointer; 469 typedef typename __base::const_pointer const_pointer; 470 typedef typename __base::size_type size_type; 471 typedef typename __base::difference_type difference_type; 472 typedef typename __base::const_iterator iterator; 473 typedef typename __base::const_iterator const_iterator; 478 typedef __set_node_handle<typename __base::__node, allocator_type> node_type; [all …]
|
/external/llvm-project/libcxx/include/support/solaris/ |
D | xlocale.h | 37 int __base, locale_t __loc) { in strtoll_l() argument 38 return strtoll(__nptr, __endptr, __base); in strtoll_l() 42 int __base, locale_t __loc) { in strtol_l() argument 43 return strtol(__nptr, __endptr, __base); in strtol_l() 47 int __base, locale_t __loc) { in strtoull_l() argument 48 return strtoull(__nptr, __endptr, __base); in strtoull_l() 52 int __base, locale_t __loc) { in strtoul_l() argument 53 return strtoul(__nptr, __endptr, __base); in strtoul_l()
|
/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/llvm-project/libcxx/src/ |
D | shared_mutex.cpp | 108 shared_timed_mutex::shared_timed_mutex() : __base() {} in shared_timed_mutex() 109 void shared_timed_mutex::lock() { return __base.lock(); } in lock() 110 bool shared_timed_mutex::try_lock() { return __base.try_lock(); } in try_lock() 111 void shared_timed_mutex::unlock() { return __base.unlock(); } in unlock() 112 void shared_timed_mutex::lock_shared() { return __base.lock_shared(); } in lock_shared() 113 bool shared_timed_mutex::try_lock_shared() { return __base.try_lock_shared(); } in try_lock_shared() 114 void shared_timed_mutex::unlock_shared() { return __base.unlock_shared(); } in unlock_shared()
|
/external/libcxx/src/ |
D | shared_mutex.cpp | 106 shared_timed_mutex::shared_timed_mutex() : __base() {} in shared_timed_mutex() 107 void shared_timed_mutex::lock() { return __base.lock(); } in lock() 108 bool shared_timed_mutex::try_lock() { return __base.try_lock(); } in try_lock() 109 void shared_timed_mutex::unlock() { return __base.unlock(); } in unlock() 110 void shared_timed_mutex::lock_shared() { return __base.lock_shared(); } in lock_shared() 111 bool shared_timed_mutex::try_lock_shared() { return __base.try_lock_shared(); } in try_lock_shared() 112 void shared_timed_mutex::unlock_shared() { return __base.unlock_shared(); } in unlock_shared()
|
/external/llvm-project/libcxx/include/support/ibm/ |
D | xlocale.h | 228 int __base, locale_t locale) { in strtoll_l() argument 229 return strtoll(__nptr, __endptr, __base); in strtoll_l() 233 int __base, locale_t locale) { in strtol_l() argument 234 return strtol(__nptr, __endptr, __base); in strtol_l() 243 int __base, locale_t locale) { in strtoull_l() argument 244 return strtoull(__nptr, __endptr, __base); in strtoull_l() 248 int __base, locale_t locale) { in strtoul_l() argument 249 return strtoul(__nptr, __endptr, __base); in strtoul_l()
|
/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/mesa3d/src/vulkan/util/ |
D | vk_object.h | 89 #define VK_DEFINE_HANDLE_CASTS(__driver_type, __base, __VkType, __VK_TYPE) \ argument 95 STATIC_ASSERT(offsetof(struct __driver_type, __base) == 0); \ 102 vk_object_base_assert_valid(&_obj->__base, __VK_TYPE); \ 106 #define VK_DEFINE_NONDISP_HANDLE_CASTS(__driver_type, __base, __VkType, __VK_TYPE) \ argument 113 STATIC_ASSERT(offsetof(struct __driver_type, __base) == 0); \ 120 vk_object_base_assert_valid(&_obj->__base, __VK_TYPE); \
|
/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/bcc/src/lua/bpf/ |
D | builtins.lua | 134 if not e.V[dst].const or not e.V[dst].const.__base > 0 then 137 e.emit(BPF.ALU64 + BPF.ADD + BPF.K, 1, 0, 0, -e.V[dst].const.__base) 192 e.V[dst].const = {__base = e.valloc(ffi.sizeof(ct), true), __dissector = ct} 214 elseif e.V[dst].const.__base then 215 e.emit(BPF.ALU64 + BPF.ADD + BPF.K, 1, 0, 0, -e.V[dst].const.__base) 257 e.V[fmt].const = {__base=dst} 259 elseif e.V[fmt].const.__base then -- luacheck: ignore 264 e.emit(BPF.ALU64 + BPF.ADD + BPF.K, 1, 0, 0, -e.V[fmt].const.__base) 295 assert(e.V[src].const.__base, 'NYI: submit(map, var) - variable is not on stack') 297 e.emit(BPF.ALU64 + BPF.ADD + BPF.K, 4, 0, 0, -e.V[src].const.__base) [all …]
|
D | bpf.lua | 83 return type(x) == 'table' and (x.__dissector or x.__map or x.__base) 215 if type(src.const) == 'table' and src.const.__base then 218 emit(BPF.ALU64 + BPF.ADD + BPF.K, reg, 0, 0, -src.const.__base) 306 elseif type(V[a].const) == 'table' and V[a].const.__base > 0 then 308 emit(BPF.MEM + BPF.LDX + const_width[w], src_reg, 10, -V[a].const.__base, 0) 352 local base, size = V[a].const.__base, math.min(#b, ffi.sizeof(V[a].type)) 665 elseif key_base.__base then 667 sp = key_base.__base 735 if base.__base then 745 elseif base.__base then [all …]
|
/external/llvm-project/libcxx/include/support/android/ |
D | locale_bionic.h | 55 int __base, locale_t) { in strtol_l() argument 56 return ::strtol(__nptr, __endptr, __base); in strtol_l()
|
/external/libcxx/include/support/android/ |
D | locale_bionic.h | 60 int __base, locale_t) { in strtol_l() argument 61 return ::strtol(__nptr, __endptr, __base); in strtol_l()
|