HomeSort by relevance Sort by last modified time
    Searched refs:__val (Results 126 - 150 of 913) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/asm-generic/
cputime.h 49 #define timespec_to_cputime(__val) timespec_to_jiffies(__val)
50 #define cputime_to_timespec(__ct,__val) jiffies_to_timespec(__ct,__val)
52 #define timeval_to_cputime(__val) timeval_to_jiffies(__val)
53 #define cputime_to_timeval(__ct,__val) jiffies_to_timeval(__ct,__val)
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/asm-generic/
cputime.h 49 #define timespec_to_cputime(__val) timespec_to_jiffies(__val)
50 #define cputime_to_timespec(__ct,__val) jiffies_to_timespec(__ct,__val)
52 #define timeval_to_cputime(__val) timeval_to_jiffies(__val)
53 #define cputime_to_timeval(__ct,__val) jiffies_to_timeval(__ct,__val)
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/asm-generic/
cputime.h 49 #define timespec_to_cputime(__val) timespec_to_jiffies(__val)
50 #define cputime_to_timespec(__ct,__val) jiffies_to_timespec(__ct,__val)
52 #define timeval_to_cputime(__val) timeval_to_jiffies(__val)
53 #define cputime_to_timeval(__ct,__val) jiffies_to_timeval(__ct,__val)
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/asm-generic/
cputime.h 49 #define timespec_to_cputime(__val) timespec_to_jiffies(__val)
50 #define cputime_to_timespec(__ct,__val) jiffies_to_timespec(__ct,__val)
52 #define timeval_to_cputime(__val) timeval_to_jiffies(__val)
53 #define cputime_to_timeval(__ct,__val) jiffies_to_timeval(__ct,__val)
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm-generic/
cputime.h 49 #define timespec_to_cputime(__val) timespec_to_jiffies(__val)
50 #define cputime_to_timespec(__ct,__val) jiffies_to_timespec(__ct,__val)
52 #define timeval_to_cputime(__val) timeval_to_jiffies(__val)
53 #define cputime_to_timeval(__ct,__val) jiffies_to_timeval(__ct,__val)
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/asm-generic/
cputime.h 49 #define timespec_to_cputime(__val) timespec_to_jiffies(__val)
50 #define cputime_to_timespec(__ct,__val) jiffies_to_timespec(__ct,__val)
52 #define timeval_to_cputime(__val) timeval_to_jiffies(__val)
53 #define cputime_to_timeval(__ct,__val) jiffies_to_timeval(__ct,__val)
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
move.h 102 #define _GLIBCXX_MOVE(__val) std::move(__val)
103 #define _GLIBCXX_FORWARD(_Tp, __val) std::forward<_Tp>(__val)
105 #define _GLIBCXX_MOVE(__val) (__val)
106 #define _GLIBCXX_FORWARD(_Tp, __val) (__val)
  /external/stlport/stlport/stl/
_num_put.h 61 bool __val) const {
62 return do_put(__s, __f, __fill, __val);
66 long __val) const {
67 return do_put(__s, __f, __fill, __val);
71 unsigned long __val) const {
72 return do_put(__s, __f, __fill, __val);
77 _STLP_LONG_LONG __val) const {
78 return do_put(__s, __f, __fill, __val);
82 unsigned _STLP_LONG_LONG __val) const {
83 return do_put(__s, __f, __fill, __val);
    [all...]
_construct.h 118 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __false_type&) {
119 new(__p) _Tp(__val);
123 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __true_type&) {
126 *__p = __val;
130 inline void _Copy_Construct(_Tp* __p, const _Tp& __val) {
134 _Copy_Construct_aux(__p, __val, _Is_POD(__p)._Answer());
138 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __false_type&) {
139 new(__p) _T1(__val);
143 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __true_type&) {
146 *__p = _T1(__val);
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_num_put.h 61 bool __val) const {
62 return do_put(__s, __f, __fill, __val);
66 long __val) const {
67 return do_put(__s, __f, __fill, __val);
71 unsigned long __val) const {
72 return do_put(__s, __f, __fill, __val);
77 _STLP_LONG_LONG __val) const {
78 return do_put(__s, __f, __fill, __val);
82 unsigned _STLP_LONG_LONG __val) const {
83 return do_put(__s, __f, __fill, __val);
    [all...]
_construct.h 118 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __false_type&) {
119 new(__p) _Tp(__val);
123 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __true_type&) {
126 *__p = __val;
130 inline void _Copy_Construct(_Tp* __p, const _Tp& __val) {
134 _Copy_Construct_aux(__p, __val, _Is_POD(__p)._Answer());
138 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __false_type&) {
139 new(__p) _T1(__val);
143 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __true_type&) {
146 *__p = _T1(__val);
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_num_put.h 61 bool __val) const {
62 return do_put(__s, __f, __fill, __val);
66 long __val) const {
67 return do_put(__s, __f, __fill, __val);
71 unsigned long __val) const {
72 return do_put(__s, __f, __fill, __val);
77 _STLP_LONG_LONG __val) const {
78 return do_put(__s, __f, __fill, __val);
82 unsigned _STLP_LONG_LONG __val) const {
83 return do_put(__s, __f, __fill, __val);
    [all...]
_construct.h 118 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __false_type&) {
119 new(__p) _Tp(__val);
123 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __true_type&) {
126 *__p = __val;
130 inline void _Copy_Construct(_Tp* __p, const _Tp& __val) {
134 _Copy_Construct_aux(__p, __val, _Is_POD(__p)._Answer());
138 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __false_type&) {
139 new(__p) _T1(__val);
143 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __true_type&) {
146 *__p = _T1(__val);
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_num_put.h 61 bool __val) const {
62 return do_put(__s, __f, __fill, __val);
66 long __val) const {
67 return do_put(__s, __f, __fill, __val);
71 unsigned long __val) const {
72 return do_put(__s, __f, __fill, __val);
77 _STLP_LONG_LONG __val) const {
78 return do_put(__s, __f, __fill, __val);
82 unsigned _STLP_LONG_LONG __val) const {
83 return do_put(__s, __f, __fill, __val);
    [all...]
_construct.h 118 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __false_type&) {
119 new(__p) _Tp(__val);
123 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __true_type&) {
126 *__p = __val;
130 inline void _Copy_Construct(_Tp* __p, const _Tp& __val) {
134 _Copy_Construct_aux(__p, __val, _Is_POD(__p)._Answer());
138 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __false_type&) {
139 new(__p) _T1(__val);
143 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __true_type&) {
146 *__p = _T1(__val);
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_num_put.h 61 bool __val) const {
62 return do_put(__s, __f, __fill, __val);
66 long __val) const {
67 return do_put(__s, __f, __fill, __val);
71 unsigned long __val) const {
72 return do_put(__s, __f, __fill, __val);
77 _STLP_LONG_LONG __val) const {
78 return do_put(__s, __f, __fill, __val);
82 unsigned _STLP_LONG_LONG __val) const {
83 return do_put(__s, __f, __fill, __val);
    [all...]
_construct.h 118 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __false_type&) {
119 new(__p) _Tp(__val);
123 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __true_type&) {
126 *__p = __val;
130 inline void _Copy_Construct(_Tp* __p, const _Tp& __val) {
134 _Copy_Construct_aux(__p, __val, _Is_POD(__p)._Answer());
138 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __false_type&) {
139 new(__p) _T1(__val);
143 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __true_type&) {
146 *__p = _T1(__val);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_num_put.h 61 bool __val) const {
62 return do_put(__s, __f, __fill, __val);
66 long __val) const {
67 return do_put(__s, __f, __fill, __val);
71 unsigned long __val) const {
72 return do_put(__s, __f, __fill, __val);
77 _STLP_LONG_LONG __val) const {
78 return do_put(__s, __f, __fill, __val);
82 unsigned _STLP_LONG_LONG __val) const {
83 return do_put(__s, __f, __fill, __val);
    [all...]
_construct.h 118 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __false_type&) {
119 new(__p) _Tp(__val);
123 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __true_type&) {
126 *__p = __val;
130 inline void _Copy_Construct(_Tp* __p, const _Tp& __val) {
134 _Copy_Construct_aux(__p, __val, _Is_POD(__p)._Answer());
138 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __false_type&) {
139 new(__p) _T1(__val);
143 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __true_type&) {
146 *__p = _T1(__val);
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_num_put.h 61 bool __val) const {
62 return do_put(__s, __f, __fill, __val);
66 long __val) const {
67 return do_put(__s, __f, __fill, __val);
71 unsigned long __val) const {
72 return do_put(__s, __f, __fill, __val);
77 _STLP_LONG_LONG __val) const {
78 return do_put(__s, __f, __fill, __val);
82 unsigned _STLP_LONG_LONG __val) const {
83 return do_put(__s, __f, __fill, __val);
    [all...]
_construct.h 118 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __false_type&) {
119 new(__p) _Tp(__val);
123 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __true_type&) {
126 *__p = __val;
130 inline void _Copy_Construct(_Tp* __p, const _Tp& __val) {
134 _Copy_Construct_aux(__p, __val, _Is_POD(__p)._Answer());
138 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __false_type&) {
139 new(__p) _T1(__val);
143 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __true_type&) {
146 *__p = _T1(__val);
    [all...]
  /development/ndk/platforms/android-3/arch-arm/include/asm/
cacheflush.h 99 #define cache_is_vivt() ({ unsigned int __val = read_cpuid(CPUID_CACHETYPE); (!__cacheid_present(__val)) || __cacheid_vivt(__val); })
101 #define cache_is_vipt() ({ unsigned int __val = read_cpuid(CPUID_CACHETYPE); __cacheid_present(__val) && __cacheid_vipt(__val); })
103 #define cache_is_vipt_nonaliasing() ({ unsigned int __val = read_cpuid(CPUID_CACHETYPE); __cacheid_present(__val) && __cacheid_vipt_nonaliasing(__val); })
105 #define cache_is_vipt_aliasing() ({ unsigned int __val = read_cpuid(CPUID_CACHETYPE); __cacheid_present(__val) && __cacheid_vipt_aliasing(__val); }
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/asm/
cacheflush.h 99 #define cache_is_vivt() ({ unsigned int __val = read_cpuid(CPUID_CACHETYPE); (!__cacheid_present(__val)) || __cacheid_vivt(__val); })
101 #define cache_is_vipt() ({ unsigned int __val = read_cpuid(CPUID_CACHETYPE); __cacheid_present(__val) && __cacheid_vipt(__val); })
103 #define cache_is_vipt_nonaliasing() ({ unsigned int __val = read_cpuid(CPUID_CACHETYPE); __cacheid_present(__val) && __cacheid_vipt_nonaliasing(__val); })
105 #define cache_is_vipt_aliasing() ({ unsigned int __val = read_cpuid(CPUID_CACHETYPE); __cacheid_present(__val) && __cacheid_vipt_aliasing(__val); }
    [all...]
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/asm/
cacheflush.h 99 #define cache_is_vivt() ({ unsigned int __val = read_cpuid(CPUID_CACHETYPE); (!__cacheid_present(__val)) || __cacheid_vivt(__val); })
101 #define cache_is_vipt() ({ unsigned int __val = read_cpuid(CPUID_CACHETYPE); __cacheid_present(__val) && __cacheid_vipt(__val); })
103 #define cache_is_vipt_nonaliasing() ({ unsigned int __val = read_cpuid(CPUID_CACHETYPE); __cacheid_present(__val) && __cacheid_vipt_nonaliasing(__val); })
105 #define cache_is_vipt_aliasing() ({ unsigned int __val = read_cpuid(CPUID_CACHETYPE); __cacheid_present(__val) && __cacheid_vipt_aliasing(__val); }
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/asm/
cacheflush.h 99 #define cache_is_vivt() ({ unsigned int __val = read_cpuid(CPUID_CACHETYPE); (!__cacheid_present(__val)) || __cacheid_vivt(__val); })
101 #define cache_is_vipt() ({ unsigned int __val = read_cpuid(CPUID_CACHETYPE); __cacheid_present(__val) && __cacheid_vipt(__val); })
103 #define cache_is_vipt_nonaliasing() ({ unsigned int __val = read_cpuid(CPUID_CACHETYPE); __cacheid_present(__val) && __cacheid_vipt_nonaliasing(__val); })
105 #define cache_is_vipt_aliasing() ({ unsigned int __val = read_cpuid(CPUID_CACHETYPE); __cacheid_present(__val) && __cacheid_vipt_aliasing(__val); }
    [all...]

Completed in 1283 milliseconds

1 2 3 4 56 7 8 91011>>