HomeSort by relevance Sort by last modified time
    Searched full:__val (Results 26 - 50 of 418) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilt/ndk/android-ndk-r6/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...]
_ctraits_fns.h 45 typename _Traits::char_type __val; member in struct:_Eq_char_bound
46 _Eq_char_bound(typename _Traits::char_type __c) : __val(__c) {}
48 { return _Traits::eq(__x, __val); }
55 typename _Traits::char_type __val; member in struct:_Neq_char_bound
56 _Neq_char_bound(typename _Traits::char_type __c) : __val(__c) {}
58 { return !_Traits::eq(__x, __val); }
64 typename _Traits::int_type __val; member in struct:_Eq_int_bound
66 _Eq_int_bound(typename _Traits::int_type __c) : __val(__c) {}
68 { return _Traits::eq_int_type(_Traits::to_int_type(__x), __val); }
_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...]
_numeric.c 46 _Tp __val = *__first; local
48 __val = __binary_op(__val, *__first);
49 *++__result = __val;
63 _Tp __val = *__first; local
66 *++__result = __binary_op(__tmp, __val);
67 __val = __tmp;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
sigset.h 31 unsigned long int __val[_SIGSET_NWORDS]; member in struct:__anon20552
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...]
  /external/stlport/stlport/stl/
_ctraits_fns.h 45 typename _Traits::char_type __val; member in struct:_Eq_char_bound
46 _Eq_char_bound(typename _Traits::char_type __c) : __val(__c) {}
48 { return _Traits::eq(__x, __val); }
55 typename _Traits::char_type __val; member in struct:_Neq_char_bound
56 _Neq_char_bound(typename _Traits::char_type __c) : __val(__c) {}
58 { return !_Traits::eq(__x, __val); }
64 typename _Traits::int_type __val; member in struct:_Eq_int_bound
66 _Eq_int_bound(typename _Traits::int_type __c) : __val(__c) {}
68 { return _Traits::eq_int_type(_Traits::to_int_type(__x), __val); }
_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...]
_numeric.c 46 _Tp __val = *__first; local
48 __val = __binary_op(__val, *__first);
49 *++__result = __val;
63 _Tp __val = *__first; local
66 *++__result = __binary_op(__tmp, __val);
67 __val = __tmp;
_num_get.c 119 int __base, _Integer& __val,
164 __val = __ovflow ? __is_negative ? (numeric_limits<_Integer>::min)()
179 int __base, _Integer& __val,
224 __val = __ovflow ? (numeric_limits<_Integer>::max)()
239 __get_decimal_integer(_InputIter& __first, _InputIter& __last, _Integer& __val, _CharT* /*dummy*/) {
242 return __get_integer(__first, __last, 10, __val, 0, false, _CharT() /*separator*/, __grp, __false_type());
248 ios_base::iostate& __err, _Integer& __val, _CharT* /*__pc*/) {
266 __val = 0;
279 __result = __get_integer(__in_ite, __end, __base, __val, __got, __negative, __np.thousands_sep(), __np.grouping(), __true_type() );
281 __result = __get_integer(__in_ite, __end, __base, __val, __got, __negative, __np.thousands_sep(), __np.grouping(), __false_type() )
591 unsigned _STLP_LONG_LONG __val; local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ctraits_fns.h 45 typename _Traits::char_type __val; member in struct:_Eq_char_bound
46 _Eq_char_bound(typename _Traits::char_type __c) : __val(__c) {}
48 { return _Traits::eq(__x, __val); }
55 typename _Traits::char_type __val; member in struct:_Neq_char_bound
56 _Neq_char_bound(typename _Traits::char_type __c) : __val(__c) {}
58 { return !_Traits::eq(__x, __val); }
64 typename _Traits::int_type __val; member in struct:_Eq_int_bound
66 _Eq_int_bound(typename _Traits::int_type __c) : __val(__c) {}
68 { return _Traits::eq_int_type(_Traits::to_int_type(__x), __val); }
_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...]
_numeric.c 46 _Tp __val = *__first; local
48 __val = __binary_op(__val, *__first);
49 *++__result = __val;
63 _Tp __val = *__first; local
66 *++__result = __binary_op(__tmp, __val);
67 __val = __tmp;
_num_get.c 119 int __base, _Integer& __val,
164 __val = __ovflow ? __is_negative ? (numeric_limits<_Integer>::min)()
179 int __base, _Integer& __val,
224 __val = __ovflow ? (numeric_limits<_Integer>::max)()
239 __get_decimal_integer(_InputIter& __first, _InputIter& __last, _Integer& __val, _CharT* /*dummy*/) {
242 return __get_integer(__first, __last, 10, __val, 0, false, _CharT() /*separator*/, __grp, __false_type());
248 ios_base::iostate& __err, _Integer& __val, _CharT* /*__pc*/) {
266 __val = 0;
279 __result = __get_integer(__in_ite, __end, __base, __val, __got, __negative, __np.thousands_sep(), __np.grouping(), __true_type() );
281 __result = __get_integer(__in_ite, __end, __base, __val, __got, __negative, __np.thousands_sep(), __np.grouping(), __false_type() )
591 unsigned _STLP_LONG_LONG __val; local
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_ctraits_fns.h 45 typename _Traits::char_type __val; member in struct:_Eq_char_bound
46 _Eq_char_bound(typename _Traits::char_type __c) : __val(__c) {}
48 { return _Traits::eq(__x, __val); }
55 typename _Traits::char_type __val; member in struct:_Neq_char_bound
56 _Neq_char_bound(typename _Traits::char_type __c) : __val(__c) {}
58 { return !_Traits::eq(__x, __val); }
64 typename _Traits::int_type __val; member in struct:_Eq_int_bound
66 _Eq_int_bound(typename _Traits::int_type __c) : __val(__c) {}
68 { return _Traits::eq_int_type(_Traits::to_int_type(__x), __val); }
_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...]
_numeric.c 46 _Tp __val = *__first; local
48 __val = __binary_op(__val, *__first);
49 *++__result = __val;
63 _Tp __val = *__first; local
66 *++__result = __binary_op(__tmp, __val);
67 __val = __tmp;
  /bionic/libc/kernel/arch-arm/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...]
  /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...]
  /prebuilt/ndk/android-ndk-r4/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...]
  /prebuilt/ndk/android-ndk-r4/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...]
  /prebuilt/ndk/android-ndk-r4/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...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/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...]
  /prebuilt/ndk/android-ndk-r5/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...]
  /prebuilt/ndk/android-ndk-r6/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...]
  /external/llvm/test/CodeGen/Alpha/
2006-07-03-ASMFormalLowering.ll 6 define i32 @_ZN9__gnu_cxx18__exchange_and_addEPVii(i32* %__mem, i32 %__val) {
9 %tmp3 = call i32 asm sideeffect "\0A$$Lxadd_0:\0A\09ldl_l $0,$3\0A\09addl $0,$4,$1\0A\09stl_c $1,$2\0A\09beq $1,$$Lxadd_0\0A\09mb", "=&r,=*&r,=*m,m,r"( i32* %__tmp, i32* %__mem, i32* %__mem, i32 %__val ) ; <i32> [#uses=1]
13 define void @_ZN9__gnu_cxx12__atomic_addEPVii(i32* %__mem, i32 %__val) {
15 %tmp2 = call i32 asm sideeffect "\0A$$Ladd_1:\0A\09ldl_l $0,$2\0A\09addl $0,$3,$0\0A\09stl_c $0,$1\0A\09beq $0,$$Ladd_1\0A\09mb", "=&r,=*m,m,r"( i32* %__mem, i32* %__mem, i32 %__val ) ; <i32> [#uses=0]

Completed in 922 milliseconds

12 3 4 5 6 7 8 91011>>