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

1 2

  /external/stlport/stlport/stl/
_numeric.c 41 _OutputIterator __result, _Tp*, _BinaryOperation __binary_op) {
43 if (__first == __last) return __result;
44 *__result = *__first;
49 *++__result = __val;
51 return ++__result;
58 _OutputIterator __result, _Tp*,
61 if (__first == __last) return __result;
62 *__result = *__first;
66 *++__result = __binary_op(__tmp, __val);
69 return ++__result;
83 _Tp __result = __x; local
    [all...]
_slist_base.c 75 _Slist_node_base* __result = __node; local
77 __result->_M_next = 0;
80 __node->_M_next = __result;
81 __result = __node;
84 return __result;
90 size_t __result = 0; local
92 ++__result;
93 return __result;
_alloc.c 45 __alloc_header *__result = (__alloc_header *)__allocator_type::allocate(__real_n); local
46 memset((char*)__result, __shred_byte, __real_n * sizeof(value_type));
47 __result->__magic = __magic;
48 __result->__type_size = sizeof(value_type);
49 __result->_M_size = (_STLP_UINT32_T)__n;
50 return ((char*)__result) + (long)__extra_before;
_uninitialized.h 53 _OutputIter __result, _Distance*) {
54 _OutputIter __cur = __result;
60 _STLP_UNWIND(_STLP_STD::_Destroy_Range(__result, __cur))
66 _OutputIter __result, const input_iterator_tag &, _Distance* __d)
67 { return __ucopy(__first, __last, __result, __d); }
72 _OutputIter __result, const forward_iterator_tag &, _Distance* __d)
73 { return __ucopy(__first, __last, __result, __d); }
77 _OutputIter __result, const bidirectional_iterator_tag &, _Distance* __d)
78 { return __ucopy(__first, __last, __result, __d); }
83 _OutputIter __result, const random_access_iterator_tag &, _Distance*)
    [all...]
_streambuf.c 55 streamsize __result = 0; local
58 while (__result < __n) {
61 __STATIC_CAST(size_t,__n - __result));
63 __result += __chunk;
71 ++__result;
79 return __result;
86 streamsize __result = 0; local
89 while (__result < __n) {
92 __STATIC_CAST(size_t,__n - __result));
94 __result += __chunk
114 streamsize __result = 0; local
    [all...]
_algobase.h 185 _OutputIter __result, const input_iterator_tag &, _Distance*) {
186 for ( ; __first != __last; ++__result, ++__first)
187 *__result = *__first;
188 return __result;
194 _OutputIter __result, const forward_iterator_tag &, _Distance* ) {
195 for ( ; __first != __last; ++__result, ++__first)
196 *__result = *__first;
197 return __result;
202 _OutputIter __result, const bidirectional_iterator_tag &, _Distance* ) {
203 for ( ; __first != __last; ++__result, ++__first
596 const int __result = memcmp(__first1, __first2, (min) (__len1, __len2)); local
627 const int __result = memcmp(__first1, __first2, (min) (__len1, __len2)); local
    [all...]
_heap.h 55 _RandomAccessIterator __result, _Tp __val, _Distance*)
57 *__result = *__first;
75 _RandomAccessIterator __result, _Tp __val, _Compare __comp,
78 *__result = *__first;
_algo.h 170 transform(_InputIter __first, _InputIter __last, _OutputIter __result, _UnaryOperation __opr) {
172 for ( ; __first != __last; ++__first, ++__result)
173 *__result = __opr(*__first);
174 return __result;
179 _InputIter2 __first2, _OutputIter __result,_BinaryOperation __binary_op) {
181 for ( ; __first1 != __last1; ++__first1, ++__first2, ++__result)
182 *__result = __binary_op(*__first1, *__first2);
183 return __result;
199 replace_copy(_InputIter __first, _InputIter __last,_OutputIter __result,
202 for ( ; __first != __last; ++__first, ++__result)
    [all...]
_algo.c 55 _BidirectionalIter3 __result,
296 _OutputIterator __result,
299 *__result = __val;
303 *++__result = __val;
305 return ++__result;
310 __unique_copy(_InputIter __first, _InputIter __last,_OutputIter __result,
312 return _STLP_PRIV __unique_copy(__first, __last, __result, __binary_pred,
318 __unique_copy(_InputIter __first, _InputIter __last, _ForwardIter __result,
320 *__result = *__first;
322 if (!__binary_pred(*__result, *__first)) *++__result = *__first
451 _RandomAccessIter __result = __first + (__last - __middle); local
    [all...]
_numeric.h 88 _OutputIterator __result, _Tp*, _BinaryOperation __binary_op);
95 _OutputIterator __result) {
96 return _STLP_PRIV __partial_sum(__first, __last, __result, _STLP_VALUE_TYPE(__first, _InputIterator),
103 _OutputIterator __result, _BinaryOperation __binary_op) {
104 return _STLP_PRIV __partial_sum(__first, __last, __result, _STLP_VALUE_TYPE(__first, _InputIterator),
114 _OutputIterator __result, _Tp*,
122 _InputIterator __last, _OutputIterator __result) {
123 return _STLP_PRIV __adjacent_difference(__first, __last, __result,
131 _OutputIterator __result, _BinaryOperation __binary_op) {
132 return _STLP_PRIV __adjacent_difference(__first, __last, __result,
    [all...]
_threads.h 513 __stl_atomic_t __result = *__p;
516 return __result;
522 __stl_atomic_t __result = *__p;
524 return __result;
539 void *__result = *__p;
542 return __result;
548 void *__result = *__p;
550 return __result;
576 __stl_atomic_t __result = *__p;
579 return __result;
    [all...]
_num_get.c 122 _Integer __result = 0; local
148 if (__result < __over_base)
151 _Integer __next = __STATIC_CAST(_Integer, __base * __result - __n);
152 if (__result != 0)
153 __ovflow = __ovflow || __next >= __result;
154 __result = __next;
166 : __is_negative ? __result
167 : __STATIC_CAST(_Integer, -__result);
182 _Integer __result = 0; local
208 if (__result > __over_base
261 bool __result; local
    [all...]
_bitset.h 77 size_t __result = 0; local
80 if ((*__beg & (1 << i)) != 0) { ++__result; }
83 return __result;
569 basic_string<_CharT, _Traits, _Alloc> __result; local
570 _M_copy_to_string(__result);
571 return __result;
575 string __result; local
576 _M_copy_to_string(__result);
577 return __result;
603 bitset<_Nb> __result(*this)
    [all...]
_rope.c 381 _RopeLeaf* __result; local
387 __result = _S_new_RopeLeaf(__new_data, __old_len + __len, __r->get_allocator());
391 return __result;
432 _RopeLeaf* __result = _S_leaf_concat_char_iter(__r, __iter, __len); local
433 //_STLP_ASSERT(__result->_M_ref_count == 1)
434 return __result;
444 _RopeConcatenation* __result = local
446 size_t __depth = __result->_M_depth;
449 if (__depth > 20 && (__result->_M_size._M_data < 1000 ||
454 __balanced = _S_balance(__result);
476 _RopeRep* __result; local
519 _RopeRep* __result; local
645 _RopeRep* __result; local
656 __result = _S_concat_rep(__left_result, __right_result); local
664 _RopeLeaf* __result; local
683 _RopeSubstring* __result = _S_new_RopeSubstring(__old->_M_base, local
826 bool __result; local
1030 _RopeRep* __result = 0; local
1154 _CharT __result; local
1319 _CharT* __result = _STLP_CREATE_ALLOCATOR(allocator_type,(const allocator_type&)_M_tree_ptr, _CharT).allocate(__s + 1); local
1345 _CharT* __result = _M_tree_ptr.allocate(_S_rounded_up_size(__s)); local
    [all...]
_string_operators.h 35 _Str __result = _Str(_Reserve_t(), __s.size() + __y.size(), __s.get_allocator()); local
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()); local
55 _Str __result(_Reserve_t(), __n + __y.size(), __y.get_allocator());
57 __result.append(__s, __s + __n);
58 __result.append(__y);
59 return __result;
69 _Str __result = _Str(_Reserve_t(), 1 + __y.size(), __y.get_allocator()); local
87 _Str __result = _Str(_Reserve_t(), __x.size() + __n, __x.get_allocator()); local
103 _Str __result = _Str(_Reserve_t(), __x.size() + 1, __x.get_allocator()); local
    [all...]
_monetary.c 169 __result = __get_string(__s, __end, __curs.begin(), __curs.end()); local
170 if (!__result.second && __symbol_required)
172 __s = __result.first;
222 bool __result; local
227 __result = __get_monetary_value(__s, __end, __out_ite, __c_type,
234 if (!__result) {
247 __result = __get_string(__s, __end, __ps.begin() + 1, __ps.end()); local
248 __s = __result.first;
249 if (!__result.second)
258 __result = __get_string(__s, __end, __ns.begin() + 1, __ns.end()) local
    [all...]
  /external/stlport/src/
bitset.cpp 88 size_t __result(0);
90 __result += _bit_count[*(__first++)];
92 return __result;
allocators.cpp 133 void *__result = malloc(__n); local
134 if ( 0 == __result ) {
148 __result = malloc(__n);
149 if ( __result )
150 return __result;
153 return __result;
366 char* __result; local
372 __result = _S_start_free;
374 return __result;
380 __result = _S_start_free
441 _Obj* __result; local
858 __obj * __result; local
894 _Pthread_alloc_per_thread_state *__result = _S_free_per_thread_states; local
905 __state_type* __result; local
938 char * __result; local
993 __obj * __result; local
1037 __obj * __result; local
1079 void * __result; local
    [all...]
lock_free_slist.h 89 item* __result; local
100 :"=a" (__result), "=d" (__tmp)
103 return __result;
114 item* __result; local
125 :"=a" (__result), "=d" (__tmp)
128 return __result;
  /external/e2fsprogs/intl/
libgettext.h 146 char *__result; \
157 __result = __translation__; \
160 __result = dcgettext__ (Domainname, Msgid, Category); \
161 __result; \
  /bionic/libc/kernel/arch-x86/asm/
posix_types_32.h 63 #define __FD_ISSET(fd,fdsetp) (__extension__ ({ unsigned char __result; __asm__ __volatile__("btl %1,%2 ; setb %0" :"=q" (__result) :"r" ((int) (fd)), "m" (*(__kernel_fd_set *) (fdsetp))); __result; }))
  /external/kernel-headers/original/asm-x86/
posix_types_32.h 63 unsigned char __result; \
65 :"=q" (__result) :"r" ((int) (fd)), \
67 __result; }))
  /ndk/build/platforms/android-5/arch-x86/usr/include/asm/
posix_types_32.h 63 #define __FD_ISSET(fd,fdsetp) (__extension__ ({ unsigned char __result; __asm__ __volatile__("btl %1,%2 ; setb %0" :"=q" (__result) :"r" ((int) (fd)), "m" (*(__kernel_fd_set *) (fdsetp))); __result; }))
  /ndk/build/platforms/android-8/arch-x86/usr/include/asm/
posix_types_32.h 63 #define __FD_ISSET(fd,fdsetp) (__extension__ ({ unsigned char __result; __asm__ __volatile__("btl %1,%2 ; setb %0" :"=q" (__result) :"r" ((int) (fd)), "m" (*(__kernel_fd_set *) (fdsetp))); __result; }))
  /external/bluetooth/glib/glib/
gatomic.c 96 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...]

Completed in 1136 milliseconds

1 2