/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | __mutex_base | 128 unique_lock(mutex_type& __m, const chrono::duration<_Rep, _Period>& __d) 129 : __m_(&__m), __owns_(__m.try_lock_for(__d)) {} 165 bool try_lock_for(const chrono::duration<_Rep, _Period>& __d); 222 unique_lock<_Mutex>::try_lock_for(const chrono::duration<_Rep, _Period>& __d) 228 __owns_ = __m_->try_lock_for(__d); 308 const chrono::duration<_Rep, _Period>& __d); 313 const chrono::duration<_Rep, _Period>& __d, 332 __ceil(chrono::duration<_Rep, _Period> __d) 335 _To __r = duration_cast<_To>(__d); 336 if (__r < __d) [all …]
|
D | atomic | 830 void store(_Tp __d, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT 831 {__c11_atomic_store(&__a_, __d, __m);} 833 void store(_Tp __d, memory_order __m = memory_order_seq_cst) _NOEXCEPT 834 {__c11_atomic_store(&__a_, __d, __m);} 846 _Tp exchange(_Tp __d, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT 847 {return __c11_atomic_exchange(&__a_, __d, __m);} 849 _Tp exchange(_Tp __d, memory_order __m = memory_order_seq_cst) _NOEXCEPT 850 {return __c11_atomic_exchange(&__a_, __d, __m);} 852 bool compare_exchange_weak(_Tp& __e, _Tp __d, 854 {return __c11_atomic_compare_exchange_weak(&__a_, &__e, __d, __s, __f);} [all …]
|
D | __split_buffer | 488 difference_type __d = __end_cap() - __end_; 489 __d = (__d + 1) / 2; 490 __begin_ = _VSTD::move_backward(__begin_, __end_, __end_ + __d); 491 __end_ += __d; 519 difference_type __d = __end_cap() - __end_; 520 __d = (__d + 1) / 2; 521 __begin_ = _VSTD::move_backward(__begin_, __end_, __end_ + __d); 522 __end_ += __d; 552 difference_type __d = __begin_ - __first_; 553 __d = (__d + 1) / 2; [all …]
|
D | cwctype | 164 …BCPP_INLINE_VISIBILITY int __libcpp_iswctype(wint_t __w, wctype_t __d) {return iswctype(__w, __d);} 166 …BCPP_INLINE_VISIBILITY int iswctype(wint_t __w, wctype_t __d) {return __libcpp_iswctype(__w, __d);} 196 …LINE_VISIBILITY wint_t __libcpp_towctrans(wint_t __wc, wctype_t __d) {return towctrans(__wc, __d);} 198 …NLINE_VISIBILITY wint_t towctrans(wint_t __wc, wctype_t __d) {return __libcpp_towctrans(__wc, __d)…
|
D | condition_variable | 151 const chrono::duration<_Rep, _Period>& __d); 156 const chrono::duration<_Rep, _Period>& __d, 237 const chrono::duration<_Rep, _Period>& __d) 239 return wait_until(__lock, chrono::steady_clock::now() + __d); 246 const chrono::duration<_Rep, _Period>& __d, 249 return wait_until(__lock, chrono::steady_clock::now() + __d,
|
D | complex | 592 _Tp __d = __w.imag(); 594 _Tp __bd = __b * __d; 595 _Tp __ad = __a * __d; 608 if (isnan(__d)) 609 __d = copysign(_Tp(0), __d); 612 if (isinf(__c) || isinf(__d)) 615 __d = copysign(isinf(__d) ? _Tp(1) : _Tp(0), __d); 631 if (isnan(__d)) 632 __d = copysign(_Tp(0), __d); 637 __x = _Tp(INFINITY) * (__a * __c - __b * __d); [all …]
|
D | chrono | 471 duration(const duration<_Rep2, _Period2>& __d, 479 : __rep_(_VSTD::chrono::duration_cast<duration>(__d).count()) {} 494 …_LIBCPP_INLINE_VISIBILITY duration& operator+=(const duration& __d) {__rep_ += __d.count(); return… 495 …_LIBCPP_INLINE_VISIBILITY duration& operator-=(const duration& __d) {__rep_ -= __d.count(); return… 654 operator*(const duration<_Rep1, _Period>& __d, const _Rep2& __s) 658 return _Cd(_Cd(__d).count() * static_cast<_Cr>(__s)); 669 operator*(const _Rep1& __s, const duration<_Rep2, _Period>& __d) 671 return __d * __s; 704 operator/(const duration<_Rep1, _Period>& __d, const _Rep2& __s) 708 return _Cd(_Cd(__d).count() / static_cast<_Cr>(__s)); [all …]
|
D | thread | 413 sleep_for(const chrono::duration<_Rep, _Period>& __d) 416 if (__d > duration<_Rep, _Period>::zero()) 420 if (__d < _Max) 422 __ns = duration_cast<nanoseconds>(__d); 423 if (__ns < __d)
|
D | mutex | 232 bool try_lock_for(const chrono::duration<_Rep, _Period>& __d) 233 {return try_lock_until(chrono::steady_clock::now() + __d);} 275 bool try_lock_for(const chrono::duration<_Rep, _Period>& __d) 276 {return try_lock_until(chrono::steady_clock::now() + __d);}
|
D | algorithm | 2438 const difference_type __d = __last - __p2; 2439 if (__m1 < __d) 2442 __p2 = __first + (__m1 - __d); 3073 difference_type __d = __last - __first; 3074 if (__d > 1) 3078 for (--__last, --__d; __first < __last; ++__first, --__d) 3080 difference_type __i = __uid(__g, _Pp(0, __d)); 3097 difference_type __d = __last - __first; 3098 if (__d > 1) 3100 for (--__last; __first < __last; ++__first, --__d) [all …]
|
D | memory | 2505 … typename add_lvalue_reference<const deleter_type>::type>::type __d) 2507 : __ptr_(__p, __d) {} 2509 …BCPP_INLINE_VISIBILITY unique_ptr(pointer __p, typename remove_reference<deleter_type>::type&& __d) 2511 : __ptr_(__p, _VSTD::move(__d)) 2584 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, deleter_type __d) 2585 : __ptr_(_VSTD::move(__p), _VSTD::move(__d)) {} 2687 … typename add_lvalue_reference<const deleter_type>::type>::type __d, 2690 : __ptr_(__p, __d) {} 2695 … typename add_lvalue_reference<const deleter_type>::type>::type __d) 2697 : __ptr_(pointer(), __d) {} [all …]
|
D | random | 2012 _UIntType __a, size_t __u, _UIntType __d, size_t __s, 2054 _UIntType __a, size_t __u, _UIntType __d, size_t __s, 2084 static_assert(__d <= _Max, "mersenne_twister_engine invalid parameters"); 2094 static _LIBCPP_CONSTEXPR const result_type tempering_d = __d; 2220 _UIntType __a, size_t __u, _UIntType __d, size_t __s, 2223 …mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f… 2226 _UIntType __a, size_t __u, _UIntType __d, size_t __s, 2229 …mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f… 2232 _UIntType __a, size_t __u, _UIntType __d, size_t __s, 2235 …mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f… [all …]
|
D | iomanip | 580 __quoted_output_proxy(_Iter __f, _Iter __l, _CharT __d, _CharT __e) 581 : __first(__f), __last(__l), __delim(__d), __escape(__e) {} 600 __quoted_proxy(basic_string<_CharT, _Traits, _Allocator> &__s, _CharT __d, _CharT __e) 601 : __string(__s), __delim(__d), __escape(__e) {}
|
D | shared_mutex | 378 shared_lock<_Mutex>::try_lock_for(const chrono::duration<_Rep, _Period>& __d) 384 __owns_ = __m_->try_lock_shared_for(__d);
|
D | locale | 1991 void __get_day(int& __d, 2007 void __get_hour(int& __d, 2073 time_get<_CharT, _InputIterator>::__get_day(int& __d, 2080 __d = __t; 2201 time_get<_CharT, _InputIterator>::__get_day_year_num(int& __d, 2208 __d = __t; 3397 const char_type* __d; 3398 for (__d = __db; __d < __de; ++__d) 3399 if (!__ct.is(ctype_base::digit, *__d)) 3405 for (__f = __fd; __d > __db && __f > 0; --__f) [all …]
|
D | regex | 1099 string_type __d = __col_->transform(__s.data(), __s.data() + __s.size()); 1100 switch (__d.size()) 1105 __d[11] = __d[3]; 1108 __d.clear(); 1111 return __d; 1121 string_type __d = __col_->transform(__s.data(), __s.data() + __s.size()); 1122 switch (__d.size()) 1127 __d[2] = __d[0]; 1130 __d.clear(); 1133 return __d;
|
D | functional | 2369 size_t __d; 2375 __u.__d = 0; 2377 return __u.__a ^ __u.__b ^ __u.__c ^ __u.__d;
|
D | vector | 3128 difference_type __d = __last - __first; 3130 __size_ -= __d;
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _uninitialized.h | 66 _OutputIter __result, const input_iterator_tag &, _Distance* __d) in __ucopy() argument 67 { return __ucopy(__first, __last, __result, __d); } in __ucopy() 72 _OutputIter __result, const forward_iterator_tag &, _Distance* __d) in __ucopy() argument 73 { return __ucopy(__first, __last, __result, __d); } in __ucopy() 77 _OutputIter __result, const bidirectional_iterator_tag &, _Distance* __d) in __ucopy() argument 78 { return __ucopy(__first, __last, __result, __d); } in __ucopy() 229 const _Tp& __x, const input_iterator_tag &, _Distance* __d) in __ufill() argument 230 { __ufill(__first, __last, __x, __d); } in __ufill() 235 const _Tp& __x, const forward_iterator_tag &, _Distance* __d) in __ufill() argument 236 { __ufill(__first, __last, __x, __d); } in __ufill() [all …]
|
D | _rope.h | 378 _Rope_RopeRep(_Tag __t, unsigned char __d, bool __b, size_t _p_size, 381 _M_tag(__t), _M_is_balanced(__b), _M_depth(__d), _M_c_string(0), _M_size(__a, _p_size) { 470 _Rope_RopeLeaf( _CharT* __d, size_t _p_size, allocator_type __a) 472 _M_data(__d) { 541 bool __d, allocator_type __a) 543 , _M_delete_when_done(__d) 1217 size_t _p_size, bool __d, allocator_type __a) { 1220 return new(__space) _RopeFunction(__f, _p_size, __d, __a);
|
D | _rope.c | 1204 _RopeRep* __d = __clrstack[__csptr]; in _S_fetch_ptr() local 1205 __d->_M_free_c_string(); in _S_fetch_ptr() 1206 __d->_M_c_string = 0; in _S_fetch_ptr()
|
D | _algo.c | 461 _Distance __d = _STLP_PRIV __gcd(__n, __k); in __rotate_aux() local 463 for (_Distance __i = 0; __i < __d; __i++) { in __rotate_aux() 468 for (_Distance __j = 0; __j < __l/__d; __j++) { in __rotate_aux() 480 for (_Distance __j = 0; __j < __k/__d - 1; __j ++) { in __rotate_aux()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/experimental/ |
D | dynarray | 162 dynarray(const dynarray& __d); 172 // dynarray(const dynarray& __d, const _Alloc& __alloc); 253 dynarray<_Tp>::dynarray(const dynarray& __d) : dynarray () 255 size_t sz = __d.size(); 258 auto src = __d.begin();
|
/ndk/tests/build/b9193874-neon/jni/ |
D | b9193874-neon.c | 124 vmlal_lane_s16 (int32x4_t __a, int16x4_t __b, int16x4_t __c, const int __d) in vmlal_lane_s16() argument 126 return (int32x4_t)__builtin_neon_vmlal_lanev4hi (__a, __b, __c, __d, 1); in vmlal_lane_s16() 129 vqdmlal_lane_s16 (int32x4_t __a, int16x4_t __b, int16x4_t __c, const int __d) in vqdmlal_lane_s16() argument 131 return (int32x4_t)__builtin_neon_vqdmlal_lanev4hi (__a, __b, __c, __d, 1); in vqdmlal_lane_s16()
|
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0013-temp-collective-ndk-hackathon-fixes.patch | 129 @@ -332,6 +338,7 @@ __ceil(chrono::duration<_Rep, _Period> __d)
|