HomeSort by relevance Sort by last modified time
    Searched full:__base (Results 1 - 25 of 507) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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...]
__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...]
  /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/9/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/8/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/8/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; })
  /prebuilts/ndk/9/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/9/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/9/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/9/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/9/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/9/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/9/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/9/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/9/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; })
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
ios_base.h 799 boolalpha(ios_base& __base)
801 __base.setf(ios_base::boolalpha);
802 return __base;
807 noboolalpha(ios_base& __base)
809 __base.unsetf(ios_base::boolalpha);
810 return __base;
815 showbase(ios_base& __base)
817 __base.setf(ios_base::showbase);
818 return __base;
823 noshowbase(ios_base& __base)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
ios_base.h 799 boolalpha(ios_base& __base)
801 __base.setf(ios_base::boolalpha);
802 return __base;
807 noboolalpha(ios_base& __base)
809 __base.unsetf(ios_base::boolalpha);
810 return __base;
815 showbase(ios_base& __base)
817 __base.setf(ios_base::showbase);
818 return __base;
823 noshowbase(ios_base& __base)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
ios_base.h 799 boolalpha(ios_base& __base)
801 __base.setf(ios_base::boolalpha);
802 return __base;
807 noboolalpha(ios_base& __base)
809 __base.unsetf(ios_base::boolalpha);
810 return __base;
815 showbase(ios_base& __base)
817 __base.setf(ios_base::showbase);
818 return __base;
823 noshowbase(ios_base& __base)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
ios_base.h 799 boolalpha(ios_base& __base)
801 __base.setf(ios_base::boolalpha);
802 return __base;
807 noboolalpha(ios_base& __base)
809 __base.unsetf(ios_base::boolalpha);
810 return __base;
815 showbase(ios_base& __base)
817 __base.setf(ios_base::showbase);
818 return __base;
823 noshowbase(ios_base& __base)
    [all...]

Completed in 667 milliseconds

1 2 3 4 5 6 7 8 91011>>