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

12

/external/clang/test/CodeGenCXX/
H A DDynArrayInit.cpp7 inline void* operator new[](unsigned long, void* __p) { return __p; } argument
/external/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...]
/external/kernel-headers/original/asm-arm/
H A Dunaligned.h42 #define __get_unaligned_2_le(__p) \
43 (__p[0] | __p[1] << 8)
45 #define __get_unaligned_2_be(__p) \
46 (__p[0] << 8 | __p[1])
48 #define __get_unaligned_4_le(__p) \
49 (__p[0] | __p[1] << 8 | __p[
95 __put_unaligned_2_le(__u32 __v, register __u8 *__p) argument
101 __put_unaligned_2_be(__u32 __v, register __u8 *__p) argument
107 __put_unaligned_4_le(__u32 __v, register __u8 *__p) argument
113 __put_unaligned_4_be(__u32 __v, register __u8 *__p) argument
119 __put_unaligned_8_le(const unsigned long long __v, register __u8 *__p) argument
130 __put_unaligned_8_be(const unsigned long long __v, register __u8 *__p) argument
[all...]
/external/dbus/tools/
H A Ddbus-monitor.c63 gettimeofday (struct timeval *__p, argument
72 __p->tv_usec = (long) ((now.ns100 / 10LL) % DBUS_USEC_IN_SEC);
73 __p->tv_sec = (long)(((now.ns100 / 10LL) / DBUS_SECONDS_SINCE_1601) - DBUS_SECONDS_SINCE_1601);
/external/kernel-headers/original/asm-x86/
H A Dsystem_32.h164 static inline void clflush(volatile void *__p) argument
166 asm volatile("clflush %0" : "+m" (*(char __force *)__p));
/external/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...]
H A D_hashtable.h285 pair<iterator, iterator> __p = equal_range(__key); local
286 size_type __n = _STLP_STD::distance(__p.first, __p.second);
287 _Invalidate_iterators(__p.first, __p.second);
288 _M_non_dbg_impl.erase(__p.first._M_iterator, __p.second._M_iterator);
H A D_iterator.h382 __construct_checker(const value_type* __p) { argument
383 _STLP_VERBOSE_ASSERT((__p != 0), _StlMsg_INVALID_ARGUMENT)
/external/stlport/test/eh/
H A DPrefix.h148 // __p is permitted to be a null pointer, only if n==0.
149 void deallocate(pointer __p, size_type __n) const { argument
150 _STLP_ASSERT( (__p == 0) == (__n == 0) )
151 if (__p != 0) EH_STD::__new_alloc::deallocate((void*)__p, __n * sizeof(value_type));
154 void deallocate(pointer __p) const { if (__p != 0) EH_STD::__new_alloc::deallocate((void*)__p, sizeof(value_type)); }
156 void construct(pointer __p, const _Tp& __val) const { stlport::construct(__p, __va argument
[all...]
/external/stlport/test/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 255 milliseconds

12