Home
last modified time | relevance | path

Searched refs:__result (Results 1 – 25 of 35) sorted by relevance

12

/external/stlport/stlport/stl/
D_uninitialized.h53 _OutputIter __result, _Distance*) { in __ucopy() argument
54 _OutputIter __cur = __result; in __ucopy()
60 _STLP_UNWIND(_STLP_STD::_Destroy_Range(__result, __cur)) in __ucopy()
66 _OutputIter __result, const input_iterator_tag &, _Distance* __d) in __ucopy() argument
67 { return __ucopy(__first, __last, __result, __d); } in __ucopy()
72 _OutputIter __result, const forward_iterator_tag &, _Distance* __d) in __ucopy() argument
73 { return __ucopy(__first, __last, __result, __d); } in __ucopy()
77 _OutputIter __result, const bidirectional_iterator_tag &, _Distance* __d) in __ucopy() argument
78 { return __ucopy(__first, __last, __result, __d); } in __ucopy()
83 _OutputIter __result, const random_access_iterator_tag &, _Distance*) { in __ucopy() argument
[all …]
D_algobase.h185 _OutputIter __result, const input_iterator_tag &, _Distance*) { in __copy() argument
186 for ( ; __first != __last; ++__result, ++__first) in __copy()
187 *__result = *__first; in __copy()
188 return __result; in __copy()
194 _OutputIter __result, const forward_iterator_tag &, _Distance* ) { in __copy() argument
195 for ( ; __first != __last; ++__result, ++__first) in __copy()
196 *__result = *__first; in __copy()
197 return __result; in __copy()
202 _OutputIter __result, const bidirectional_iterator_tag &, _Distance* ) { in __copy() argument
203 for ( ; __first != __last; ++__result, ++__first) in __copy()
[all …]
D_numeric.c41 _OutputIterator __result, _Tp*, _BinaryOperation __binary_op) { in __partial_sum() argument
43 if (__first == __last) return __result; in __partial_sum()
44 *__result = *__first; in __partial_sum()
49 *++__result = __val; in __partial_sum()
51 return ++__result; in __partial_sum()
58 _OutputIterator __result, _Tp*, in __adjacent_difference() argument
61 if (__first == __last) return __result; in __adjacent_difference()
62 *__result = *__first; in __adjacent_difference()
66 *++__result = __binary_op(__tmp, __val); in __adjacent_difference()
69 return ++__result; in __adjacent_difference()
[all …]
D_streambuf.c55 streamsize __result = 0; in xsgetn() local
58 while (__result < __n) { in xsgetn()
61 __STATIC_CAST(size_t,__n - __result)); in xsgetn()
63 __result += __chunk; in xsgetn()
71 ++__result; in xsgetn()
79 return __result; in xsgetn()
86 streamsize __result = 0; in xsputn() local
89 while (__result < __n) { in xsputn()
92 __STATIC_CAST(size_t,__n - __result)); in xsputn()
94 __result += __chunk; in xsputn()
[all …]
D_algo.c55 _BidirectionalIter3 __result,
296 _OutputIterator __result, in __unique_copy() argument
299 *__result = __val; in __unique_copy()
303 *++__result = __val; in __unique_copy()
305 return ++__result; in __unique_copy()
310 __unique_copy(_InputIter __first, _InputIter __last,_OutputIter __result, in __unique_copy() argument
312 return _STLP_PRIV __unique_copy(__first, __last, __result, __binary_pred, in __unique_copy()
318 __unique_copy(_InputIter __first, _InputIter __last, _ForwardIter __result, in __unique_copy() argument
320 *__result = *__first; in __unique_copy()
322 if (!__binary_pred(*__result, *__first)) *++__result = *__first; in __unique_copy()
[all …]
D_algo.h170 transform(_InputIter __first, _InputIter __last, _OutputIter __result, _UnaryOperation __opr) { in transform() argument
172 for ( ; __first != __last; ++__first, ++__result) in transform()
173 *__result = __opr(*__first); in transform()
174 return __result; in transform()
179 _InputIter2 __first2, _OutputIter __result,_BinaryOperation __binary_op) { in transform() argument
181 for ( ; __first1 != __last1; ++__first1, ++__first2, ++__result) in transform()
182 *__result = __binary_op(*__first1, *__first2); in transform()
183 return __result; in transform()
199 replace_copy(_InputIter __first, _InputIter __last,_OutputIter __result, in replace_copy() argument
202 for ( ; __first != __last; ++__first, ++__result) in replace_copy()
[all …]
D_bitset.h77 size_t __result = 0; in _S_count() local
80 if ((*__beg & (1 << i)) != 0) { ++__result; } in _S_count()
83 return __result; in _S_count()
569 basic_string<_CharT, _Traits, _Alloc> __result;
570 _M_copy_to_string(__result);
571 return __result;
575 string __result;
576 _M_copy_to_string(__result);
577 return __result;
603 bitset<_Nb> __result(*this);
[all …]
D_slist_base.c75 _Slist_node_base* __result = __node; in __reverse() local
77 __result->_M_next = 0; in __reverse()
80 __node->_M_next = __result; in __reverse()
81 __result = __node; in __reverse()
84 return __result; in __reverse()
90 size_t __result = 0; in size() local
92 ++__result; in size()
93 return __result; in size()
D_rope.c381 _RopeLeaf* __result; in _S_leaf_concat_char_iter() local
387 __result = _S_new_RopeLeaf(__new_data, __old_len + __len, __r->get_allocator()); in _S_leaf_concat_char_iter()
391 return __result; in _S_leaf_concat_char_iter()
432 _RopeLeaf* __result = _S_leaf_concat_char_iter(__r, __iter, __len); in _S_destr_leaf_concat_char_iter() local
434 return __result; in _S_destr_leaf_concat_char_iter()
444 _RopeConcatenation* __result = in _S_tree_concat() local
446 size_t __depth = __result->_M_depth; in _S_tree_concat()
449 if (__depth > 20 && (__result->_M_size._M_data < 1000 || in _S_tree_concat()
454 __balanced = _S_balance(__result); in _S_tree_concat()
458 __result->_M_unref_nonnil(); in _S_tree_concat()
[all …]
D_numeric.h88 _OutputIterator __result, _Tp*, _BinaryOperation __binary_op);
95 _OutputIterator __result) { in partial_sum() argument
96 …return _STLP_PRIV __partial_sum(__first, __last, __result, _STLP_VALUE_TYPE(__first, _InputIterato… in partial_sum()
103 _OutputIterator __result, _BinaryOperation __binary_op) { in partial_sum() argument
104 …return _STLP_PRIV __partial_sum(__first, __last, __result, _STLP_VALUE_TYPE(__first, _InputIterato… in partial_sum()
114 _OutputIterator __result, _Tp*,
122 _InputIterator __last, _OutputIterator __result) { in adjacent_difference() argument
123 return _STLP_PRIV __adjacent_difference(__first, __last, __result, in adjacent_difference()
131 _OutputIterator __result, _BinaryOperation __binary_op) { in adjacent_difference() argument
132 return _STLP_PRIV __adjacent_difference(__first, __last, __result, in adjacent_difference()
D_threads.h513 __stl_atomic_t __result = *__p; in _S_swap()
516 return __result; in _S_swap()
522 __stl_atomic_t __result = *__p; in _S_swap()
524 return __result; in _S_swap()
539 void *__result = *__p; in _S_swap_ptr()
542 return __result; in _S_swap_ptr()
548 void *__result = *__p; in _S_swap_ptr()
550 return __result; in _S_swap_ptr()
576 __stl_atomic_t __result = *__p; in _S_swap()
579 return __result; in _S_swap()
[all …]
D_num_get.c122 _Integer __result = 0; in __get_integer() local
148 if (__result < __over_base) in __get_integer()
151 _Integer __next = __STATIC_CAST(_Integer, __base * __result - __n); in __get_integer()
152 if (__result != 0) in __get_integer()
153 __ovflow = __ovflow || __next >= __result; in __get_integer()
154 __result = __next; in __get_integer()
166 : __is_negative ? __result in __get_integer()
167 : __STATIC_CAST(_Integer, -__result); in __get_integer()
182 _Integer __result = 0; in __get_integer() local
208 if (__result > __over_base) in __get_integer()
[all …]
D_alloc.c45 __alloc_header *__result = (__alloc_header *)__allocator_type::allocate(__real_n); in allocate() local
46 memset((char*)__result, __shred_byte, __real_n * sizeof(value_type)); in allocate()
47 __result->__magic = __magic; in allocate()
48 __result->__type_size = sizeof(value_type); in allocate()
49 __result->_M_size = (_STLP_UINT32_T)__n; in allocate()
50 return ((char*)__result) + (long)__extra_before; in allocate()
D_string_operators.h35 _Str __result = _Str(_Reserve_t(), __s.size() + __y.size(), __s.get_allocator());
37 _Str __result(_Reserve_t(), __s.size() + __y.size(), __s.get_allocator());
39 __result.append(__s);
40 __result.append(__y);
41 return __result;
53 _Str __result = _Str(_Reserve_t(), __n + __y.size(), __y.get_allocator());
55 _Str __result(_Reserve_t(), __n + __y.size(), __y.get_allocator());
57 __result.append(__s, __s + __n);
58 __result.append(__y);
59 return __result;
[all …]
D_monetary.c169 __result = __get_string(__s, __end, __curs.begin(), __curs.end()); in __money_do_get() local
170 if (!__result.second && __symbol_required) in __money_do_get()
172 __s = __result.first; in __money_do_get()
222 bool __result; in __money_do_get() local
227 __result = __get_monetary_value(__s, __end, __out_ite, __c_type, in __money_do_get()
234 if (!__result) { in __money_do_get()
247 __result = __get_string(__s, __end, __ps.begin() + 1, __ps.end()); in __money_do_get() local
248 __s = __result.first; in __money_do_get()
249 if (!__result.second) in __money_do_get()
258 __result = __get_string(__s, __end, __ns.begin() + 1, __ns.end()); in __money_do_get() local
[all …]
D_string.c431 const_pointer __result = in find() local
434 return __result != this->_M_Finish() ? __result - this->_M_Start() : npos; in find()
444 const_pointer __result = in find() local
447 return __result != this->_M_Finish() ? __result - this->_M_Start() : npos; in find()
462 const_pointer __result = _STLP_STD::find_end(this->_M_Start(), __last, in rfind() local
464 return __result != __last ? __result - this->_M_Start() : npos; in rfind()
487 const_iterator __result = _STLP_PRIV __str_find_first_of(begin() + __pos, end(), in find_first_of() local
490 return __result != end() ? __result - begin() : npos; in find_first_of()
519 …const_pointer __result = _STLP_PRIV __str_find_first_not_of(this->_M_Start() + __pos, this->_M_Fin… in find_first_not_of() local
523 return __result != this->_M_finish ? __result - this->_M_Start() : npos; in find_first_not_of()
[all …]
D_heap.h55 _RandomAccessIterator __result, _Tp __val, _Distance*) in __pop_heap() argument
57 *__result = *__first; in __pop_heap()
75 _RandomAccessIterator __result, _Tp __val, _Compare __comp, in __pop_heap() argument
78 *__result = *__first; in __pop_heap()
D_time_facets.c313 string_iterator __result in do_get_date() local
317 if (__result == __format_end) in do_get_date()
336 string_iterator __result in do_get_time() local
340 __err = __result == __format_end ? ios_base::goodbit in do_get_time()
371 bool __result = in do_get_weekday() local
373 if (__result) in do_get_weekday()
388 bool __result = in do_get_monthname() local
390 if (__result) in do_get_monthname()
D_algobase.c376 _ForwardIter1 __result = __last1;
380 return __result;
382 __result = __new_result;
422 _BidirectionalIter1 __result = __rresult.base();
423 _STLP_STD::advance(__result, -_STLP_STD::distance(__first2, __last2));
424 return __result;
/external/stlport/src/
Dallocators.cpp133 void *__result = malloc(__n); in allocate() local
134 if ( 0 == __result ) { in allocate()
148 __result = malloc(__n); in allocate()
149 if ( __result ) in allocate()
150 return __result; in allocate()
153 return __result; in allocate()
366 char* __result; in _S_chunk_alloc() local
372 __result = _S_start_free; in _S_chunk_alloc()
374 return __result; in _S_chunk_alloc()
380 __result = _S_start_free; in _S_chunk_alloc()
[all …]
Dlock_free_slist.h89 item* __result; in pop() local
100 :"=a" (__result), "=d" (__tmp) in pop()
103 return __result; in pop()
114 item* __result; in clear() local
125 :"=a" (__result), "=d" (__tmp) in clear()
128 return __result; in clear()
Dbitset.cpp88 size_t __result(0); in _S_count() local
90 __result += _bit_count[*(__first++)]; in _S_count()
92 return __result; in _S_count()
/external/bluetooth/glib/glib/
Dgatomic.c96 gint __result; \
98 : "=r" (__result), "=m" (*(atomic)) \
101 __result == oldval; \
143 gint __result; \
156 "=&r" (__result) \
161 __result != 0; \
528 gint __result = oldval; \
530 : "+d" (__result), "=Q" (*(atomic)) \
532 __result == oldval; \
658 gboolean __result; \
[all …]
/external/e2fsprogs/intl/
Dlibgettext.h146 char *__result; \
157 __result = __translation__; \
160 __result = dcgettext__ (Domainname, Msgid, Category); \
161 __result; \
/external/kernel-headers/original/asm-x86/
Dposix_types_32.h63 unsigned char __result; \
65 :"=q" (__result) :"r" ((int) (fd)), \
67 __result; }))

12