Searched refs:__tmp (Results 1 - 25 of 49) sorted by relevance

12

/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_alloc.c63 unsigned char* __tmp; local
64 for (__tmp = (unsigned char*)(__real_p + 1); __tmp < (unsigned char*)__p; ++__tmp) {
65 _STLP_VERBOSE_ASSERT(*__tmp == __shred_byte, _StlMsg_DBA_UNDERRUN)
70 for (__tmp= ((unsigned char*)__p) + __n * sizeof(value_type);
71 __tmp < ((unsigned char*)__real_p) + __real_n ; ++__tmp) {
72 _STLP_VERBOSE_ASSERT(*__tmp == __shred_byte, _StlMsg_DBA_OVERRUN)
H A D_tempbuf.c43 _Tp* __tmp = (_Tp*) malloc((size_t)__len * sizeof(_Tp)); local
44 if (__tmp != 0)
45 return pair<_Tp*, ptrdiff_t>(__tmp, __len);
H A D_valarray.c37 _Valarray_bool __tmp(this->size(), _Valarray_bool::_NoInit());
39 __tmp[__i] = !(*this)[__i];
40 return __tmp;
57 valarray<_Tp> __tmp(__slice.size(), _NoInit());
62 __tmp[__i] = (*this)[__index];
63 return __tmp;
99 valarray<_Tp> __tmp(__slice._M_size(), _NoInit());
100 if (__tmp.size() != 0) {
102 do __tmp[__i._M_step] = (*this)[__i._M_1d_idx]; while(__i._M_incr());
104 return __tmp;
[all...]
H A D_valarray.h180 valarray<_Tp> __tmp(this->size(), _NoInit());
182 __tmp[__i] = -(*this)[__i];
183 return __tmp;
187 valarray<_Tp> __tmp(this->size(), _NoInit());
189 __tmp[__i] = ~(*this)[__i];
190 return __tmp;
351 valarray<_Tp> __tmp(this->size());
352 transform(this->_M_first + 0, this->_M_first + this->_M_size, __tmp._M_first,
354 return __tmp;
357 valarray<_Tp> __tmp(thi
[all...]
H A D_ios.c49 basic_streambuf<_CharT, _Traits>* __tmp = _M_streambuf; local
52 return __tmp;
70 locale __tmp = ios_base::imbue(__loc); local
79 __tmp = ios_base::imbue(__tmp);
82 return __tmp;
H A D_raw_storage_iter.h64 raw_storage_iterator<_ForwardIterator, _Tp> __tmp = *this; local
66 return __tmp;
H A D_complex.c93 basic_ostringstream<_CharT, _Traits, allocator<_CharT> > __tmp; local
94 __tmp.flags(__os.flags());
95 __tmp.imbue(__os.getloc());
96 __tmp.precision(__os.precision());
97 __tmp << '(' << __z.real() << ',' << __z.imag() << ')';
98 return __os << __tmp.str();
H A D_numeric.c65 _Tp __tmp = *__first; local
66 *++__result = __binary_op(__tmp, __val);
67 __val = __tmp;
H A D_bitset.c180 basic_string<_CharT, _Traits> __tmp; local
181 __tmp.reserve(_Nb);
200 __tmp.push_back(__c);
208 if (__tmp.empty())
211 __x._M_copy_from_string(__tmp, __STATIC_CAST(size_t,0), _Nb);
221 basic_string<_CharT, _Traits> __tmp; local
222 __x._M_copy_to_string(__tmp);
223 return __os << __tmp;
H A D_ios_base.h111 fmtflags __tmp = _M_fmtflags; local
113 return __tmp;
117 fmtflags __tmp = _M_fmtflags; local
119 return __tmp;
122 fmtflags __tmp = _M_fmtflags; local
125 return __tmp;
131 streamsize __tmp = _M_precision; local
133 return __tmp;
138 streamsize __tmp = _M_width; local
140 return __tmp;
[all...]
H A D_iterator_old.h86 _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...]
H A D_vector.c69 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
[all...]
H A D_limits.c161 _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
[all...]
H A D_ios.h67 basic_ostream<char_type, traits_type>* __tmp = _M_tied_ostream; local
69 return __tmp;
83 char_type __tmp(_M_fill);
85 return __tmp;
H A D_string_io.h44 basic_string<_CharT, _Traits, _Alloc> __tmp(__sum);
45 return __os << __tmp;
H A Dchar_traits.h109 fpos __tmp(*this);
110 __tmp += __off;
111 return __tmp;
114 fpos __tmp(*this);
115 __tmp -= __off;
116 return __tmp;
H A D_list.h127 _Self __tmp = *this; local
129 return __tmp;
136 _Self __tmp = *this; local
138 return __tmp;
425 _Node_base* __tmp = _M_create_node(__x); local
428 __tmp->_M_next = __n;
429 __tmp->_M_prev = __p;
430 __p->_M_next = __tmp;
431 __n->_M_prev = __tmp;
432 return iterator(__tmp);
545 iterator __tmp = end(); local
653 _Node_base* __tmp = __p; local
[all...]
H A D_iterator.h76 _Iterator __tmp = current; local
77 return *--__tmp;
85 _Self __tmp = *this; local
87 return __tmp;
94 _Self __tmp = *this; local
96 return __tmp;
H A D_bitset.h640 size_t __tmp = _Nb; local
641 const size_t __Nbits = (min) (__tmp, (min) (__n, __s.size() - __pos));
763 string __tmp;
764 __tmp.reserve(_Nb);
783 __tmp.push_back(__c);
791 if (__tmp.empty())
794 __x._M_copy_from_string(__tmp, __STATIC_CAST(size_t,0), _Nb);
803 string __tmp;
804 __x._M_copy_to_string(__tmp);
805 return __os << __tmp;
[all...]
H A D_stack.h91 _Sequence __tmp = c; local
93 __x.c = __tmp;
H A D_string_base.h173 _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;
H A D_list.c57 _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);
H A D_istream.c215 short __tmp = __STATIC_CAST(short, __lval);
219 if ((__tmp != __lval) && ((long)__uval != __lval))
222 __val = __tmp;
233 int __tmp = __lval;
237 if ((__tmp != __lval) && ((long)__uval != __lval))
240 __val = __tmp;
317 typename _Traits::int_type __tmp = _Traits::eof();
324 __tmp = this->rdbuf()->sgetc();
329 if (this->_S_eof(__tmp))
333 return __tmp;
[all...]
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
H A D_iterator.h255 _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...]
/ndk/sources/cxx-stl/stlport/src/
H A Dlock_free_slist.h90 int __tmp; local
100 :"=a" (__result), "=d" (__tmp)
115 int __tmp; local
125 :"=a" (__result), "=d" (__tmp)

Completed in 162 milliseconds

12