Searched defs:__pos (Results 1 - 25 of 47) sorted by relevance

12

/external/stlport/test/unit/
H A Dbitset_test.cpp53 size_t __pos = b2._Find_first(); local
54 CPPUNIT_ASSERT( __pos == 0 );
55 __pos = b2._Find_next(__pos);
56 CPPUNIT_ASSERT( __pos == 4 );
57 __pos = b2._Find_next(__pos);
58 CPPUNIT_ASSERT( __pos == 8 );
59 __pos = b2._Find_next(__pos);
[all...]
/external/stlport/stlport/stl/
H A D_slist_base.c48 _Sl_global<_Dummy>::__splice_after(_Slist_node_base* __pos, _Slist_node_base* __head) { argument
51 _Slist_node_base* __after = __pos->_M_next;
52 __pos->_M_next = __head->_M_next;
60 _Sl_global<_Dummy>::__splice_after(_Slist_node_base* __pos, argument
63 if (__pos != __before_first && __pos != __before_last) {
65 _Slist_node_base* __after = __pos->_M_next;
67 __pos->_M_next = __first;
H A D_string_sum_methods.h30 size_type __pos, size_type __n = npos,
32 : _STLP_STRING_SUM_BASE(_Reserve_t(), (__pos <= __s.size()) ? ((min) (__n, __s.size() - __pos)) : 0, __a) {
34 if (__pos > __size)
37 _M_append_sum_pos(__s, __pos, (min) (__n, __size - __pos));
59 _CharT* _M_append_fast_pos(_STLP_PRIV __char_wrapper<_CharT> __c, _CharT *__buf, size_type /*__pos*/, size_type __n) {
66 size_type __pos, size_type __n)
67 { return uninitialized_copy(__s + __pos, __s + __pos
29 basic_string(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, size_type __pos, size_type __n = npos, const allocator_type& __a = allocator_type()) argument
65 _M_append_fast_pos(_CharT const* __s, size_type __s_size, _CharT *__buf, size_type __pos, size_type __n) argument
68 _M_append_fast_pos(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _CharT *__buf, size_type __pos, size_type __n) argument
71 _M_append_fast_pos(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _CharT *__buf, size_type __pos, size_type __n) argument
74 _M_append_fast_pos(_Self const& __s, _CharT *__buf, size_type __pos, size_type __n) argument
82 _M_append_fast_pos(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, _CharT *__buf, size_type __pos, size_type __n) argument
124 _M_append_sum_pos(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, size_type __pos, size_type __n) argument
148 _M_append_sum_no_overflow(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, size_type __pos, size_type __n) argument
[all...]
H A D_vector.c81 void vector<_Tp, _Alloc>::_M_insert_overflow_aux(pointer __pos, const _Tp& __x, const __false_type& /*DO NOT USE!!*/, argument
91 __new_finish = _STLP_PRIV __uninitialized_move(this->_M_start, __pos, __new_start, _TrivialUCopy(), _Movable());
99 __new_finish = _STLP_PRIV __uninitialized_move(__pos, this->_M_finish, __new_finish, _TrivialUCopy(), _Movable()); // copy remainder
108 void vector<_Tp, _Alloc>::_M_insert_overflow(pointer __pos, const _Tp& __x, const __true_type& /*_TrivialCopy*/, argument
112 pointer __new_finish = __STATIC_CAST(pointer, _STLP_PRIV __copy_trivial(this->_M_start, __pos, __new_start));
116 __new_finish = __STATIC_CAST(pointer, _STLP_PRIV __copy_trivial(__pos, this->_M_finish, __new_finish)); // copy remainder
122 void vector<_Tp, _Alloc>::_M_fill_insert_aux(iterator __pos, size_type __n, argument
126 _M_fill_insert_aux(__pos, __n, __x_copy, __true_type());
131 for (; __src >= __pos; --__dst, --__src) {
135 _STLP_PRIV __uninitialized_fill_n(__pos, __
140 _M_fill_insert_aux(iterator __pos, size_type __n, const _Tp& __x, const __false_type& ) argument
166 _M_fill_insert(iterator __pos, size_type __n, const _Tp& __x) argument
223 insert(iterator __pos, const _Tp& __x) argument
[all...]
H A D_map.h190 iterator insert(iterator __pos, const value_type& __x) argument
191 { return _M_t.insert_unique(__pos, __x); }
203 void erase(iterator __pos) { _M_t.erase(__pos); } argument
367 iterator insert(iterator __pos, const value_type& __x) { return _M_t.insert_equal(__pos, __x); } argument
378 void erase(iterator __pos) { _M_t.erase(__pos); } argument
H A D_ostream.h147 _Self& seekp(pos_type __pos) { argument
149 if (this->rdbuf()->pubseekpos(__pos, ios_base::out) == pos_type(-1)) {
H A D_set.h170 iterator insert(iterator __pos, const value_type& __x) argument
171 { return _M_t.insert_unique( __pos , __x); }
182 void erase(iterator __pos) { _M_t.erase( __pos ); } argument
341 iterator insert(iterator __pos, const value_type& __x) argument
342 { return _M_t.insert_equal(__pos, __x); }
354 void erase(iterator __pos) { _M_t.erase( __pos ); } argument
H A D_sstream.c358 ::seekpos(pos_type __pos, ios_base::openmode __mode) { argument
370 const off_type __n = __pos - pos_type(off_type(0));
386 return __pos;
H A D_time_facets.c82 size_t __pos = 0; local
93 if (*__first == __name[__i][__pos]) {
94 if (__pos == (__name[__i].size() - 1)) {
120 ++__first; ++__pos;
H A Dchar_traits.h89 fpos(streamoff __pos) : _M_pos(__pos), _M_st(_STLP_NULL_CHAR_INIT(_StateT)) {} argument
H A D_deque.c122 void deque<_Tp, _Alloc >::_M_fill_insert(iterator __pos, argument
127 if (__pos._M_cur == this->_M_start._M_cur) {
135 else if (__pos._M_cur == this->_M_finish._M_cur) {
144 _M_fill_insert_aux(__pos, __n, __x, _Movable());
150 void deque<_Tp, _Alloc>::insert(iterator __pos, argument
156 if (__pos._M_cur == this->_M_start._M_cur) {
164 else if (__pos._M_cur == this->_M_finish._M_cur) {
174 _M_insert_range_aux(__pos, __first, __last, __n, _Movable());
178 void deque<_Tp,_Alloc>::insert(iterator __pos, argument
184 if (__pos
208 _M_erase(iterator __pos, const __true_type& ) argument
243 _M_erase(iterator __pos, const __false_type& ) argument
464 _M_fill_insert_aux(iterator __pos, size_type __n, const value_type& __x, const __true_type& ) argument
506 _M_fill_insert_aux(iterator __pos, size_type __n, const value_type& __x, const __false_type& ) argument
562 _M_insert_range_aux(iterator __pos, const value_type* __first, const value_type* __last, size_type __n, const __true_type& ) argument
601 _M_insert_range_aux(iterator __pos, const value_type* __first, const value_type* __last, size_type __n, const __false_type& ) argument
654 _M_insert_range_aux(iterator __pos, const_iterator __first, const_iterator __last, size_type __n, const __true_type& ) argument
693 _M_insert_range_aux(iterator __pos, const_iterator __first, const_iterator __last, size_type __n, const __false_type& ) argument
[all...]
H A D_fstream.c139 streamoff __pos = _M_base._M_seek(0, ios_base::cur); local
141 return __pos >= 0 && __size > __pos ? __size - __pos : 0;
384 basic_filebuf<_CharT, _Traits>::seekpos(pos_type __pos, argument
390 streamoff __off = off_type(__pos);
392 _M_state = __pos.state();
393 return _M_seek_return(__off, __pos.state());
/external/stlport/stlport/stl/debug/
H A D_string_sum_methods.h30 size_type __pos, size_type __n = npos,
32 : _M_non_dbg_impl(_Reserve_t(), (__pos <= __s.size()) ? ((min) (__n, __s.size() - __pos)) : 0, __a),
35 if (__pos > __size)
39 _M_append_sum_pos(__s, __pos, (min) (__n, __size - __pos), _M_non_dbg_impl);
59 _Base& _M_append_fast_pos(_STLP_PRIV __char_wrapper<_CharT> __c, _Base &__str, size_type /*__pos*/, size_type __n) {
65 size_type __pos, size_type __n)
66 { return __str.append(__s + __pos, __s + __pos
29 basic_string(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, size_type __pos, size_type __n = npos, const allocator_type& __a = allocator_type()) argument
64 _M_append_fast_pos(_CharT const* __s, size_type __s_size, _Base &__str, size_type __pos, size_type __n) argument
67 _M_append_fast_pos(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _Base &__str, size_type __pos, size_type __n) argument
70 _M_append_fast_pos(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _Base &__str, size_type __pos, size_type __n) argument
73 _M_append_fast_pos(_Self const& __s, _Base &__str, size_type __pos, size_type __n) argument
80 _M_append_fast_pos(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, _Base &__str, size_type __pos, size_type __n) argument
106 _M_append_sum_pos(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, size_type __pos, size_type __n, _Base &__impl) argument
[all...]
H A D_list.h206 iterator insert(iterator __pos, const _Tp& __x = _Tp()) { argument
208 iterator insert(iterator __pos, const _Tp& __x) {
210 _STLP_DEBUG_CHECK(_STLP_PRIV __check_if_owner(&_M_iter_list,__pos))
211 return iterator(&_M_iter_list,_M_non_dbg_impl.insert(__pos._M_iterator, __x) );
215 iterator insert(iterator __pos) { return insert(__pos, _STLP_DEFAULT_CONSTRUCTED(_Tp)); } argument
220 void insert(iterator __pos, _InputIterator __first, _InputIterator __last) { argument
221 _STLP_DEBUG_CHECK(_STLP_PRIV __check_if_owner(&_M_iter_list, __pos))
223 _M_non_dbg_impl.insert(__pos._M_iterator,
229 void insert(iterator __pos, cons argument
237 insert(iterator __pos, const_iterator __first, const_iterator __last) argument
246 insert(iterator __pos, iterator __first, iterator __last) argument
257 insert(iterator __pos, size_type __n, const _Tp& __x) argument
276 erase(iterator __pos) argument
358 splice(iterator __pos, _Self& __x) argument
371 splice(iterator __pos, _Self& __x, iterator __i) argument
385 splice(iterator __pos, _Self& __x, iterator __first, iterator __last) argument
[all...]
H A D_tree.h230 iterator insert_unique(iterator __pos, const value_type& __x) { argument
231 _STLP_DEBUG_CHECK(__check_if_owner(&_M_iter_list,__pos))
232 return iterator(&_M_iter_list, _M_non_dbg_impl.insert_unique(__pos._M_iterator, __x));
234 iterator insert_equal(iterator __pos, const value_type& __x) { argument
235 _STLP_DEBUG_CHECK(__check_if_owner(&_M_iter_list, __pos))
236 return iterator(&_M_iter_list, _M_non_dbg_impl.insert_equal(__pos._M_iterator, __x));
269 void erase(iterator __pos) { argument
270 _STLP_DEBUG_CHECK(__check_if_owner(&_M_iter_list,__pos))
271 _STLP_DEBUG_CHECK(_Dereferenceable(__pos))
272 _Invalidate_iterator(__pos);
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
H A Drbug_core.c44 uint32_t __pos = 0; local
61 PAD(__pos, 8);
63 if (__pos != __len) {
79 uint32_t __pos = 0; local
96 PAD(__pos, 8);
98 if (__pos != __len) {
115 uint32_t __pos = 0; local
134 PAD(__pos, 8);
136 if (__pos != __len) {
153 uint32_t __pos local
192 uint32_t __pos = 0; local
[all...]
H A Drbug_shader.c45 uint32_t __pos = 0; local
64 PAD(__pos, 8);
66 if (__pos != __len) {
84 uint32_t __pos = 0; local
105 PAD(__pos, 8);
107 if (__pos != __len) {
126 uint32_t __pos = 0; local
149 PAD(__pos, 8);
151 if (__pos != __len) {
171 uint32_t __pos local
215 uint32_t __pos = 0; local
260 uint32_t __pos = 0; local
[all...]
H A Drbug_context.c44 uint32_t __pos = 0; local
61 PAD(__pos, 8);
63 if (__pos != __len) {
80 uint32_t __pos = 0; local
99 PAD(__pos, 8);
101 if (__pos != __len) {
119 uint32_t __pos = 0; local
140 PAD(__pos, 8);
142 if (__pos != __len) {
160 uint32_t __pos local
201 uint32_t __pos = 0; local
246 uint32_t __pos = 0; local
294 uint32_t __pos = 0; local
334 uint32_t __pos = 0; local
383 uint32_t __pos = 0; local
436 uint32_t __pos = 0; local
[all...]
H A Drbug_texture.c44 uint32_t __pos = 0; local
61 PAD(__pos, 8);
63 if (__pos != __len) {
80 uint32_t __pos = 0; local
99 PAD(__pos, 8);
101 if (__pos != __len) {
128 uint32_t __pos = 0; local
165 PAD(__pos, 8);
167 if (__pos != __len) {
191 uint32_t __pos local
245 uint32_t __pos = 0; local
299 uint32_t __pos = 0; local
366 uint32_t __pos = 0; local
[all...]
/external/mesa3d/src/gallium/auxiliary/rbug/
H A Drbug_core.c44 uint32_t __pos = 0; local
61 PAD(__pos, 8);
63 if (__pos != __len) {
79 uint32_t __pos = 0; local
96 PAD(__pos, 8);
98 if (__pos != __len) {
115 uint32_t __pos = 0; local
134 PAD(__pos, 8);
136 if (__pos != __len) {
153 uint32_t __pos local
192 uint32_t __pos = 0; local
[all...]
H A Drbug_shader.c45 uint32_t __pos = 0; local
64 PAD(__pos, 8);
66 if (__pos != __len) {
84 uint32_t __pos = 0; local
105 PAD(__pos, 8);
107 if (__pos != __len) {
126 uint32_t __pos = 0; local
149 PAD(__pos, 8);
151 if (__pos != __len) {
171 uint32_t __pos local
215 uint32_t __pos = 0; local
260 uint32_t __pos = 0; local
[all...]
H A Drbug_context.c44 uint32_t __pos = 0; local
61 PAD(__pos, 8);
63 if (__pos != __len) {
80 uint32_t __pos = 0; local
99 PAD(__pos, 8);
101 if (__pos != __len) {
119 uint32_t __pos = 0; local
140 PAD(__pos, 8);
142 if (__pos != __len) {
160 uint32_t __pos local
201 uint32_t __pos = 0; local
246 uint32_t __pos = 0; local
294 uint32_t __pos = 0; local
334 uint32_t __pos = 0; local
383 uint32_t __pos = 0; local
436 uint32_t __pos = 0; local
[all...]
H A Drbug_texture.c44 uint32_t __pos = 0; local
61 PAD(__pos, 8);
63 if (__pos != __len) {
80 uint32_t __pos = 0; local
99 PAD(__pos, 8);
101 if (__pos != __len) {
128 uint32_t __pos = 0; local
165 PAD(__pos, 8);
167 if (__pos != __len) {
191 uint32_t __pos local
245 uint32_t __pos = 0; local
299 uint32_t __pos = 0; local
366 uint32_t __pos = 0; local
[all...]
/external/pixman/pixman/
H A Dloongson-mmintrin.h391 loongson_extract_pi16 (__m64 __m, int64_t __pos) argument
396 : "f" (__m), "f" (*(__m64 *)&__pos)
402 loongson_insert_pi16 (__m64 __m1, __m64 __m2, int64_t __pos) argument
407 : "f" (__m1), "f" (__m2), "i" (__pos)
/external/stlport/stlport/stl/pointers/
H A D_vector.h176 iterator insert(iterator __pos, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type)) argument
178 iterator insert(iterator __pos, const value_type& __x)
180 { return cast_traits::to_value_type_ptr(_M_impl.insert(cast_traits::to_storage_type_ptr(__pos),
185 iterator insert(iterator __pos) argument
186 { return _M_impl.insert(cast_traits::to_storage_type_ptr(__pos)); }
196 void insert(iterator __pos, _InputIterator __first, _InputIterator __last) argument
197 { _M_impl.insert(cast_traits::to_storage_type_ptr(__pos), __first, __last); }
199 void insert(iterator __pos, const_iterator __first, const_iterator __last) { argument
200 _M_impl.insert(cast_traits::to_storage_type_ptr(__pos), cast_traits::to_storage_type_cptr(__first),
205 void insert (iterator __pos, size_typ argument
210 erase(iterator __pos) argument
[all...]

Completed in 399 milliseconds

12