/external/stlport/stlport/stl/ |
D | _num_get.h | 65 ios_base::iostate& __err, bool& __val) const in get() argument 66 { return do_get(__ii, __end, __str, __err, __val); } in get() 71 ios_base::iostate& __err, short& __val) const in get() argument 72 { return do_get(__ii, __end, __str, __err, __val); } in get() 75 ios_base::iostate& __err, int& __val) const in get() argument 76 { return do_get(__ii, __end, __str, __err, __val); } in get() 80 ios_base::iostate& __err, long& __val) const in get() argument 81 { return do_get(__ii, __end, __str, __err, __val); } in get() 84 ios_base::iostate& __err, unsigned short& __val) const in get() argument 85 { return do_get(__ii, __end, __str, __err, __val); } in get() [all …]
|
D | _num_put.h | 61 bool __val) const { in put() argument 62 return do_put(__s, __f, __fill, __val); in put() 66 long __val) const { in put() argument 67 return do_put(__s, __f, __fill, __val); in put() 71 unsigned long __val) const { in put() argument 72 return do_put(__s, __f, __fill, __val); in put() 77 _STLP_LONG_LONG __val) const { in put() argument 78 return do_put(__s, __f, __fill, __val); in put() 82 unsigned _STLP_LONG_LONG __val) const { in put() argument 83 return do_put(__s, __f, __fill, __val); in put() [all …]
|
D | _tree.c | 351 const _Value& __val, in _M_insert() argument 359 __new_node = _M_create_node(__val); in _M_insert() 366 _M_key_compare( _KeyOfValue()(__val), _S_key(__parent) ) ) ) { in _M_insert() 367 __new_node = _M_create_node(__val); in _M_insert() 373 __new_node = _M_create_node(__val); in _M_insert() 387 _Rb_tree<_Key,_Compare,_Value,_KeyOfValue,_Traits,_Alloc> ::insert_equal(const _Value& __val) { in insert_equal() argument 392 if (_M_key_compare(_KeyOfValue()(__val), _S_key(__x))) { in insert_equal() 398 return _M_insert(__y, __val, __x); in insert_equal() 405 _Rb_tree<_Key,_Compare,_Value,_KeyOfValue,_Traits,_Alloc> ::insert_unique(const _Value& __val) { in insert_unique() argument 411 __comp = _M_key_compare(_KeyOfValue()(__val), _S_key(__x)); in insert_unique() [all …]
|
D | _construct.h | 118 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __false_type&) { in _Copy_Construct_aux() argument 119 new(__p) _Tp(__val); in _Copy_Construct_aux() 123 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __true_type&) { in _Copy_Construct_aux() argument 126 *__p = __val; in _Copy_Construct_aux() 130 inline void _Copy_Construct(_Tp* __p, const _Tp& __val) { in _Copy_Construct() argument 134 _Copy_Construct_aux(__p, __val, _Is_POD(__p)._Answer()); in _Copy_Construct() 138 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __false_type&) { in _Param_Construct_aux() argument 139 new(__p) _T1(__val); in _Param_Construct_aux() 143 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __true_type&) { in _Param_Construct_aux() argument 146 *__p = _T1(__val); in _Param_Construct_aux() [all …]
|
D | _num_get.c | 119 int __base, _Integer& __val, in __get_integer() argument 164 __val = __ovflow ? __is_negative ? (numeric_limits<_Integer>::min)() in __get_integer() 179 int __base, _Integer& __val, in __get_integer() argument 224 __val = __ovflow ? (numeric_limits<_Integer>::max)() in __get_integer() 239 __get_decimal_integer(_InputIter& __first, _InputIter& __last, _Integer& __val, _CharT* /*dummy*/) { in __get_decimal_integer() argument 242 …return __get_integer(__first, __last, 10, __val, 0, false, _CharT() /*separator*/, __grp, __false_… in __get_decimal_integer() 248 ios_base::iostate& __err, _Integer& __val, _CharT* /*__pc*/) { in __do_get_integer() argument 266 __val = 0; in __do_get_integer() 279 …__result = __get_integer(__in_ite, __end, __base, __val, __got, __negative, __np.thousands_sep(),… in __do_get_integer() 281 …__result = __get_integer(__in_ite, __end, __base, __val, __got, __negative, __np.thousands_sep(),… in __do_get_integer() [all …]
|
D | _ctraits_fns.h | 45 typename _Traits::char_type __val; member 46 _Eq_char_bound(typename _Traits::char_type __c) : __val(__c) {} in _Eq_char_bound() 48 { return _Traits::eq(__x, __val); } in operator() 55 typename _Traits::char_type __val; member 56 _Neq_char_bound(typename _Traits::char_type __c) : __val(__c) {} in _Neq_char_bound() 58 { return !_Traits::eq(__x, __val); } in operator() 64 typename _Traits::int_type __val; member 66 _Eq_int_bound(typename _Traits::int_type __c) : __val(__c) {} in _Eq_int_bound() 68 { return _Traits::eq_int_type(_Traits::to_int_type(__x), __val); } in operator()
|
D | _numeric.c | 46 _Tp __val = *__first; in __partial_sum() local 48 __val = __binary_op(__val, *__first); in __partial_sum() 49 *++__result = __val; in __partial_sum() 63 _Tp __val = *__first; in __adjacent_difference() local 66 *++__result = __binary_op(__tmp, __val); in __adjacent_difference() 67 __val = __tmp; in __adjacent_difference()
|
D | _algobase.h | 411 void __fill_fwd(_ForwardIter __first, _ForwardIter __last, const _Tp& __val) { in __fill_fwd() argument 413 *__first = __val; in __fill_fwd() 417 inline void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val, in __fill() argument 419 _STLP_PRIV __fill_fwd(__first, __last, __val); in __fill() 425 void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val, in __fill() argument 427 _STLP_PRIV __fill_fwd(__first, __last, __val); in __fill() 432 void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val, in __fill() argument 434 _STLP_PRIV __fill_fwd(__first, __last, __val); in __fill() 440 void __fill(_RandomAccessIter __first, _RandomAccessIter __last, const _Tp& __val, in __fill() argument 443 *__first = __val; in __fill() [all …]
|
D | _algobase.c | 113 const _Tp& __val, in __find() argument 118 if (*__first == __val) return __first; in __find() 121 if (*__first == __val) return __first; in __find() 124 if (*__first == __val) return __first; in __find() 127 if (*__first == __val) return __first; in __find() 133 if (*__first == __val) return __first; in __find() 136 if (*__first == __val) return __first; in __find() 139 if (*__first == __val) return __first; in __find() 148 __find(char* __first, char* __last, char __val, const random_access_iterator_tag &) { in __find() argument 149 void *res = memchr(__first, __val, __last - __first); in __find() [all …]
|
D | _heap.c | 43 _Distance __holeIndex, _Distance __topIndex, _Tp __val) in __push_heap() argument 46 while (__holeIndex > __topIndex && *(__first + __parent) < __val) { in __push_heap() 51 *(__first + __holeIndex) = __val; in __push_heap() 77 _Distance __topIndex, _Tp __val, _Compare __comp) in __push_heap() argument 80 while (__holeIndex > __topIndex && __comp(*(__first + __parent), __val)) { in __push_heap() 81 … _STLP_VERBOSE_ASSERT(!__comp(__val, *(__first + __parent)), _StlMsg_INVALID_STRICT_WEAK_PREDICATE) in __push_heap() 86 *(__first + __holeIndex) = __val; in __push_heap() 112 _Distance __len, _Tp __val) { in __adjust_heap() argument 126 __push_heap(__first, __holeIndex, __topIndex, __val); in __adjust_heap() 147 _Distance __len, _Tp __val, _Compare __comp) in __adjust_heap() argument [all …]
|
D | _istream.h | 101 _Self& operator>> (short& __val); 102 _Self& operator>> (int& __val); 103 _Self& operator>> (unsigned short& __val); 104 _Self& operator>> (unsigned int& __val); 105 _Self& operator>> (long& __val); 106 _Self& operator>> (unsigned long& __val); 108 _Self& operator>> (_STLP_LONG_LONG& __val); 109 _Self& operator>> (unsigned _STLP_LONG_LONG& __val); 111 _Self& operator>> (float& __val); 112 _Self& operator>> (double& __val); [all …]
|
D | _heap.h | 50 _Distance __len, _Tp __val); 55 _RandomAccessIterator __result, _Tp __val, _Distance*) in __pop_heap() argument 58 __adjust_heap(__first, _Distance(0), _Distance(__last - __first), __val); in __pop_heap() 69 _Distance __len, _Tp __val, _Compare __comp); 75 _RandomAccessIterator __result, _Tp __val, _Compare __comp, in __pop_heap() argument 80 __val, __comp); in __pop_heap()
|
D | _algo.h | 106 count(_InputIter __first, _InputIter __last, const _Tp& __val, _Size& __n) { in count() argument 109 if (*__first == __val) in count() 130 _Integer __count, const _Tp& __val); 133 _Integer __count, const _Tp& __val, _BinaryPred __binary_pred); 239 remove_copy(_InputIter __first, _InputIter __last,_OutputIter __result, const _Tp& __val) { in remove_copy() argument 242 if (!(*__first == __val)) { in remove_copy() 265 remove(_ForwardIter __first, _ForwardIter __last, const _Tp& __val) { in remove() argument 267 __first = find(__first, __last, __val); in remove() 272 return remove_copy(++__next, __last, __first, __val); in remove() 482 const _Tp& __val) { in lower_bound() argument [all …]
|
D | _num_put.c | 421 bool __val) const { in do_put() argument 424 return do_put(__s, __f, __fill, __STATIC_CAST(long, __val)); in do_put() 426 return _STLP_PRIV __do_put_bool(__s, __f, __fill, __val); in do_put() 433 long __val) const in do_put() argument 434 { return _STLP_PRIV __do_put_integer(__s, __f, __fill, __val); } in do_put() 439 unsigned long __val) const in do_put() argument 440 { return _STLP_PRIV __do_put_integer(__s, __f, __fill, __val); } in do_put() 445 double __val) const in do_put() argument 446 { return _STLP_PRIV __do_put_float(__s, __f, __fill, __val); } in do_put() 452 long double __val) const in do_put() argument [all …]
|
D | _istream.c | 136 _Scan_for_char_val(char_type __val) : _M_val(__val) {} in _Scan_for_char_val() 154 _Scan_for_int_val(int_type __val) : _M_val(__val) {} in _Scan_for_int_val() 186 __get_num(basic_istream<_CharT, _Traits>& __that, _Number& __val) { in __get_num() argument 196 0, __that, __err, __val); in __get_num() 209 basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>::operator>> (short& __val) { 222 __val = __tmp; 227 basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>::operator>> (int& __val) { 240 __val = __tmp; 245 basic_istream<_CharT, _Traits>& basic_istream<_CharT, _Traits>::operator>> (unsigned short& __val) { 246 _STLP_PRIV __get_num(*this, __val); [all …]
|
D | _uninitialized.h | 266 const unsigned char& __val) { in uninitialized_fill() argument 267 unsigned char __tmp = __val; in uninitialized_fill() 272 const signed char& __val) { in uninitialized_fill() argument 273 signed char __tmp = __val; in uninitialized_fill() 277 inline void uninitialized_fill(char* __first, char* __last, const char& __val) { in uninitialized_fill() argument 278 char __tmp = __val; in uninitialized_fill() 329 inline _ForwardIter __uinit_aux_aux(_ForwardIter __first, _Size __n, const _Tp& __val, in __uinit_aux_aux() argument 331 { return __uninitialized_fill_n(__first, __n, __val); } in __uinit_aux_aux() 346 inline _ForwardIter __uinit_aux(_ForwardIter __first, _Size __n, const _Tp& __val, in __uinit_aux() argument 348 { return __uinit_aux_aux(__first, __n, __val, _HasDefaultZeroValue(__first)._Answer()); } in __uinit_aux() [all …]
|
D | _vector.h | 227 void _M_initialize(size_type __n, const _Tp& __val = _STLP_DEFAULT_CONSTRUCTED(_Tp)) 228 { this->_M_finish = _STLP_PRIV __uninitialized_init(this->_M_start, __n, __val); } 233 vector(size_type __n, const _Tp& __val, const allocator_type& __a = allocator_type()) 238 vector(size_type __n, const _Tp& __val) in vector() argument 240 { this->_M_finish = _STLP_PRIV __uninitialized_fill_n(this->_M_start, __n, __val); } in vector() 241 vector(size_type __n, const _Tp& __val, const allocator_type& __a) in vector() argument 244 { this->_M_finish = _STLP_PRIV __uninitialized_fill_n(this->_M_start, __n, __val); } in vector() 261 void _M_initialize_aux(_Integer __n, _Integer __val, in _M_initialize_aux() argument 266 this->_M_finish = _STLP_PRIV __uninitialized_fill_n(this->_M_start, __n, __val); in _M_initialize_aux() 315 void assign(size_type __n, const _Tp& __val) { _M_fill_assign(__n, __val); } in assign() argument [all …]
|
/external/kernel-headers/original/asm-arm/ |
D | cacheflush.h | 373 unsigned int __val = read_cpuid(CPUID_CACHETYPE); \ 374 __cacheid_vipt_nonaliasing(__val); \ 379 unsigned int __val = read_cpuid(CPUID_CACHETYPE); \ 380 __cacheid_vipt_aliasing(__val); \ 387 unsigned int __val = read_cpuid(CPUID_CACHETYPE); \ 388 (!__cacheid_present(__val)) || __cacheid_vivt(__val); \ 393 unsigned int __val = read_cpuid(CPUID_CACHETYPE); \ 394 __cacheid_present(__val) && __cacheid_vipt(__val); \ 399 unsigned int __val = read_cpuid(CPUID_CACHETYPE); \ 400 __cacheid_present(__val) && \ [all …]
|
D | system.h | 51 unsigned int __val; \ 53 : "=r" (__val) \ 56 __val; \ 145 unsigned int __val; \ 148 : "=r" (__val) : : "cc"); \ 149 __val; \
|
/external/kernel-headers/original/asm-generic/ |
D | cputime.h | 48 #define timespec_to_cputime(__val) timespec_to_jiffies(__val) argument 49 #define cputime_to_timespec(__ct,__val) jiffies_to_timespec(__ct,__val) argument 54 #define timeval_to_cputime(__val) timeval_to_jiffies(__val) argument 55 #define cputime_to_timeval(__ct,__val) jiffies_to_timeval(__ct,__val) argument
|
/external/llvm/test/CodeGen/Alpha/ |
D | 2006-07-03-ASMFormalLowering.ll | 6 define i32 @_ZN9__gnu_cxx18__exchange_and_addEPVii(i32* %__mem, i32 %__val) { 9 …0A\09mb", "=&r,=*&r,=*m,m,r"( i32* %__tmp, i32* %__mem, i32* %__mem, i32 %__val ) ; <i3… 13 define void @_ZN9__gnu_cxx12__atomic_addEPVii(i32* %__mem, i32 %__val) { 15 …eq $0,$$Ladd_1\0A\09mb", "=&r,=*m,m,r"( i32* %__mem, i32* %__mem, i32 %__val ) ;…
|
/external/stlport/test/unit/ |
D | iota.h | 8 void __iota(_It __first, _It __last, _Tp __val) { in __iota() argument 10 iota(__first, __last, __val); in __iota() 13 *__first++ = __val++; in __iota()
|
/external/llvm/test/Transforms/InstCombine/ |
D | debuginfo.ll | 9 define hidden i8* @foobar(i8* %__dest, i32 %__val, i64 %__len) nounwind inlinehint ssp { 12 %__val.addr = alloca i32, align 4 18 store i32 %__val, i32* %__val.addr, align 4, !tbaa !17 19 call void @llvm.dbg.declare(metadata !{i32* %__val.addr}, metadata !7), !dbg !18 23 %tmp1 = load i32* %__val.addr, align 4, !dbg !21, !tbaa !17 41 !7 = metadata !{i32 590081, metadata !1, metadata !"__val", metadata !2, i32 33554510, metadata !8,…
|
/external/stlport/stlport/stl/pointers/ |
D | _list.h | 96 explicit list(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type), 98 list(size_type __n, const value_type& __val, 101 : _M_impl(__n, cast_traits::to_storage_type_cref(__val), in _M_impl() argument 191 void _M_insert_dispatch(iterator __pos, _Integer __n, _Integer __val, in _M_insert_dispatch() argument 193 { _M_impl.insert(_BaseIte(__pos._M_node), __n, __val); } in _M_insert_dispatch() 255 void assign(size_type __n, const value_type& __val) in assign() argument 256 { _M_impl.assign(__n, cast_traits::to_storage_type_cref(__val)); } in assign() 262 void _M_assign_dispatch(_Integer __n, _Integer __val, const __true_type&) in _M_assign_dispatch() argument 263 { _M_impl.assign(__n, __val); } in _M_assign_dispatch() 301 void remove(const_reference __val) in remove() argument [all …]
|
/external/kernel-headers/original/asm-x86/ |
D | msr.h | 95 u64 __val = native_read_msr(msr); \ 96 (val1) = (u32)__val; \ 97 (val2) = (u32)(__val >> 32); \ 120 u64 __val = native_read_msr_safe(msr, &__err); \ 121 (*p1) = (u32)__val; \ 122 (*p2) = (u32)(__val >> 32); \
|