/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_stream_iterator.h | 125 _Self __tmp = *this; local 127 return __tmp;
|
_string_base.h | 173 _Tp *__tmp = _M_finish; local 175 __s._M_finish = __s._M_buffers._M_static_buf + (__tmp - _M_start_of_storage._M_data); 186 _Tp *__tmp = _M_start_of_storage._M_data; local 195 __s._M_start_of_storage._M_data = __tmp;
|
_vector.c | 69 pointer __tmp; local 71 __tmp = _M_allocate_and_copy(__n, this->_M_start, this->_M_finish); 74 __tmp = this->_M_end_of_storage.allocate(__n, __n); 76 _M_set(__tmp, __tmp + __old_size, __tmp + __n); 189 pointer __tmp = _M_allocate_and_copy(__len, __CONST_CAST(const_pointer, __x._M_start) + 0, 192 this->_M_start = __tmp; 212 vector<_Tp, _Alloc> __tmp(__n, __val, get_allocator()); 213 __tmp.swap(*this) [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/ |
concurrence.h | 153 __gthread_mutex_t __tmp = __GTHREAD_MUTEX_INIT; local 154 _M_mutex = __tmp; 203 __gthread_recursive_mutex_t __tmp = __GTHREAD_RECURSIVE_MUTEX_INIT; local 204 _M_mutex = __tmp; 276 __gthread_cond_t __tmp = __GTHREAD_COND_INIT; local 277 _M_cond = __tmp;
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_iterator.h | 76 _Iterator __tmp = current; local 77 return *--__tmp; 85 _Self __tmp = *this; local 87 return __tmp; 94 _Self __tmp = *this; local 96 return __tmp;
|
_iterator_old.h | 86 _BidirectionalIterator __tmp = current; local 87 return *(--__tmp); 97 _Self __tmp = *this; local 99 return __tmp; 106 _Self __tmp = *this; local 108 return __tmp; 190 _Self __tmp = *this; local 192 return __tmp; 199 _Self __tmp = *this; local 201 return __tmp; [all...] |
_limits.c | 161 _WordsNumber __tmp = { _STLP_ADDITIONAL_OPEN_BRACKET _Word, 0, 0, 0, 0, 0, 0, 0 _STLP_ADDITIONAL_CLOSE_BRACKET }; variable 162 return __tmp._num; 165 _WordsNumber __tmp = { _STLP_ADDITIONAL_OPEN_BRACKET 0, 0, 0, 0, 0, 0, 0, 0 _STLP_ADDITIONAL_CLOSE_BRACKET }; variable 166 __tmp._Words[(sizeof(_Number) >= 12 ? 10 : sizeof(_Number)) / sizeof(unsigned short) - 1] = _Word; 167 return __tmp._num; 193 // _WordsNumber __tmp = { _STLP_ADDITIONAL_OPEN_BRACKET _Word1, _Word2, 0, 0, 0, 0, 0, 0 _STLP_ADDITIONAL_CLOSE_BRACKET }; 194 // return __tmp._num; 197 _WordsNumber __tmp = { _STLP_ADDITIONAL_OPEN_BRACKET 0, 0, 0, 0, 0, 0, 0, 0 _STLP_ADDITIONAL_CLOSE_BRACKET }; variable 198 __tmp._Words[(sizeof(_Number) >= 12 ? 10 : sizeof(_Number)) / sizeof(unsigned short) - 2] = _Word1; 199 __tmp._Words[(sizeof(_Number) >= 12 ? 10 : sizeof(_Number)) / sizeof(unsigned short) - 1] = _Word2 [all...] |
_list.c | 57 _Node_base* __tmp = __position->_M_prev; local 60 __first->_M_prev = __tmp; 73 _Node* __tmp = __cur; local 75 _STLP_STD::_Destroy(&__tmp->_M_data); 76 this->_M_node.deallocate(__tmp, 1);
|
_stream_iterator.h | 125 _Self __tmp = *this; local 127 return __tmp;
|
_string_base.h | 173 _Tp *__tmp = _M_finish; local 175 __s._M_finish = __s._M_buffers._M_static_buf + (__tmp - _M_start_of_storage._M_data); 186 _Tp *__tmp = _M_start_of_storage._M_data; local 195 __s._M_start_of_storage._M_data = __tmp;
|
_vector.c | 69 pointer __tmp; local 71 __tmp = _M_allocate_and_copy(__n, this->_M_start, this->_M_finish); 74 __tmp = this->_M_end_of_storage.allocate(__n, __n); 76 _M_set(__tmp, __tmp + __old_size, __tmp + __n); 189 pointer __tmp = _M_allocate_and_copy(__len, __CONST_CAST(const_pointer, __x._M_start) + 0, 192 this->_M_start = __tmp; 212 vector<_Tp, _Alloc> __tmp(__n, __val, get_allocator()); 213 __tmp.swap(*this) [all...] |
/external/llvm/include/llvm/ADT/ |
STLExtras.h | 107 _Self operator++(int) { _Self __tmp = *this; ++current; return __tmp; } local 108 _Self operator--(int) { _Self __tmp = *this; --current; return __tmp; } local
|
/external/stlport/stlport/stl/ |
_algobase.c | 304 unsigned char __tmp = (unsigned char)*__first2; local 305 __hints[__tmp / CHAR_BIT] |= (1 << (__tmp % CHAR_BIT)); 309 _Tp2 __tmp = (_Tp2)*__first1; local 310 if (__stlp_eq(*__first1, __tmp) && 311 __pred((__hints[(unsigned char)__tmp / CHAR_BIT] & (1 << ((unsigned char)__tmp % CHAR_BIT))) != 0))
|
_algobase.h | 72 _Tp __tmp = __a; local 74 __b = __tmp; 91 _Tp __tmp = __a; 93 __b = __tmp; 459 unsigned char __tmp = __val; local 460 memset(__first, __tmp, __last - __first); 465 signed char __tmp = __val; local 466 memset(__first, __STATIC_CAST(unsigned char,__tmp), __last - __first); 470 char __tmp = __val; local 471 memset(__first, __STATIC_CAST(unsigned char,__tmp), __last - __first) [all...] |
_num_get.c | 343 bool __tmp = __get_fdigit_or_sep(__c, __sep, __digits); local 344 if (__tmp) { 506 _InputIter __tmp = _STLP_PRIV __do_get_integer(__in_ite, __end, __s, __err, __lx, (_CharT*)0 ); local 515 return __tmp; 595 iter_type __tmp = _STLP_PRIV __do_get_integer(__in_ite, __end, __str, __err, __val, (_CharT*)0 ); local 598 return __tmp;
|
/external/stlport/stlport/stl/debug/ |
_debug.c | 494 __owned_link* __tmp; local 502 __tmp = __x._M_node._M_next; 508 __y._M_node._M_next = __tmp;
|
_iterator.h | 255 _Self __tmp = *this; local 257 return __tmp; 264 _Self __tmp = *this; local 266 return __tmp; 279 _Self __tmp(*this); 280 __tmp.__advance(__n); 281 return __tmp; 284 _Self __tmp(*this); 285 __tmp.__advance(-__n); 286 return __tmp; [all...] |
_slist.h | 354 iterator __tmp = __pos; ++__tmp; 355 _STLP_DEBUG_CHECK(_STLP_PRIV _Dereferenceable(__tmp)) 356 _Invalidate_iterator(__tmp); 362 iterator __tmp = __before_first; ++__tmp; local 363 _STLP_DEBUG_CHECK(_STLP_PRIV _Dereferenceable(__tmp)) 364 _Invalidate_iterators(__tmp, __last);
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_algobase.c | 304 unsigned char __tmp = (unsigned char)*__first2; local 305 __hints[__tmp / CHAR_BIT] |= (1 << (__tmp % CHAR_BIT)); 309 _Tp2 __tmp = (_Tp2)*__first1; local 310 if (__stlp_eq(*__first1, __tmp) && 311 __pred((__hints[(unsigned char)__tmp / CHAR_BIT] & (1 << ((unsigned char)__tmp % CHAR_BIT))) != 0))
|
_algobase.h | 72 _Tp __tmp = __a; local 74 __b = __tmp; 91 _Tp __tmp = __a; 93 __b = __tmp; 459 unsigned char __tmp = __val; local 460 memset(__first, __tmp, __last - __first); 465 signed char __tmp = __val; local 466 memset(__first, __STATIC_CAST(unsigned char,__tmp), __last - __first); 470 char __tmp = __val; local 471 memset(__first, __STATIC_CAST(unsigned char,__tmp), __last - __first) [all...] |
_num_get.c | 343 bool __tmp = __get_fdigit_or_sep(__c, __sep, __digits); local 344 if (__tmp) { 506 _InputIter __tmp = _STLP_PRIV __do_get_integer(__in_ite, __end, __s, __err, __lx, (_CharT*)0 ); local 515 return __tmp; 595 iter_type __tmp = _STLP_PRIV __do_get_integer(__in_ite, __end, __str, __err, __val, (_CharT*)0 ); local 598 return __tmp;
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
_debug.c | 494 __owned_link* __tmp; local 502 __tmp = __x._M_node._M_next; 508 __y._M_node._M_next = __tmp;
|
_iterator.h | 255 _Self __tmp = *this; local 257 return __tmp; 264 _Self __tmp = *this; local 266 return __tmp; 279 _Self __tmp(*this); 280 __tmp.__advance(__n); 281 return __tmp; 284 _Self __tmp(*this); 285 __tmp.__advance(-__n); 286 return __tmp; [all...] |
_slist.h | 354 iterator __tmp = __pos; ++__tmp; 355 _STLP_DEBUG_CHECK(_STLP_PRIV _Dereferenceable(__tmp)) 356 _Invalidate_iterator(__tmp); 362 iterator __tmp = __before_first; ++__tmp; local 363 _STLP_DEBUG_CHECK(_STLP_PRIV _Dereferenceable(__tmp)) 364 _Invalidate_iterators(__tmp, __last);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
stl_algobase.h | 88 _ValueType1 __tmp = _GLIBCXX_MOVE(*__a); local 90 *__b = _GLIBCXX_MOVE(__tmp); 700 const _Tp __tmp = __value; local 702 *__first = __tmp; 711 const _Tp __tmp = __c; local 712 __builtin_memset(__first, static_cast<unsigned char>(__tmp), 756 const _Tp __tmp = __value; local 758 *__first = __tmp; [all...] |