HomeSort by relevance Sort by last modified time
    Searched refs:__val (Results 1 - 25 of 494) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
atomicity.h 45 __exchange_and_add(volatile _Atomic_word* __mem, int __val)
46 { return __sync_fetch_and_add(__mem, __val); }
49 __atomic_add(volatile _Atomic_word* __mem, int __val)
50 { __sync_fetch_and_add(__mem, __val); }
62 __exchange_and_add_single(_Atomic_word* __mem, int __val)
65 *__mem += __val;
70 __atomic_add_single(_Atomic_word* __mem, int __val)
71 { *__mem += __val; }
75 __exchange_and_add_dispatch(_Atomic_word* __mem, int __val)
79 return __exchange_and_add(__mem, __val);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/
atomicity.h 47 __exchange_and_add(volatile _Atomic_word* __mem, int __val)
48 { return __sync_fetch_and_add(__mem, __val); }
51 __atomic_add(volatile _Atomic_word* __mem, int __val)
52 { __sync_fetch_and_add(__mem, __val); }
64 __exchange_and_add_single(_Atomic_word* __mem, int __val)
67 *__mem += __val;
72 __atomic_add_single(_Atomic_word* __mem, int __val)
73 { *__mem += __val; }
77 __exchange_and_add_dispatch(_Atomic_word* __mem, int __val)
81 return __exchange_and_add(__mem, __val);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/
atomicity.h 47 __exchange_and_add(volatile _Atomic_word* __mem, int __val)
48 { return __sync_fetch_and_add(__mem, __val); }
51 __atomic_add(volatile _Atomic_word* __mem, int __val)
52 { __sync_fetch_and_add(__mem, __val); }
64 __exchange_and_add_single(_Atomic_word* __mem, int __val)
67 *__mem += __val;
72 __atomic_add_single(_Atomic_word* __mem, int __val)
73 { *__mem += __val; }
77 __exchange_and_add_dispatch(_Atomic_word* __mem, int __val)
81 return __exchange_and_add(__mem, __val);
    [all...]
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/
atomicity.h 45 __exchange_and_add(volatile _Atomic_word* __mem, int __val)
46 { return __sync_fetch_and_add(__mem, __val); }
49 __atomic_add(volatile _Atomic_word* __mem, int __val)
50 { __sync_fetch_and_add(__mem, __val); }
62 __exchange_and_add_single(_Atomic_word* __mem, int __val)
65 *__mem += __val;
70 __atomic_add_single(_Atomic_word* __mem, int __val)
71 { *__mem += __val; }
75 __exchange_and_add_dispatch(_Atomic_word* __mem, int __val)
79 return __exchange_and_add(__mem, __val);
    [all...]
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/
atomicity.h 45 __exchange_and_add(volatile _Atomic_word* __mem, int __val)
46 { return __sync_fetch_and_add(__mem, __val); }
49 __atomic_add(volatile _Atomic_word* __mem, int __val)
50 { __sync_fetch_and_add(__mem, __val); }
62 __exchange_and_add_single(_Atomic_word* __mem, int __val)
65 *__mem += __val;
70 __atomic_add_single(_Atomic_word* __mem, int __val)
71 { *__mem += __val; }
75 __exchange_and_add_dispatch(_Atomic_word* __mem, int __val)
79 return __exchange_and_add(__mem, __val);
    [all...]
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ext/
atomicity.h 45 __exchange_and_add(volatile _Atomic_word* __mem, int __val)
46 { return __sync_fetch_and_add(__mem, __val); }
49 __atomic_add(volatile _Atomic_word* __mem, int __val)
50 { __sync_fetch_and_add(__mem, __val); }
62 __exchange_and_add_single(_Atomic_word* __mem, int __val)
65 *__mem += __val;
70 __atomic_add_single(_Atomic_word* __mem, int __val)
71 { *__mem += __val; }
75 __exchange_and_add_dispatch(_Atomic_word* __mem, int __val)
79 return __exchange_and_add(__mem, __val);
    [all...]
  /external/stlport/test/unit/
iota.h 8 void __iota(_It __first, _It __last, _Tp __val) {
10 iota(__first, __last, __val);
13 *__first++ = __val++;
  /ndk/tests/device/test-gnustl-full/unit/
iota.h 8 void __iota(_It __first, _It __last, _Tp __val) {
10 iota(__first, __last, __val);
13 *__first++ = __val++;
  /ndk/tests/device/test-stlport/unit/
iota.h 8 void __iota(_It __first, _It __last, _Tp __val) {
10 iota(__first, __last, __val);
13 *__first++ = __val++;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
functional_hash.h 80 operator()(_Tp __val) const noexcept \
81 { return static_cast<size_t>(__val); } \
140 hash(const _Tp& __val)
141 { return hash(&__val, sizeof(__val)); }
145 __hash_combine(const _Tp& __val, size_t __hash)
146 { return hash(&__val, sizeof(__val), __hash); }
158 hash(const _Tp& __val)
159 { return hash(&__val, sizeof(__val));
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
functional_hash.h 80 operator()(_Tp __val) const noexcept \
81 { return static_cast<size_t>(__val); } \
140 hash(const _Tp& __val)
141 { return hash(&__val, sizeof(__val)); }
145 __hash_combine(const _Tp& __val, size_t __hash)
146 { return hash(&__val, sizeof(__val), __hash); }
158 hash(const _Tp& __val)
159 { return hash(&__val, sizeof(__val));
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
sigset.h 31 unsigned long int __val[_SIGSET_NWORDS]; member in struct:__anon22895
61 while (--__cnt >= 0) __set->__val[__cnt] = 0; \
66 while (--__cnt >= 0) __set->__val[__cnt] = ~0UL; \
76 int __ret = __set->__val[--__cnt]; \
78 __ret = __set->__val[__cnt]; \
86 __dest->__val[__cnt] = (__left->__val[__cnt] \
87 & __right->__val[__cnt]); \
95 __dest->__val[__cnt] = (__left->__val[__cnt]
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
sigset.h 31 unsigned long int __val[_SIGSET_NWORDS]; member in struct:__anon24485
61 while (--__cnt >= 0) __set->__val[__cnt] = 0; \
66 while (--__cnt >= 0) __set->__val[__cnt] = ~0UL; \
76 int __ret = __set->__val[--__cnt]; \
78 __ret = __set->__val[__cnt]; \
86 __dest->__val[__cnt] = (__left->__val[__cnt] \
87 & __right->__val[__cnt]); \
95 __dest->__val[__cnt] = (__left->__val[__cnt]
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
sigset.h 31 unsigned long int __val[_SIGSET_NWORDS]; member in struct:__anon25997
61 while (--__cnt >= 0) __set->__val[__cnt] = 0; \
66 while (--__cnt >= 0) __set->__val[__cnt] = ~0UL; \
76 int __ret = __set->__val[--__cnt]; \
78 __ret = __set->__val[__cnt]; \
86 __dest->__val[__cnt] = (__left->__val[__cnt] \
87 & __right->__val[__cnt]); \
95 __dest->__val[__cnt] = (__left->__val[__cnt]
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1_impl/
functional_hash.h 41 operator()(_Tp __val) const;
57 hash<_Tp>::operator()(_Tp __val) const \
58 { return static_cast<size_t>(__val); }
133 hash<float>::operator()(float __val) const
138 if (__val != 0.0f)
139 __result = _Fnv_hash<>::hash(reinterpret_cast<const char*>(&__val),
140 sizeof(__val));
147 hash<double>::operator()(double __val) const
152 if (__val != 0.0)
153 __result = _Fnv_hash<>::hash(reinterpret_cast<const char*>(&__val),
    [all...]
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
functional_hash.h 41 operator()(_Tp __val) const;
57 hash<_Tp>::operator()(_Tp __val) const \
58 { return static_cast<size_t>(__val); }
133 hash<float>::operator()(float __val) const
138 if (__val != 0.0f)
139 __result = _Fnv_hash<>::hash(reinterpret_cast<const char*>(&__val),
140 sizeof(__val));
147 hash<double>::operator()(double __val) const
152 if (__val != 0.0)
153 __result = _Fnv_hash<>::hash(reinterpret_cast<const char*>(&__val),
    [all...]
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
functional_hash.h 41 operator()(_Tp __val) const;
57 hash<_Tp>::operator()(_Tp __val) const \
58 { return static_cast<size_t>(__val); }
133 hash<float>::operator()(float __val) const
138 if (__val != 0.0f)
139 __result = _Fnv_hash<>::hash(reinterpret_cast<const char*>(&__val),
140 sizeof(__val));
147 hash<double>::operator()(double __val) const
152 if (__val != 0.0)
153 __result = _Fnv_hash<>::hash(reinterpret_cast<const char*>(&__val),
    [all...]
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
functional_hash.h 41 operator()(_Tp __val) const;
57 hash<_Tp>::operator()(_Tp __val) const \
58 { return static_cast<size_t>(__val); }
133 hash<float>::operator()(float __val) const
138 if (__val != 0.0f)
139 __result = _Fnv_hash<>::hash(reinterpret_cast<const char*>(&__val),
140 sizeof(__val));
147 hash<double>::operator()(double __val) const
152 if (__val != 0.0)
153 __result = _Fnv_hash<>::hash(reinterpret_cast<const char*>(&__val),
    [all...]
  /external/stlport/stlport/stl/
_num_get.h 65 ios_base::iostate& __err, bool& __val) const
66 { return do_get(__ii, __end, __str, __err, __val); }
71 ios_base::iostate& __err, short& __val) const
72 { return do_get(__ii, __end, __str, __err, __val); }
75 ios_base::iostate& __err, int& __val) const
76 { return do_get(__ii, __end, __str, __err, __val); }
80 ios_base::iostate& __err, long& __val) const
81 { return do_get(__ii, __end, __str, __err, __val); }
84 ios_base::iostate& __err, unsigned short& __val) const
85 { return do_get(__ii, __end, __str, __err, __val); }
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_num_get.h 65 ios_base::iostate& __err, bool& __val) const
66 { return do_get(__ii, __end, __str, __err, __val); }
71 ios_base::iostate& __err, short& __val) const
72 { return do_get(__ii, __end, __str, __err, __val); }
75 ios_base::iostate& __err, int& __val) const
76 { return do_get(__ii, __end, __str, __err, __val); }
80 ios_base::iostate& __err, long& __val) const
81 { return do_get(__ii, __end, __str, __err, __val); }
84 ios_base::iostate& __err, unsigned short& __val) const
85 { return do_get(__ii, __end, __str, __err, __val); }
    [all...]
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_num_get.h 65 ios_base::iostate& __err, bool& __val) const
66 { return do_get(__ii, __end, __str, __err, __val); }
71 ios_base::iostate& __err, short& __val) const
72 { return do_get(__ii, __end, __str, __err, __val); }
75 ios_base::iostate& __err, int& __val) const
76 { return do_get(__ii, __end, __str, __err, __val); }
80 ios_base::iostate& __err, long& __val) const
81 { return do_get(__ii, __end, __str, __err, __val); }
84 ios_base::iostate& __err, unsigned short& __val) const
85 { return do_get(__ii, __end, __str, __err, __val); }
    [all...]
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_num_get.h 65 ios_base::iostate& __err, bool& __val) const
66 { return do_get(__ii, __end, __str, __err, __val); }
71 ios_base::iostate& __err, short& __val) const
72 { return do_get(__ii, __end, __str, __err, __val); }
75 ios_base::iostate& __err, int& __val) const
76 { return do_get(__ii, __end, __str, __err, __val); }
80 ios_base::iostate& __err, long& __val) const
81 { return do_get(__ii, __end, __str, __err, __val); }
84 ios_base::iostate& __err, unsigned short& __val) const
85 { return do_get(__ii, __end, __str, __err, __val); }
    [all...]
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/
_num_get.h 65 ios_base::iostate& __err, bool& __val) const
66 { return do_get(__ii, __end, __str, __err, __val); }
71 ios_base::iostate& __err, short& __val) const
72 { return do_get(__ii, __end, __str, __err, __val); }
75 ios_base::iostate& __err, int& __val) const
76 { return do_get(__ii, __end, __str, __err, __val); }
80 ios_base::iostate& __err, long& __val) const
81 { return do_get(__ii, __end, __str, __err, __val); }
84 ios_base::iostate& __err, unsigned short& __val) const
85 { return do_get(__ii, __end, __str, __err, __val); }
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/
functional_hash.h 48 operator()(_Tp __val) const;
64 hash<_Tp>::operator()(_Tp __val) const \
65 { return static_cast<size_t>(__val); }
146 hash(const _Tp& __val)
147 { return hash(&__val, sizeof(__val)); }
153 hash<float>::operator()(float __val) const
156 return __val != 0.0f ? std::tr1::_Fnv_hash::hash(__val) : 0;
162 hash<double>::operator()(double __val) cons
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/
functional_hash.h 48 operator()(_Tp __val) const;
64 hash<_Tp>::operator()(_Tp __val) const \
65 { return static_cast<size_t>(__val); }
146 hash(const _Tp& __val)
147 { return hash(&__val, sizeof(__val)); }
153 hash<float>::operator()(float __val) const
156 return __val != 0.0f ? std::tr1::_Fnv_hash::hash(__val) : 0;
162 hash<double>::operator()(double __val) cons
    [all...]

Completed in 688 milliseconds

1 2 3 4 5 6 7 8 91011>>