/external/libcxx/include/ |
deque | [all...] |
limits | 443 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...] |
shared_mutex | 178 __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...] |
__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 [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
deque | [all...] |
limits | 443 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...] |
__functional_03 | 233 template<class _Fp> class __base; 236 class __base<_Rp()> 238 __base(const __base&); 239 __base& operator=(const __base&); 241 __base() {} 242 virtual ~__base() {} 243 virtual __base* __clone() const = 0; 244 virtual void __clone(__base*) const = 0 [all...] |
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/ |
deque | [all...] |
limits | 443 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...] |
__functional_03 | 233 template<class _Fp> class __base; 236 class __base<_Rp()> 238 __base(const __base&); 239 __base& operator=(const __base&); 241 __base() {} 242 virtual ~__base() {} 243 virtual __base* __clone() const = 0; 244 virtual void __clone(__base*) const = 0 [all...] |
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
div64.h | 22 #define do_div(n,base) ({ unsigned long __upper, __low, __high, __mod, __base; __base = (base); asm("":"=a" (__low), "=d" (__high):"A" (n)); __upper = __high; if (__high) { __upper = __high % (__base); __high = __high / (__base); } asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (__base), "0" (__low), "1" (__upper)); asm("":"=A" (n):"a" (__low),"d" (__high)); __mod; })
|
/prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/asm/ |
div64.h | 22 #define do_div(n,base) ({ unsigned long __upper, __low, __high, __mod, __base; __base = (base); asm("":"=a" (__low), "=d" (__high):"A" (n)); __upper = __high; if (__high) { __upper = __high % (__base); __high = __high / (__base); } asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (__base), "0" (__low), "1" (__upper)); asm("":"=A" (n):"a" (__low),"d" (__high)); __mod; })
|
/prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/asm/ |
div64.h | 22 #define do_div(n,base) ({ unsigned long __upper, __low, __high, __mod, __base; __base = (base); asm("":"=a" (__low), "=d" (__high):"A" (n)); __upper = __high; if (__high) { __upper = __high % (__base); __high = __high / (__base); } asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (__base), "0" (__low), "1" (__upper)); asm("":"=A" (n):"a" (__low),"d" (__high)); __mod; })
|
/prebuilts/ndk/current/platforms/android-14/arch-x86/usr/include/asm/ |
div64.h | 22 #define do_div(n,base) ({ unsigned long __upper, __low, __high, __mod, __base; __base = (base); asm("":"=a" (__low), "=d" (__high):"A" (n)); __upper = __high; if (__high) { __upper = __high % (__base); __high = __high / (__base); } asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (__base), "0" (__low), "1" (__upper)); asm("":"=A" (n):"a" (__low),"d" (__high)); __mod; })
|
/prebuilts/ndk/current/platforms/android-15/arch-x86/usr/include/asm/ |
div64.h | 22 #define do_div(n,base) ({ unsigned long __upper, __low, __high, __mod, __base; __base = (base); asm("":"=a" (__low), "=d" (__high):"A" (n)); __upper = __high; if (__high) { __upper = __high % (__base); __high = __high / (__base); } asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (__base), "0" (__low), "1" (__upper)); asm("":"=A" (n):"a" (__low),"d" (__high)); __mod; })
|
/prebuilts/ndk/current/platforms/android-16/arch-x86/usr/include/asm/ |
div64.h | 22 #define do_div(n,base) ({ unsigned long __upper, __low, __high, __mod, __base; __base = (base); asm("":"=a" (__low), "=d" (__high):"A" (n)); __upper = __high; if (__high) { __upper = __high % (__base); __high = __high / (__base); } asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (__base), "0" (__low), "1" (__upper)); asm("":"=A" (n):"a" (__low),"d" (__high)); __mod; })
|
/prebuilts/ndk/current/platforms/android-17/arch-x86/usr/include/asm/ |
div64.h | 22 #define do_div(n,base) ({ unsigned long __upper, __low, __high, __mod, __base; __base = (base); asm("":"=a" (__low), "=d" (__high):"A" (n)); __upper = __high; if (__high) { __upper = __high % (__base); __high = __high / (__base); } asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (__base), "0" (__low), "1" (__upper)); asm("":"=A" (n):"a" (__low),"d" (__high)); __mod; })
|
/prebuilts/ndk/current/platforms/android-18/arch-x86/usr/include/asm/ |
div64.h | 22 #define do_div(n,base) ({ unsigned long __upper, __low, __high, __mod, __base; __base = (base); asm("":"=a" (__low), "=d" (__high):"A" (n)); __upper = __high; if (__high) { __upper = __high % (__base); __high = __high / (__base); } asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (__base), "0" (__low), "1" (__upper)); asm("":"=A" (n):"a" (__low),"d" (__high)); __mod; })
|
/prebuilts/ndk/current/platforms/android-19/arch-x86/usr/include/asm/ |
div64.h | 22 #define do_div(n,base) ({ unsigned long __upper, __low, __high, __mod, __base; __base = (base); asm("":"=a" (__low), "=d" (__high):"A" (n)); __upper = __high; if (__high) { __upper = __high % (__base); __high = __high / (__base); } asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (__base), "0" (__low), "1" (__upper)); asm("":"=A" (n):"a" (__low),"d" (__high)); __mod; })
|
/prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/asm/ |
div64.h | 22 #define do_div(n,base) ({ unsigned long __upper, __low, __high, __mod, __base; __base = (base); asm("":"=a" (__low), "=d" (__high):"A" (n)); __upper = __high; if (__high) { __upper = __high % (__base); __high = __high / (__base); } asm("divl %2":"=a" (__low), "=d" (__mod):"rm" (__base), "0" (__low), "1" (__upper)); asm("":"=A" (n):"a" (__low),"d" (__high)); __mod; })
|
/external/libcxx/include/support/solaris/ |
xlocale.h | 38 int __base, locale_t __loc) { 39 return strtoll(__nptr, __endptr, __base); 43 int __base, locale_t __loc) { 44 return strtol(__nptr, __endptr, __base); 53 int __base, locale_t __loc) { 54 return strtoull(__nptr, __endptr, __base); 58 int __base, locale_t __loc) { 59 return strtoul(__nptr, __endptr, __base);
|
/external/libcxx/src/ |
shared_mutex.cpp | 107 shared_timed_mutex::shared_timed_mutex() : __base() {} 108 void shared_timed_mutex::lock() { return __base.lock(); } 109 bool shared_timed_mutex::try_lock() { return __base.try_lock(); } 110 void shared_timed_mutex::unlock() { return __base.unlock(); } 111 void shared_timed_mutex::lock_shared() { return __base.lock_shared(); } 112 bool shared_timed_mutex::try_lock_shared() { return __base.try_lock_shared(); } 113 void shared_timed_mutex::unlock_shared() { return __base.unlock_shared(); }
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/ |
ios_base.h | 795 boolalpha(ios_base& __base) 797 __base.setf(ios_base::boolalpha); 798 return __base; 803 noboolalpha(ios_base& __base) 805 __base.unsetf(ios_base::boolalpha); 806 return __base; 811 showbase(ios_base& __base) 813 __base.setf(ios_base::showbase); 814 return __base; 819 noshowbase(ios_base& __base) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/ |
ios_base.h | 795 boolalpha(ios_base& __base) 797 __base.setf(ios_base::boolalpha); 798 return __base; 803 noboolalpha(ios_base& __base) 805 __base.unsetf(ios_base::boolalpha); 806 return __base; 811 showbase(ios_base& __base) 813 __base.setf(ios_base::showbase); 814 return __base; 819 noshowbase(ios_base& __base) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/ |
ios_base.h | 795 boolalpha(ios_base& __base) 797 __base.setf(ios_base::boolalpha); 798 return __base; 803 noboolalpha(ios_base& __base) 805 __base.unsetf(ios_base::boolalpha); 806 return __base; 811 showbase(ios_base& __base) 813 __base.setf(ios_base::showbase); 814 return __base; 819 noshowbase(ios_base& __base) [all...] |