Searched refs:__p (Results 1 - 25 of 149) sorted by relevance

123456

/haiku-buildtools/gcc/fixincludes/tests/base/rtldef/
H A Dstring.h13 define FD_ZERO(__p) memset((__p), 0, sizeof(*(__p)))
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/tree-ssa/
H A Dpr37284.C4 void* operator new(__SIZE_TYPE__, void* __p) throw() argument
6 return __p;
13 void construct(_Tp* __p, const _Tp& __val) argument
15 ::new((void *)__p) _Tp(__val);
H A Dpr41428.C5 inline void *operator new (__SIZE_TYPE__, void *__p) throw () { return __p; } argument
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dforwprop-29.c9 int __p = *x != y; local
10 if (__builtin_constant_p (__p) && __p)
12 if (__p)
19 int __p = *x != y; local
20 if (__builtin_constant_p (__p) && __p)
22 if (__p)
/haiku-buildtools/gcc/libstdc++-v3/include/experimental/
H A Dfs_ops.h54 path absolute(const path& __p, const path& __base = current_path());
56 path canonical(const path& __p, const path& __base = current_path());
57 path canonical(const path& __p, error_code& __ec);
58 path canonical(const path& __p, const path& __base, error_code& __ec);
88 bool create_directories(const path& __p);
89 bool create_directories(const path& __p, error_code& __ec) noexcept;
91 bool create_directory(const path& __p);
92 bool create_directory(const path& __p, error_code& __ec) noexcept;
94 bool create_directory(const path& __p, const path& attributes);
95 bool create_directory(const path& __p, cons
120 exists(const path& __p) argument
144 is_block_file(const path& __p) argument
156 is_character_file(const path& __p) argument
168 is_directory(const path& __p) argument
183 is_fifo(const path& __p) argument
198 is_other(const path& __p) argument
210 is_regular_file(const path& __p) argument
222 is_socket(const path& __p) argument
234 is_symlink(const path& __p) argument
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A D980414-1.c12 long __p = (long) __y; local
13 if (__y == (double) __p)
16 if (__p == 0)
18 if (__p < 0)
20 __p = -__p;
25 if (__p & 1)
27 __p >>= 1;
28 if (__p == 0)
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/torture/
H A Dpr38747.C4 inline void *operator new (__SIZE_TYPE__, void *__p) throw () { return __p; } argument
H A Dpr34241.C3 inline void *operator new (__SIZE_TYPE__, void *__p) throw () argument
5 return __p;
H A Dpr35164-2.C8 __shared_ptr(_Tp* __p);
9 void reset(int * __p) { argument
10 __shared_ptr(__p).swap(*this);
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dshared_ptr_atomic.h65 * @param __p A non-null pointer to a shared_ptr object.
66 * @return True if atomic access to @c *__p is lock-free, false otherwise.
71 atomic_is_lock_free(const __shared_ptr<_Tp, _Lp>* __p) argument
82 atomic_is_lock_free(const shared_ptr<_Tp>* __p) argument
83 { return std::atomic_is_lock_free<_Tp, __default_lock_policy>(__p); }
89 * @param __p A non-null pointer to a shared_ptr object.
90 * @return @c *__p
98 atomic_load_explicit(const shared_ptr<_Tp>* __p, memory_order) argument
100 _Sp_locker __lock{__p};
101 return *__p;
106 atomic_load(const shared_ptr<_Tp>* __p) argument
111 atomic_load_explicit(const __shared_ptr<_Tp, _Lp>* __p, memory_order) argument
119 atomic_load(const __shared_ptr<_Tp, _Lp>* __p) argument
134 atomic_store_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r, memory_order) argument
143 atomic_store(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r) argument
148 atomic_store_explicit(__shared_ptr<_Tp, _Lp>* __p, __shared_ptr<_Tp, _Lp> __r, memory_order) argument
158 atomic_store(__shared_ptr<_Tp, _Lp>* __p, __shared_ptr<_Tp, _Lp> __r) argument
171 atomic_exchange_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r, memory_order) argument
181 atomic_exchange(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r) argument
189 atomic_exchange_explicit(__shared_ptr<_Tp, _Lp>* __p, __shared_ptr<_Tp, _Lp> __r, memory_order) argument
200 atomic_exchange(__shared_ptr<_Tp, _Lp>* __p, __shared_ptr<_Tp, _Lp> __r) argument
220 atomic_compare_exchange_strong_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, shared_ptr<_Tp> __w, memory_order, memory_order) argument
242 atomic_compare_exchange_strong(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, shared_ptr<_Tp> __w) argument
251 atomic_compare_exchange_weak_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, shared_ptr<_Tp> __w, memory_order __success, memory_order __failure) argument
263 atomic_compare_exchange_weak(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, shared_ptr<_Tp> __w) argument
272 atomic_compare_exchange_strong_explicit(__shared_ptr<_Tp, _Lp>* __p, __shared_ptr<_Tp, _Lp>* __v, __shared_ptr<_Tp, _Lp> __w, memory_order, memory_order) argument
294 atomic_compare_exchange_strong(__shared_ptr<_Tp, _Lp>* __p, __shared_ptr<_Tp, _Lp>* __v, __shared_ptr<_Tp, _Lp> __w) argument
304 atomic_compare_exchange_weak_explicit(__shared_ptr<_Tp, _Lp>* __p, __shared_ptr<_Tp, _Lp>* __v, __shared_ptr<_Tp, _Lp> __w, memory_order __success, memory_order __failure) argument
316 atomic_compare_exchange_weak(__shared_ptr<_Tp, _Lp>* __p, __shared_ptr<_Tp, _Lp>* __v, __shared_ptr<_Tp, _Lp> __w) argument
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/lto/
H A D20101010-4_0.C7 shared_ptr(nullptr_t __p);
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/cilk-plus/AN/
H A Dpr57457.c19 const void *__p; local
26 __p = (void *) (((const char *) __base) +
29 __p);
36 __p;
/haiku-buildtools/gcc/libstdc++-v3/config/cpu/ia64/
H A Datomic_word.h40 unsigned char *__p = reinterpret_cast<unsigned char *>(__g); local
43 __asm __volatile ("ld1.acq %0 = %1" : "=r"(__c) : "m"(*__p) : "memory");
52 unsigned char *__p = reinterpret_cast<unsigned char *>(__g); local
55 __asm __volatile ("st1.rel %0 = %1" : "=m"(*__p) : "r"(1) : "memory");
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/graphite/
H A Dpr42681.C4 inline void* operator new(size_t, void* __p) throw() { return __p; } argument
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ios/cons/char/
H A D3.cc65 const char_type* __p = __s; local
66 while (__p)
67 ++__p;
68 return (__p - __s);
74 for (const char_type* __p = __s; size_t(__p - __s) < __n; ++__p)
75 if (*__p == __a) return __p;
90 for (char_type* __p
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/template/
H A Dnew3.C12 void* operator new(__SIZE_TYPE__, void* __p);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/eh/
H A Dinit-temp2.C9 explicit AutoPtr(_Tp* __p = 0) : _M_ptr(__p) {}
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/init/
H A Dcall1.C17 auto_ptr(T* __p) : p(__p) { } argument
H A Dnew16.C10 inline void* operator new(size_t, void* __p) throw() { return __p; } argument
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/warn/
H A DWstrict-aliasing-bogus-placement-new.C4 inline void *operator new (__SIZE_TYPE__, void *__p) throw() { return __p; } argument
/haiku-buildtools/gcc/libstdc++-v3/include/ext/
H A Dvstring_util.h134 _S_copy_chars(_CharT* __p, _Iterator __k1, _Iterator __k2) argument
136 for (; __k1 != __k2; ++__k1, ++__p)
137 traits_type::assign(*__p, *__k1); // These types are off.
141 _S_copy_chars(_CharT* __p, __sso_iterator __k1, __sso_iterator __k2) argument
142 { _S_copy_chars(__p, __k1.base(), __k2.base()); }
145 _S_copy_chars(_CharT* __p, __const_sso_iterator __k1, argument
147 { _S_copy_chars(__p, __k1.base(), __k2.base()); }
150 _S_copy_chars(_CharT* __p, __rc_iterator __k1, __rc_iterator __k2) argument
151 { _S_copy_chars(__p, __k1.base(), __k2.base()); }
154 _S_copy_chars(_CharT* __p, __const_rc_iterato argument
159 _S_copy_chars(_CharT* __p, _CharT* __k1, _CharT* __k2) argument
163 _S_copy_chars(_CharT* __p, const _CharT* __k1, const _CharT* __k2) argument
[all...]
H A Dmalloc_allocator.h109 // __p is not permitted to be a null pointer.
111 deallocate(pointer __p, size_type) argument
112 { std::free(static_cast<void*>(__p)); }
121 construct(_Up* __p, _Args&&... __args) argument
122 { ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
126 destroy(_Up* __p) { __p->~_Up(); } argument
131 construct(pointer __p, const _Tp& __val) argument
132 { ::new((void *)__p) value_type(__val); }
135 destroy(pointer __p) { __ argument
[all...]
H A Dnew_allocator.h107 // __p is not permitted to be a null pointer.
109 deallocate(pointer __p, size_type) argument
110 { ::operator delete(__p); }
119 construct(_Up* __p, _Args&&... __args) argument
120 { ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
124 destroy(_Up* __p) { __p->~_Up(); } argument
129 construct(pointer __p, const _Tp& __val) argument
130 { ::new((void *)__p) _Tp(__val); }
133 destroy(pointer __p) { __ argument
[all...]
H A Dextptr_allocator.h98 void deallocate(pointer __p, size_type __n) argument
99 { _M_real_alloc.deallocate(__p.get(), __n); }
107 construct(_Up* __p, _Args&&... __args) argument
108 { ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
112 construct(pointer __p, _Args&&... __args) argument
113 { construct(__p.get(), std::forward<_Args>(__args)...); }
117 destroy(_Up* __p) argument
118 { __p->~_Up(); }
120 void destroy(pointer __p) argument
121 { destroy(__p
125 construct(pointer __p, const _Tp& __val) argument
128 destroy(pointer __p) argument
[all...]
/haiku-buildtools/legacy/gcc/libstdc++/std/
H A Dvalarray_array.h168 _Array<_Tp>::_Array (_Tp* const __restrict__ __p) : _M_data (__p) {} argument
193 for (_Tp* __p=__a._M_data; __p<__a._M_data+__n; ++__p) \
194 *__p _Op##= __t; \
201 _Tp* __p (__a._M_data); \
202 for (_Tp* __q=__b._M_data; __q<__b._M_data+__n; ++__p, ++__q) \
203 *__p _Op##= *__q; \
211 _Tp* __p (__
[all...]

Completed in 321 milliseconds

123456