Searched defs:__p (Results 1 - 25 of 38) sorted by relevance

12

/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_alloc.c55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) { argument
56 __alloc_header * __real_p = (__alloc_header*)((char *)__p -(long)__extra_before);
64 for (__tmp = (unsigned char*)(__real_p + 1); __tmp < (unsigned char*)__p; ++__tmp) {
70 for (__tmp= ((unsigned char*)__p) + __n * sizeof(value_type);
77 memset((char*)__p, __shred_byte, __n * sizeof(value_type));
H A D_new.h132 inline void _STLP_CALL __stl_delete(void* __p) { ::operator delete(__p, __FILE__, __LINE__); } argument
135 inline void _STLP_CALL __stl_delete(void* __p) { ::operator delete(__p); }
H A D_auto_ptr.h37 auto_ptr_ref(__ptr_base& __r, _Tp* __p) : _M_r(__r), _M_p(__p) { } argument
H A D_iostream_string.h69 void deallocate(pointer __p, size_type __n) { argument
70 if (__p != _M_static_buf) _Base::deallocate(__p, __n);
H A D_tempbuf.h73 inline void _STLP_CALL return_temporary_buffer(_Tp* __p) { argument
75 free((char*)__p);
H A D_construct.h90 inline void _Construct_aux (_T1* __p, const __false_type&) { argument
91 new(__p) _T1();
95 inline void _Construct_aux (_T1* __p, const __true_type&) { argument
97 *__p = _T1(0);
101 *__p = _T1();
106 inline void _Construct(_T1* __p) { argument
108 memset((char*)__p, _STLP_SHRED_BYTE, sizeof(_T1));
111 _Construct_aux (__p, _HasDefaultZeroValue(__p)._Answer());
113 _Construct_aux (__p, _Is_PO
118 _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __false_type&) argument
123 _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __true_type&) argument
130 _Copy_Construct(_Tp* __p, const _Tp& __val) argument
138 _Param_Construct_aux(_T1* __p, const _T2& __val, const __false_type&) argument
143 _Param_Construct_aux(_T1* __p, const _T2& __val, const __true_type&) argument
150 _Param_Construct(_T1* __p, const _T2& __val) argument
158 _Move_Construct_Aux(_T1* __p, _T2& __val, const __false_type& ) argument
167 _Move_Construct_Aux(_T1* __p, _T2& __val, const __true_type& ) argument
174 _Move_Construct(_T1* __p, _T2& __val) argument
259 __default_constructed(_Tp* __p) argument
274 construct(_T1* __p, const _T2& __val) argument
276 construct(_T1* __p) argument
[all...]
H A D_istreambuf_iterator.h62 istreambuf_iterator(streambuf_type* __p = 0) { this->_M_init(__p); }
83 void _M_init(streambuf_type* __p) { argument
84 _M_buf = __p;
85 _M_eof = (__p == 0);
H A D_pair.h66 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} argument
H A D_algobase.c255 _ForwardIter2 __p = __p1; local
259 while (__pred(*__current, *__p)) {
260 if (++__p == __last2)
H A D_function_adaptors.h71 _Result operator ()(_Tp* __p) const { return (__p->*_M_f)(); }
84 _Result operator ()(_Tp* __p, _Arg __x) const { return (__p->*_M_f)(__x); } argument
97 _Result operator ()(const _Tp* __p) const { return (__p->*_M_f)(); }
110 _Result operator ()(const _Tp* __p, _Arg __x) const { argument
111 return (__p->*_M_f)(__x); }
124 _Result operator ()(_Tp& __p) const { return (__p
137 operator ()(_Tp& __p, _Arg __x) const argument
163 operator ()(const _Tp& __p, _Arg __x) const argument
246 operator ()(_Tp* __p, _Arg __x) const argument
272 operator ()(const _Tp* __p, _Arg __x) const argument
298 operator ()(_Tp& __p, _Arg __x) const argument
324 operator ()(const _Tp& __p, _Arg __x) const argument
[all...]
H A D_pthread_alloc.h79 static void _STLP_CALL deallocate(void *__p, size_t __n);
86 static void _STLP_CALL deallocate(void *__p, size_t __n, __state_type* __a);
88 static void * _STLP_CALL reallocate(void *__p, size_t __old_sz, size_t& __new_sz);
145 void deallocate(pointer __p, size_type __n) { argument
146 _STLP_ASSERT( (__p == 0) == (__n == 0) )
147 if (__p != 0) {
149 memset((char*)__p, _STLP_SHRED_BYTE, __n * sizeof(value_type));
151 _S_Alloc::deallocate(__p, __n * sizeof(value_type));
158 void construct(pointer __p, const _Tp& __val) { new(__p) _T argument
328 deallocate(pointer __p, size_type __n) argument
341 construct(pointer __p, const _Tp& __val) argument
[all...]
H A D_tree.c625 _Rb_tree_node_base* __p) {
626 // structural copy. __x and __p must be non-null.
628 _S_parent(__top) = __p;
633 __p = __top;
638 _S_left(__p) = __y;
639 _S_parent(__y) = __p;
642 __p = __y;
624 _M_copy(_Rb_tree_node_base* __x, _Rb_tree_node_base* __p) argument
H A D_valarray.h104 valarray(const value_type* __p, size_t __n) : _Valarray_base<_Tp>(__n) argument
105 { uninitialized_copy(__p, __p + __n, this->_M_first); }
H A D_string.c256 _CharT* basic_string<_CharT,_Traits,_Alloc> ::_M_insert_aux(_CharT* __p, argument
258 pointer __new_pos = __p;
261 _Traits::move(__p + 1, __p, this->_M_finish - __p);
262 _Traits::assign(*__p, __c);
268 __new_pos = _STLP_PRIV __ucopy(this->_M_Start(), __p, __new_start);
271 __new_finish = _STLP_PRIV __ucopy(__p, this->_M_finish, __new_finish);
H A D_string_workaround.h346 iterator insert(iterator __p, _CharT __c) argument
347 { return _Base::insert(__p, __c); }
349 void insert(iterator __p, size_t __n, _CharT __c) argument
350 { _Base::insert(__p, __n, __c); }
355 void insert(iterator __p, _InputIter __first, _InputIter __last) { argument
357 _M_insert_dispatch(__p, __first, __last, _Integral());
362 void insert(iterator __p, const _CharT* __f, const _CharT* __l) { argument
364 _M_insert(__p, __f, __l, this->_M_inside(__f));
369 void _M_insert(iterator __p, const _CharT* __f, const _CharT* __l, bool __self_ref) { argument
371 _Base::_M_insert(__p, __
388 _M_insertT(iterator __p, _InputIter __first, _InputIter __last, const input_iterator_tag &) argument
427 _M_insert_dispatch(iterator __p, _Integer __n, _Integer __x, const __true_type& ) argument
432 _M_insert_dispatch(iterator __p, _InputIter __first, _InputIter __last, const __false_type& ) argument
[all...]
H A D_threads.h71 # define _STLP_ATOMIC_EXCHANGE(__p, __q) test_and_set(__p, __q)
73 # define _STLP_ATOMIC_EXCHANGE(__p, __q) __test_and_set((unsigned long*)__p, (unsigned long)__q)
507 static __stl_atomic_t _S_swap(_STLP_VOLATILE __stl_atomic_t* __p, __stl_atomic_t __q) { argument
510 return _STLP_ATOMIC_EXCHANGE(__p, __q);
513 __stl_atomic_t __result = *__p;
514 *__p = __q;
522 __stl_atomic_t __result = *__p;
523 *__p
528 _S_swap_ptr(void* _STLP_VOLATILE* __p, void* __q) argument
566 _S_swap(_STLP_VOLATILE __stl_atomic_t* __p, __stl_atomic_t __q) argument
591 _S_swap_ptr(void* _STLP_VOLATILE* __p, void* __q) argument
623 _Atomic_swap(_STLP_VOLATILE __stl_atomic_t * __p, __stl_atomic_t __q) argument
628 _Atomic_swap_ptr(void* _STLP_VOLATILE* __p, void* __q) argument
[all...]
/ndk/tests/device/test-stlport_shared-exception/jni/
H A Dnew16.cpp10 inline void* operator new(size_t, void* __p) throw() { return __p; } argument
/ndk/tests/device/test-stlport_static-exception/jni/
H A Dnew16.cpp10 inline void* operator new(size_t, void* __p) throw() { return __p; } argument
/ndk/sources/cxx-stl/gabi++/include/
H A Dstl_pair.h82 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} argument
/ndk/sources/cxx-stl/system/include/
H A Dstl_pair.h82 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} argument
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
H A Dfuture.cpp116 __assoc_sub_state::set_exception(exception_ptr __p) argument
123 __exception_ = __p;
130 __assoc_sub_state::set_exception_at_thread_exit(exception_ptr __p) argument
137 __exception_ = __p;
256 promise<void>::set_exception(exception_ptr __p) argument
262 __state_->set_exception(__p);
276 promise<void>::set_exception_at_thread_exit(exception_ptr __p) argument
282 __state_->set_exception_at_thread_exit(__p);
H A Dthread.cpp140 static __thread_specific_ptr<__thread_struct> __p; local
141 return __p;
154 void deallocate(T* __p, size_t) {::operator delete(static_cast<void*>(__p));} argument
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
H A D_tree.h211 _STLP_STD::pair<_Base_iterator, _Base_iterator> __p; local
212 __p = _M_non_dbg_impl.equal_range_unique(__x);
213 return pair<iterator, iterator>(iterator(&_M_iter_list, __p.first), iterator(&_M_iter_list, __p.second));
217 _STLP_STD::pair<_Base_const_iterator, _Base_const_iterator> __p; local
218 __p = _M_non_dbg_impl.equal_range_unique(__x);
219 return pair<const_iterator, const_iterator>(const_iterator(&_M_iter_list, __p.first),
220 const_iterator(&_M_iter_list, __p.second));
276 pair<iterator, iterator> __p = equal_range(__x); local
277 size_type __n = _STLP_STD::distance(__p
[all...]
/ndk/tests/device/test-gnustl-full/unit/
H A Dstack_allocator.h138 void construct(pointer __p, const_reference __val) { new(__p) _Tp(__val); } argument
139 void destroy(pointer __p) { __p->~_Tp(); } argument
/ndk/tests/device/test-stlport/unit/
H A Dstack_allocator.h138 void construct(pointer __p, const_reference __val) { new(__p) _Tp(__val); } argument
139 void destroy(pointer __p) { __p->~_Tp(); } argument

Completed in 426 milliseconds

12