HomeSort by relevance Sort by last modified time
    Searched refs:__p (Results 101 - 125 of 969) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/backward/
auto_ptr.h 53 auto_ptr_ref(_Tp1* __p): _M_ptr(__p) { }
98 * @param __p A pointer (defaults to NULL).
100 * This object now @e owns the object pointed to by @a __p.
103 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { }
234 * @param __p A pointer (defaults to NULL).
236 * This object now @e owns the object pointed to by @a __p. The
240 reset(element_type* __p = 0) throw()
242 if (__p != _M_ptr
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_pair.h 108 _GLIBCXX_CONSTEXPR pair(const pair<_U1, _U2>& __p)
109 : first(__p.first), second(__p.second) { }
135 pair(pair<_U1, _U2>&& __p)
136 : first(std::forward<_U1>(__p.first)),
137 second(std::forward<_U2>(__p.second)) { }
146 operator=(const pair& __p)
148 first = __p.first;
149 second = __p.second;
154 operator=(pair&& __p)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_pair.h 108 _GLIBCXX_CONSTEXPR pair(const pair<_U1, _U2>& __p)
109 : first(__p.first), second(__p.second) { }
135 pair(pair<_U1, _U2>&& __p)
136 : first(std::forward<_U1>(__p.first)),
137 second(std::forward<_U2>(__p.second)) { }
146 operator=(const pair& __p)
148 first = __p.first;
149 second = __p.second;
154 operator=(pair&& __p)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_pair.h 108 _GLIBCXX_CONSTEXPR pair(const pair<_U1, _U2>& __p)
109 : first(__p.first), second(__p.second) { }
135 pair(pair<_U1, _U2>&& __p)
136 : first(std::forward<_U1>(__p.first)),
137 second(std::forward<_U2>(__p.second)) { }
146 operator=(const pair& __p)
148 first = __p.first;
149 second = __p.second;
154 operator=(pair&& __p)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_pair.h 108 _GLIBCXX_CONSTEXPR pair(const pair<_U1, _U2>& __p)
109 : first(__p.first), second(__p.second) { }
135 pair(pair<_U1, _U2>&& __p)
136 : first(std::forward<_U1>(__p.first)),
137 second(std::forward<_U2>(__p.second)) { }
146 operator=(const pair& __p)
148 first = __p.first;
149 second = __p.second;
154 operator=(pair&& __p)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
pool_allocator.h 167 construct(_Up* __p, _Args&&... __args)
168 { ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
172 destroy(_Up* __p) { __p->~_Up(); }
177 construct(pointer __p, const _Tp& __val)
178 { ::new((void *)__p) _Tp(__val); }
181 destroy(pointer __p) { __p->~_Tp(); }
188 deallocate(pointer __p, size_type __n);
251 __pool_alloc<_Tp>::deallocate(pointer __p, size_type __n
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
pool_allocator.h 167 construct(_Up* __p, _Args&&... __args)
168 { ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
172 destroy(_Up* __p) { __p->~_Up(); }
177 construct(pointer __p, const _Tp& __val)
178 { ::new((void *)__p) _Tp(__val); }
181 destroy(pointer __p) { __p->~_Tp(); }
188 deallocate(pointer __p, size_type __n);
251 __pool_alloc<_Tp>::deallocate(pointer __p, size_type __n
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/
pool_allocator.h 174 construct(_Up* __p, _Args&&... __args)
175 { ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
179 destroy(_Up* __p) { __p->~_Up(); }
184 construct(pointer __p, const _Tp& __val)
185 { ::new((void *)__p) _Tp(__val); }
188 destroy(pointer __p) { __p->~_Tp(); }
195 deallocate(pointer __p, size_type __n);
258 __pool_alloc<_Tp>::deallocate(pointer __p, size_type __n
    [all...]
  /external/stlport/stlport/stl/
_alloc.c 55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) {
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));
_threads.h 71 # 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) {
510 return _STLP_ATOMIC_EXCHANGE(__p, __q);
513 __stl_atomic_t __result = *__p;
514 *__p = __q;
522 __stl_atomic_t __result = *__p;
523 *__p = __q
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_alloc.c 55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) {
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));
_threads.h 71 # 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) {
510 return _STLP_ATOMIC_EXCHANGE(__p, __q);
513 __stl_atomic_t __result = *__p;
514 *__p = __q;
522 __stl_atomic_t __result = *__p;
523 *__p = __q
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_alloc.c 55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) {
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));
_threads.h 71 # 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) {
510 return _STLP_ATOMIC_EXCHANGE(__p, __q);
513 __stl_atomic_t __result = *__p;
514 *__p = __q;
522 __stl_atomic_t __result = *__p;
523 *__p = __q
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_alloc.c 55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) {
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));
_threads.h 71 # 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) {
510 return _STLP_ATOMIC_EXCHANGE(__p, __q);
513 __stl_atomic_t __result = *__p;
514 *__p = __q;
522 __stl_atomic_t __result = *__p;
523 *__p = __q
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_alloc.c 55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) {
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));
_threads.h 71 # 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) {
510 return _STLP_ATOMIC_EXCHANGE(__p, __q);
513 __stl_atomic_t __result = *__p;
514 *__p = __q;
522 __stl_atomic_t __result = *__p;
523 *__p = __q
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_alloc.c 55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) {
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));
_threads.h 71 # 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) {
510 return _STLP_ATOMIC_EXCHANGE(__p, __q);
513 __stl_atomic_t __result = *__p;
514 *__p = __q;
522 __stl_atomic_t __result = *__p;
523 *__p = __q
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_alloc.c 55 __debug_alloc<_Alloc>::deallocate(void *__p, size_t __n) {
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));
_threads.h 71 # 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) {
510 return _STLP_ATOMIC_EXCHANGE(__p, __q);
513 __stl_atomic_t __result = *__p;
514 *__p = __q;
522 __stl_atomic_t __result = *__p;
523 *__p = __q
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
atomic_0.h 45 ({ volatile __typeof__ _ATOMIC_MEMBER_* __p = &_ATOMIC_MEMBER_; \
46 volatile __atomic_flag_base* __g = __atomic_flag_for_address(__p); \
48 __typeof__ _ATOMIC_MEMBER_ __r = *__p; \
53 ({ volatile __typeof__ _ATOMIC_MEMBER_* __p = &_ATOMIC_MEMBER_; \
55 volatile __atomic_flag_base* __g = __atomic_flag_for_address(__p); \
57 *__p = __v; \
62 ({ volatile __typeof__ _ATOMIC_MEMBER_* __p = &_ATOMIC_MEMBER_; \
64 volatile __atomic_flag_base* __g = __atomic_flag_for_address(__p); \
66 __typeof__ _ATOMIC_MEMBER_ __r = *__p; \
67 *__p __o __v;
180 void* volatile* __p = &(_M_i); local
192 void* volatile* __p = &(_M_i); local
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
atomic_0.h 45 ({ volatile __typeof__ _ATOMIC_MEMBER_* __p = &_ATOMIC_MEMBER_; \
46 volatile __atomic_flag_base* __g = __atomic_flag_for_address(__p); \
48 __typeof__ _ATOMIC_MEMBER_ __r = *__p; \
53 ({ volatile __typeof__ _ATOMIC_MEMBER_* __p = &_ATOMIC_MEMBER_; \
55 volatile __atomic_flag_base* __g = __atomic_flag_for_address(__p); \
57 *__p = __v; \
62 ({ volatile __typeof__ _ATOMIC_MEMBER_* __p = &_ATOMIC_MEMBER_; \
64 volatile __atomic_flag_base* __g = __atomic_flag_for_address(__p); \
66 __typeof__ _ATOMIC_MEMBER_ __r = *__p; \
67 *__p __o __v;
180 void* volatile* __p = &(_M_i); local
192 void* volatile* __p = &(_M_i); local
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
atomic_0.h 45 ({ volatile __typeof__ _ATOMIC_MEMBER_* __p = &_ATOMIC_MEMBER_; \
46 volatile __atomic_flag_base* __g = __atomic_flag_for_address(__p); \
48 __typeof__ _ATOMIC_MEMBER_ __r = *__p; \
53 ({ volatile __typeof__ _ATOMIC_MEMBER_* __p = &_ATOMIC_MEMBER_; \
55 volatile __atomic_flag_base* __g = __atomic_flag_for_address(__p); \
57 *__p = __v; \
62 ({ volatile __typeof__ _ATOMIC_MEMBER_* __p = &_ATOMIC_MEMBER_; \
64 volatile __atomic_flag_base* __g = __atomic_flag_for_address(__p); \
66 __typeof__ _ATOMIC_MEMBER_ __r = *__p; \
67 *__p __o __v;
180 void* volatile* __p = &(_M_i); local
192 void* volatile* __p = &(_M_i); local
    [all...]

Completed in 1423 milliseconds

1 2 3 45 6 7 8 91011>>