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

123

/external/clang/lib/Headers/
H A Drdseedintrin.h33 _rdseed16_step(unsigned short *__p) argument
35 return __builtin_ia32_rdseed16_step(__p);
39 _rdseed32_step(unsigned int *__p) argument
41 return __builtin_ia32_rdseed32_step(__p);
46 _rdseed64_step(unsigned long long *__p) argument
48 return __builtin_ia32_rdseed64_step(__p);
H A Dimmintrin.h81 _rdrand16_step(unsigned short *__p) argument
83 return __builtin_ia32_rdrand16_step(__p);
87 _rdrand32_step(unsigned int *__p) argument
89 return __builtin_ia32_rdrand32_step(__p);
94 _rdrand64_step(unsigned long long *__p) argument
96 return __builtin_ia32_rdrand64_step(__p);
H A Dammintrin.h55 _mm_stream_sd(double *__p, __m128d __a) argument
57 __builtin_ia32_movntsd(__p, (__v2df)__a);
61 _mm_stream_ss(float *__p, __m128 __a) argument
63 __builtin_ia32_movntss(__p, (__v4sf)__a);
H A Dmm_malloc.h69 _mm_free(void *__p) argument
71 free(__p);
H A Dpmmintrin.h34 _mm_lddqu_si128(__m128i const *__p) argument
36 return (__m128i)__builtin_ia32_lddqu((char const *)__p);
104 _mm_monitor(void const *__p, unsigned __extensions, unsigned __hints) argument
106 __builtin_ia32_monitor((void *)__p, __extensions, __hints);
H A Dxmmintrin.h513 _mm_loadh_pi(__m128 __a, const __m64 *__p) argument
519 __mm_loadh_pi_v2f32 __b = ((struct __mm_loadh_pi_struct*)__p)->__u;
525 _mm_loadl_pi(__m128 __a, const __m64 *__p) argument
531 __mm_loadl_pi_v2f32 __b = ((struct __mm_loadl_pi_struct*)__p)->__u;
537 _mm_load_ss(const float *__p) argument
542 float __u = ((struct __mm_load_ss_struct*)__p)->__u;
547 _mm_load1_ps(const float *__p) argument
552 float __u = ((struct __mm_load1_ps_struct*)__p)->__u;
559 _mm_load_ps(const float *__p) argument
561 return *(__m128*)__p;
565 _mm_loadu_ps(const float *__p) argument
574 _mm_loadr_ps(const float *__p) argument
618 _mm_storeh_pi(__m64 *__p, __m128 __a) argument
624 _mm_storel_pi(__m64 *__p, __m128 __a) argument
630 _mm_store_ss(float *__p, __m128 __a) argument
639 _mm_storeu_ps(float *__p, __m128 __a) argument
645 _mm_store1_ps(float *__p, __m128 __a) argument
652 _mm_store_ps1(float *__p, __m128 __a) argument
658 _mm_store_ps(float *__p, __m128 __a) argument
664 _mm_storer_ps(float *__p, __m128 __a) argument
683 _mm_stream_pi(__m64 *__p, __m64 __a) argument
689 _mm_stream_ps(float *__p, __m128 __a) argument
756 _mm_maskmove_si64(__m64 __d, __m64 __n, char *__p) argument
[all...]
/external/clang/test/CodeGenCXX/
H A DDynArrayInit.cpp7 inline void* operator new[](unsigned long, void* __p) { return __p; } argument
H A Ddebug-info-template-partial-specialization.cpp25 unique_ptr(pointer __p, _Dp __d) {} argument
/external/tcpdump/
H A Dcpack.h49 #define cpack_int8(__s, __p) cpack_uint8((__s), (u_int8_t*)(__p))
50 #define cpack_int16(__s, __p) cpack_uint16((__s), (u_int16_t*)(__p))
51 #define cpack_int32(__s, __p) cpack_uint32((__s), (u_int32_t*)(__p))
52 #define cpack_int64(__s, __p) cpack_uint64((__s), (u_int64_t*)(__p))
/external/stlport/stlport/stl/
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_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_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...]
H A D_alloc.h80 static void _STLP_CALL deallocate(void* __p, size_t /* __n */) { free((char*)__p); } argument
93 static void _STLP_CALL deallocate(void* __p, size_t) { __stl_delete(__p); } argument
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) argument
161 { if (__n > (size_t)_MAX_BYTES) __stl_delete(__p); else _M_deallocate(__p, __
317 deallocate(pointer __p, size_type __n) argument
331 construct(pointer __p, const_reference __val) argument
332 destroy(pointer __p) argument
480 _STLP_alloc_proxy(const _MaybeReboundAlloc& __a, _Value __p) argument
540 deallocate(_Tp* __p, size_type __n) argument
[all...]
H A D_rope.h140 inline void _S_construct_null_aux(_CharT *__p, const __true_type&) argument
141 { *__p = 0; }
144 inline void _S_construct_null_aux(_CharT *__p, const __false_type&) argument
145 { _STLP_STD::_Construct(__p); }
148 inline void _S_construct_null(_CharT *__p) { argument
150 _S_construct_null_aux(__p, _Char_Is_Integral());
634 _Rope_self_destruct_ptr(_Rope_RopeRep<_CharT,_Alloc>* __p) : _M_ptr(__p) {} argument
664 _Rope_char_ref_proxy(_My_rope* __r, size_t __p) : argument
665 _M_pos(__p), _M_current_vali
672 _Rope_char_ref_proxy(_My_rope* __r, size_t __p, _CharT __c) argument
1732 insert(size_t __p, const _Self& __r) argument
1738 insert(size_t __p, size_t __n, _CharT __c) argument
1743 insert(size_t __p, const _CharT* __i, size_t __n) argument
1755 insert(size_t __p, const _CharT* __c_string) argument
1759 insert(size_t __p, _CharT __c) argument
1763 insert(size_t __p) argument
1768 insert(size_t __p, const _CharT* __i, const _CharT* __j) argument
1773 insert(size_t __p, const const_iterator& __i, const const_iterator& __j) argument
1779 insert(size_t __p, const iterator& __i, const iterator& __j) argument
1786 replace(size_t __p, size_t __n, const _Self& __r) argument
1791 replace(size_t __p, size_t __n, const _CharT* __i, size_t __i_len) argument
1797 replace(size_t __p, size_t __n, _CharT __c) argument
1802 replace(size_t __p, size_t __n, const _CharT* __c_string) argument
1807 replace(size_t __p, size_t __n, const _CharT* __i, const _CharT* __j) argument
1813 replace(size_t __p, size_t __n, const const_iterator& __i, const const_iterator& __j) argument
1819 replace(size_t __p, size_t __n, const iterator& __i, const iterator& __j) argument
1826 replace(size_t __p, _CharT __c) argument
1832 replace(size_t __p, const _Self& __r) argument
1836 replace(size_t __p, const _CharT* __i, size_t __i_len) argument
1840 replace(size_t __p, const _CharT* __c_string) argument
1844 replace(size_t __p, const _CharT* __i, const _CharT* __j) argument
1848 replace(size_t __p, const const_iterator& __i, const const_iterator& __j) argument
1853 replace(size_t __p, const iterator& __i, const iterator& __j) argument
1859 erase(size_t __p, size_t __n) argument
1865 erase(size_t __p) argument
1870 insert(const iterator& __p, const _Self& __r) argument
1872 insert(const iterator& __p, size_t __n, _CharT __c) argument
1874 insert(const iterator& __p, _CharT __c) argument
1878 insert(const iterator& __p, const _CharT* c_string) argument
1880 insert(const iterator& __p, const _CharT* __i, size_t __n) argument
1882 insert(const iterator& __p, const _CharT* __i, const _CharT* __j) argument
1885 insert(const iterator& __p, const const_iterator& __i, const const_iterator& __j) argument
1888 insert(const iterator& __p, const iterator& __i, const iterator& __j) argument
1893 replace(const iterator& __p, const iterator& __q, const _Self& __r) argument
1896 replace(const iterator& __p, const iterator& __q, _CharT __c) argument
1898 replace(const iterator& __p, const iterator& __q, const _CharT* __c_string) argument
1901 replace(const iterator& __p, const iterator& __q, const _CharT* __i, size_t __n) argument
1904 replace(const iterator& __p, const iterator& __q, const _CharT* __i, const _CharT* __j) argument
1907 replace(const iterator& __p, const iterator& __q, const const_iterator& __i, const const_iterator& __j) argument
1910 replace(const iterator& __p, const iterator& __q, const iterator& __i, const iterator& __j) argument
1915 replace(const iterator& __p, const _Self& __r) argument
1917 replace(const iterator& __p, _CharT __c) argument
1919 replace(const iterator& __p, const _CharT* __c_string) argument
1921 replace(const iterator& __p, const _CharT* __i, size_t __n) argument
1923 replace(const iterator& __p, const _CharT* __i, const _CharT* __j) argument
1925 replace(const iterator& __p, const_iterator __i, const_iterator __j) argument
1928 replace(const iterator& __p, iterator __i, iterator __j) argument
1932 erase(const iterator& __p, const iterator& __q) argument
1937 erase(const iterator& __p) argument
[all...]
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_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_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_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_iostream_string.h69 void deallocate(pointer __p, size_type __n) { argument
70 if (__p != _M_static_buf) _Base::deallocate(__p, __n);
/external/clang/test/Analysis/
H A Dnew-with-exceptions.cpp10 inline void* operator new(size_t, void* __p) throw() argument
12 return __p;
/external/clang/test/Analysis/diagnostics/Inputs/include/
H A Dreport-issues-within-main-file.h6 auto_ptr(_Tp* __p = 0) throw() : _M_ptr(__p) { }
/external/stlport/src/
H A Dallocators.cpp64 inline void __stlp_delete_chunck(void* __p) { ::operator delete(__p, __FILE__, __LINE__); } argument
76 inline void __stlp_delete_chunck(void* __p) { _STLP_VENDOR_CSTD::free(__p); } argument
80 inline void __stlp_delete_chunck(void* __p) { _STLP_STD::__stl_delete(__p); } argument
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) { argument
342 _Obj * __pobj = __STATIC_CAST(_Obj*, __p);
496 _M_deallocate(void *__p, size_t __n) argument
745 _M_deallocate(void *__p, size_t __n) argument
1014 deallocate(void *__p, size_t __n) argument
1059 deallocate(void *__p, size_t __n, __state_type* __a) argument
1078 reallocate(void *__p, size_t __old_sz, size_t& __new_sz) argument
1104 deallocate(void *__p, size_t __n) argument
1108 deallocate(void *__p, size_t __n, __state_type* __a) argument
1110 reallocate(void *__p, size_t __old_sz, size_t& __new_sz) argument
[all...]
/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/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...]
/external/libcxx/src/
H A Dfuture.cpp114 __assoc_sub_state::set_exception(exception_ptr __p) argument
121 __exception_ = __p;
128 __assoc_sub_state::set_exception_at_thread_exit(exception_ptr __p) argument
135 __exception_ = __p;
254 promise<void>::set_exception(exception_ptr __p) argument
260 __state_->set_exception(__p);
274 promise<void>::set_exception_at_thread_exit(exception_ptr __p) argument
280 __state_->set_exception_at_thread_exit(__p);

Completed in 404 milliseconds

123