HomeSort by relevance Sort by last modified time
    Searched refs:__p (Results 26 - 50 of 153) sorted by null

12 3 4 5 6 7

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
pod_char_traits.h 120 const char_type* __p = __s; local
121 while (__p->value)
122 ++__p;
123 return (__p - __s);
129 for (const char_type* __p = __s; size_t(__p - __s) < __n; ++__p)
130 if (*__p == __a)
131 return __p;
array_allocator.h 76 construct(pointer __p, const _Tp& __val)
77 { ::new((void *)__p) value_type(__val); }
82 construct(pointer __p, _Args&&... __args)
83 { ::new((void *)__p) _Tp(std::forward<_Args>(__args)...); }
87 destroy(pointer __p) { __p->~_Tp(); }
debug_allocator.h 105 deallocate(pointer __p, size_type __n)
107 if (__p)
109 pointer __real_p = __p - _M_extra;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
shared_ptr.h 73 _Sp_counted_ptr(_Ptr __p)
74 : _M_ptr(__p) { }
120 * @pre __d(__p) must not throw.
122 _Sp_counted_deleter(_Ptr __p, _Deleter __d)
123 : _Base_type(__p), _M_del(__d, _Alloc()) { }
127 * @pre __d(__p) must not throw.
129 _Sp_counted_deleter(_Ptr __p, _Deleter __d, const _Alloc& __a)
130 : _Base_type(__p), _M_del(__d, __a) { }
157 void operator()(_Tp* __p) const { if (__p) __p->~_Tp();
174 void* __p = &_M_storage; local
184 void* __p = &_M_storage; local
861 void* __p = _M_refcount._M_get_deleter(typeid(__tag)); local
    [all...]
unique_ptr.h 103 unique_ptr(pointer __p)
104 : _M_t(__p, deleter_type())
108 unique_ptr(pointer __p,
111 : _M_t(__p, __d) { }
113 unique_ptr(pointer __p,
115 : _M_t(std::move(__p), std::move(__d))
191 pointer __p = get(); local
193 return __p;
197 reset(pointer __p = pointer())
199 if (__p != get()
333 pointer __p = get(); local
    [all...]
valarray_array.h 65 __valarray_release_memory(void* __p)
66 { operator delete(__p); }
513 _Array<_Tp>::_Array(_Tp* const __restrict__ __p)
514 : _M_data (__p) {}
537 for (_Tp* __p = __a._M_data; __p < __a._M_data + __n; ++__p) \
538 *__p _Op##= __t; \
545 _Tp* __p = __a._M_data; \
546 for (_Tp* __q = __b._M_data; __q < __b._M_data + __n; ++__p, ++__q)
    [all...]
  /external/stlport/stlport/stl/
_alloc.h 80 static void _STLP_CALL deallocate(void* __p, size_t /* __n */) { free((char*)__p); }
93 static void _STLP_CALL deallocate(void* __p, size_t) { __stl_delete(__p); }
150 /* __p may not be 0 */
151 static void _STLP_CALL _M_deallocate(void *__p, size_t __n);
159 /* __p may not be 0 */
160 static void _STLP_CALL deallocate(void *__p, size_t __n)
161 { if (__n > (size_t)_MAX_BYTES) __stl_delete(__p); else _M_deallocate(__p, __n);
    [all...]
_rope.h 140 inline void _S_construct_null_aux(_CharT *__p, const __true_type&)
141 { *__p = 0; }
144 inline void _S_construct_null_aux(_CharT *__p, const __false_type&)
145 { _STLP_STD::_Construct(__p); }
148 inline void _S_construct_null(_CharT *__p) {
150 _S_construct_null_aux(__p, _Char_Is_Integral());
634 _Rope_self_destruct_ptr(_Rope_RopeRep<_CharT,_Alloc>* __p) : _M_ptr(__p) {}
664 _Rope_char_ref_proxy(_My_rope* __r, size_t __p) :
665 _M_pos(__p), _M_current_valid(false), _M_root(__r) {
    [all...]
_pthread_alloc.h 79 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) {
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) _Tp(__val);
    [all...]
_new.h 132 inline void _STLP_CALL __stl_delete(void* __p) { ::operator delete(__p, __FILE__, __LINE__); }
135 inline void _STLP_CALL __stl_delete(void* __p) { ::operator delete(__p); }
_function_adaptors.h 71 _Result operator ()(_Tp* __p) const { return (__p->*_M_f)(); }
84 _Result operator ()(_Tp* __p, _Arg __x) const { return (__p->*_M_f)(__x); }
97 _Result operator ()(const _Tp* __p) const { return (__p->*_M_f)(); }
110 _Result operator ()(const _Tp* __p, _Arg __x) const {
111 return (__p->*_M_f)(__x); }
124 _Result operator ()(_Tp& __p) const { return (__p.*_M_f)();
    [all...]
_tree.h 377 _Base_ptr _M_copy(_Base_ptr __x, _Base_ptr __p);
503 pair<iterator,iterator> __p = equal_range(__x); local
504 size_type __n = _STLP_STD::distance(__p.first, __p.second);
505 erase(__p.first, __p.second);
597 pair<const_iterator, const_iterator> __p = equal_range(__x); local
598 return _STLP_STD::distance(__p.first, __p.second);
616 pair<iterator, iterator> __p; local
629 pair<const_iterator, const_iterator> __p; local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_alloc.h 80 static void _STLP_CALL deallocate(void* __p, size_t /* __n */) { free((char*)__p); }
93 static void _STLP_CALL deallocate(void* __p, size_t) { __stl_delete(__p); }
150 /* __p may not be 0 */
151 static void _STLP_CALL _M_deallocate(void *__p, size_t __n);
159 /* __p may not be 0 */
160 static void _STLP_CALL deallocate(void *__p, size_t __n)
161 { if (__n > (size_t)_MAX_BYTES) __stl_delete(__p); else _M_deallocate(__p, __n);
    [all...]
_rope.h 140 inline void _S_construct_null_aux(_CharT *__p, const __true_type&)
141 { *__p = 0; }
144 inline void _S_construct_null_aux(_CharT *__p, const __false_type&)
145 { _STLP_STD::_Construct(__p); }
148 inline void _S_construct_null(_CharT *__p) {
150 _S_construct_null_aux(__p, _Char_Is_Integral());
634 _Rope_self_destruct_ptr(_Rope_RopeRep<_CharT,_Alloc>* __p) : _M_ptr(__p) {}
664 _Rope_char_ref_proxy(_My_rope* __r, size_t __p) :
665 _M_pos(__p), _M_current_valid(false), _M_root(__r) {
    [all...]
_pthread_alloc.h 79 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) {
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) _Tp(__val);
    [all...]
_new.h 132 inline void _STLP_CALL __stl_delete(void* __p) { ::operator delete(__p, __FILE__, __LINE__); }
135 inline void _STLP_CALL __stl_delete(void* __p) { ::operator delete(__p); }
_function_adaptors.h 71 _Result operator ()(_Tp* __p) const { return (__p->*_M_f)(); }
84 _Result operator ()(_Tp* __p, _Arg __x) const { return (__p->*_M_f)(__x); }
97 _Result operator ()(const _Tp* __p) const { return (__p->*_M_f)(); }
110 _Result operator ()(const _Tp* __p, _Arg __x) const {
111 return (__p->*_M_f)(__x); }
124 _Result operator ()(_Tp& __p) const { return (__p.*_M_f)();
    [all...]
_tree.h 377 _Base_ptr _M_copy(_Base_ptr __x, _Base_ptr __p);
503 pair<iterator,iterator> __p = equal_range(__x); local
504 size_type __n = _STLP_STD::distance(__p.first, __p.second);
505 erase(__p.first, __p.second);
597 pair<const_iterator, const_iterator> __p = equal_range(__x); local
598 return _STLP_STD::distance(__p.first, __p.second);
616 pair<iterator, iterator> __p; local
629 pair<const_iterator, const_iterator> __p; local
    [all...]
  /external/kernel-headers/original/linux/
percpu.h 31 struct percpu_data *__p = (struct percpu_data *)~(unsigned long)(ptr); \
32 (__typeof__(ptr))__p->ptrs[(cpu)]; \
  /bionic/libc/kernel/arch-sh/asm/
posix_types_32.h 73 static __inline__ int __FD_ISSET(unsigned long __fd, const __kernel_fd_set *__p)
77 return (__p->fds_bits[__tmp] & (1UL<<__rem)) != 0;
81 static __inline__ void __FD_ZERO(__kernel_fd_set *__p)
83 unsigned long *__tmp = __p->fds_bits;
posix_types_64.h 73 static __inline__ int __FD_ISSET(unsigned long __fd, const __kernel_fd_set *__p)
77 return (__p->fds_bits[__tmp] & (1UL<<__rem)) != 0;
81 static __inline__ void __FD_ZERO(__kernel_fd_set *__p)
83 unsigned long *__tmp = __p->fds_bits;
  /external/kernel-headers/original/asm-arm/
uaccess.h 102 #define __get_user_x(__r2,__p,__e,__s,__i...) \
107 : "0" (__p) \
112 const register typeof(*(p)) __user *__p asm("r0") = (p);\
115 switch (sizeof(*(__p))) { \
117 __get_user_x(__r2, __p, __e, 1, "lr"); \
120 __get_user_x(__r2, __p, __e, 2, "r3", "lr"); \
123 __get_user_x(__r2, __p, __e, 4, "lr"); \
136 #define __put_user_x(__r2,__p,__e,__s) \
141 : "0" (__p), "r" (__r2) \
147 const register typeof(*(p)) __user *__p asm("r0") = (p);
    [all...]
  /external/stlport/src/
allocators.cpp 64 inline void __stlp_delete_chunck(void* __p) { ::operator delete(__p, __FILE__, __LINE__); }
76 inline void __stlp_delete_chunck(void* __p) { _STLP_VENDOR_CSTD::free(__p); }
80 inline void __stlp_delete_chunck(void* __p) { _STLP_STD::__stl_delete(__p); }
313 /* __p may not be 0 */
314 static void _M_deallocate(void *__p, size_t __n);
340 void __node_alloc_impl::_M_deallocate(void *__p, size_t __n) {
342 _Obj * __pobj = __STATIC_CAST(_Obj*, __p);
    [all...]
  /external/stlport/test/eh/
Prefix.h 148 // __p is permitted to be a null pointer, only if n==0.
149 void deallocate(pointer __p, size_type __n) const {
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, __val);
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
allocators.cpp 64 inline void __stlp_delete_chunck(void* __p) { ::operator delete(__p, __FILE__, __LINE__); }
76 inline void __stlp_delete_chunck(void* __p) { _STLP_VENDOR_CSTD::free(__p); }
80 inline void __stlp_delete_chunck(void* __p) { _STLP_STD::__stl_delete(__p); }
313 /* __p may not be 0 */
314 static void _M_deallocate(void *__p, size_t __n);
340 void __node_alloc_impl::_M_deallocate(void *__p, size_t __n) {
342 _Obj * __pobj = __STATIC_CAST(_Obj*, __p);
    [all...]

Completed in 1446 milliseconds

12 3 4 5 6 7