| /minix3/external/bsd/llvm/dist/clang/lib/Headers/ |
| H A D | adxintrin.h | 35 unsigned int *__p) in _addcarryx_u32() argument 37 return __builtin_ia32_addcarryx_u32(__cf, __x, __y, __p); in _addcarryx_u32() 43 unsigned long long __y, unsigned long long *__p) in _addcarryx_u64() argument 45 return __builtin_ia32_addcarryx_u64(__cf, __x, __y, __p); in _addcarryx_u64() 53 unsigned int *__p) in _addcarry_u32() argument 55 return __builtin_ia32_addcarry_u32(__cf, __x, __y, __p); in _addcarry_u32() 61 unsigned long long __y, unsigned long long *__p) in _addcarry_u64() argument 63 return __builtin_ia32_addcarry_u64(__cf, __x, __y, __p); in _addcarry_u64() 69 unsigned int *__p) in _subborrow_u32() argument 71 return __builtin_ia32_subborrow_u32(__cf, __x, __y, __p); in _subborrow_u32() [all …]
|
| H A D | rdseedintrin.h | 33 _rdseed16_step(unsigned short *__p) in _rdseed16_step() argument 35 return __builtin_ia32_rdseed16_step(__p); in _rdseed16_step() 39 _rdseed32_step(unsigned int *__p) in _rdseed32_step() argument 41 return __builtin_ia32_rdseed32_step(__p); in _rdseed32_step() 46 _rdseed64_step(unsigned long long *__p) in _rdseed64_step() argument 48 return __builtin_ia32_rdseed64_step(__p); in _rdseed64_step()
|
| H A D | immintrin.h | 101 _rdrand16_step(unsigned short *__p) in _rdrand16_step() argument 103 return __builtin_ia32_rdrand16_step(__p); in _rdrand16_step() 107 _rdrand32_step(unsigned int *__p) in _rdrand32_step() argument 109 return __builtin_ia32_rdrand32_step(__p); in _rdrand32_step() 114 _rdrand64_step(unsigned long long *__p) in _rdrand64_step() argument 116 return __builtin_ia32_rdrand64_step(__p); in _rdrand64_step()
|
| H A D | xmmintrin.h | 513 _mm_loadh_pi(__m128 __a, const __m64 *__p) in _mm_loadh_pi() argument 519 __mm_loadh_pi_v2f32 __b = ((struct __mm_loadh_pi_struct*)__p)->__u; in _mm_loadh_pi() 525 _mm_loadl_pi(__m128 __a, const __m64 *__p) in _mm_loadl_pi() argument 531 __mm_loadl_pi_v2f32 __b = ((struct __mm_loadl_pi_struct*)__p)->__u; in _mm_loadl_pi() 537 _mm_load_ss(const float *__p) in _mm_load_ss() argument 542 float __u = ((struct __mm_load_ss_struct*)__p)->__u; in _mm_load_ss() 547 _mm_load1_ps(const float *__p) in _mm_load1_ps() argument 552 float __u = ((struct __mm_load1_ps_struct*)__p)->__u; in _mm_load1_ps() 559 _mm_load_ps(const float *__p) in _mm_load_ps() argument 561 return *(__m128*)__p; in _mm_load_ps() [all …]
|
| H A D | ammintrin.h | 55 _mm_stream_sd(double *__p, __m128d __a) in _mm_stream_sd() argument 57 __builtin_ia32_movntsd(__p, (__v2df)__a); in _mm_stream_sd() 61 _mm_stream_ss(float *__p, __m128 __a) in _mm_stream_ss() argument 63 __builtin_ia32_movntss(__p, (__v4sf)__a); in _mm_stream_ss()
|
| H A D | avxintrin.h | 772 _mm256_load_pd(double const *__p) in _mm256_load_pd() argument 774 return *(__m256d *)__p; in _mm256_load_pd() 778 _mm256_load_ps(float const *__p) in _mm256_load_ps() argument 780 return *(__m256 *)__p; in _mm256_load_ps() 784 _mm256_loadu_pd(double const *__p) in _mm256_loadu_pd() argument 789 return ((struct __loadu_pd*)__p)->__v; in _mm256_loadu_pd() 793 _mm256_loadu_ps(float const *__p) in _mm256_loadu_ps() argument 798 return ((struct __loadu_ps*)__p)->__v; in _mm256_loadu_ps() 802 _mm256_load_si256(__m256i const *__p) in _mm256_load_si256() argument 804 return *__p; in _mm256_load_si256() [all …]
|
| H A D | pmmintrin.h | 34 _mm_lddqu_si128(__m128i const *__p) in _mm_lddqu_si128() argument 36 return (__m128i)__builtin_ia32_lddqu((char const *)__p); in _mm_lddqu_si128() 104 _mm_monitor(void const *__p, unsigned __extensions, unsigned __hints) in _mm_monitor() argument 106 __builtin_ia32_monitor((void *)__p, __extensions, __hints); in _mm_monitor()
|
| /minix3/external/bsd/llvm/dist/clang/test/CodeGen/ |
| H A D | adc-builtins.c | 6 unsigned int __y, unsigned int *__p) { in test_addcarry_u32() argument 9 return _addcarry_u32(__cf, __x, __y, __p); in test_addcarry_u32() 14 unsigned long long *__p) { in test_addcarry_u64() argument 17 return _addcarry_u64(__cf, __x, __y, __p); in test_addcarry_u64() 21 unsigned int __y, unsigned int *__p) { in test_subborrow_u32() argument 24 return _subborrow_u32(__cf, __x, __y, __p); in test_subborrow_u32() 29 unsigned long long *__p) { in test_subborrow_u64() argument 32 return _subborrow_u64(__cf, __x, __y, __p); in test_subborrow_u64()
|
| H A D | adx-builtins.c | 6 unsigned int __y, unsigned int *__p) { in test_addcarryx_u32() argument 9 return _addcarryx_u32(__cf, __x, __y, __p); in test_addcarryx_u32() 14 unsigned long long *__p) { in test_addcarryx_u64() argument 17 return _addcarryx_u64(__cf, __x, __y, __p); in test_addcarryx_u64()
|
| /minix3/external/bsd/tcpdump/dist/ |
| H A D | cpack.h | 46 #define cpack_int8(__s, __p) cpack_uint8((__s), (uint8_t*)(__p)) argument 47 #define cpack_int16(__s, __p) cpack_uint16((__s), (uint16_t*)(__p)) argument 48 #define cpack_int32(__s, __p) cpack_uint32((__s), (uint32_t*)(__p)) argument 49 #define cpack_int64(__s, __p) cpack_uint64((__s), (uint64_t*)(__p)) argument
|
| /minix3/external/bsd/libc++/dist/libcxx/include/ |
| H A D | list | 246 explicit __list_iterator(__node_pointer __p, const void* __c) _NOEXCEPT 247 : __ptr_(__p) 253 explicit __list_iterator(__node_pointer __p) _NOEXCEPT : __ptr_(__p) {} 285 __list_iterator(const __list_iterator& __p) 286 : __ptr_(__p.__ptr_) 288 __get_db()->__iterator_copy(this, &__p); 298 __list_iterator& operator=(const __list_iterator& __p) 300 if (this != &__p) 302 __get_db()->__iterator_copy(this, &__p); 303 __ptr_ = __p.__ptr_; [all …]
|
| H A D | sstream | 263 char_type* __p = const_cast<char_type*>(__rhs.__str_.data()); 269 __binp = __rhs.eback() - __p; 270 __ninp = __rhs.gptr() - __p; 271 __einp = __rhs.egptr() - __p; 278 __bout = __rhs.pbase() - __p; 279 __nout = __rhs.pptr() - __p; 280 __eout = __rhs.epptr() - __p; 282 ptrdiff_t __hm = __rhs.__hm_ == nullptr ? -1 : __rhs.__hm_ - __p; 284 __p = const_cast<char_type*>(__str_.data()); 286 this->setg(__p + __binp, __p + __ninp, __p + __einp); [all …]
|
| H A D | utility | 272 pair(const pair<_U1, _U2>& __p 278 : first(__p.first), second(__p.second) {} 282 pair(const pair& __p) = default; 285 pair(const pair& __p) 288 : first(__p.first), 289 second(__p.second) 295 pair& operator=(const pair& __p) 299 first = __p.first; 300 second = __p.second; 317 pair(pair<_U1, _U2>&& __p, [all …]
|
| H A D | forward_list | 231 explicit __forward_list_iterator(__node_pointer __p) _NOEXCEPT : __ptr_(__p) {} 291 explicit __forward_list_const_iterator(__node_const_pointer __p) _NOEXCEPT 292 : __ptr_(__p) {} 325 __forward_list_const_iterator(__forward_list_iterator<__node_pointer> __p) _NOEXCEPT 326 : __ptr_(__p.__ptr_) {} 516 for (__node_pointer __p = __before_begin()->__next_; __p != nullptr;) 518 __node_pointer __next = __p->__next_; 519 __node_traits::destroy(__a, _VSTD::addressof(__p->__value_)); 520 __node_traits::deallocate(__a, __p, 1); 521 __p = __next; [all …]
|
| H A D | memory | 1056 __to_raw_pointer(_Tp* __p) _NOEXCEPT 1058 return __p; 1064 __to_raw_pointer(_Pointer __p) _NOEXCEPT 1066 return _VSTD::__to_raw_pointer(__p.operator->()); 1281 __has_allocate_hint_test(_Alloc&& __a, _SizeType&& __sz, _ConstVoidPtr&& __p) 1282 -> decltype(__a.allocate(__sz, __p), true_type()); 1286 __has_allocate_hint_test(const _Alloc& __a, _SizeType&& __sz, _ConstVoidPtr&& __p) 1316 __has_construct_test(_Alloc&& __a, _Tp* __p, _Args&& ...__args); 1320 __has_construct_test(const _Alloc& __a, _Pointer&& __p, _Args&& ...__args); 1335 __has_destroy_test(_Alloc&& __a, _Pointer&& __p) [all …]
|
| H A D | string | 946 __str_find(const _CharT *__p, _SizeT __sz, 951 const _CharT* __r = _Traits::find(__p + __pos, __sz - __pos, __c); 954 return static_cast<_SizeT>(__r - __p); 959 __str_find(const _CharT *__p, _SizeT __sz, 967 _VSTD::__search(__p + __pos, __p + __sz, 970 if (__r == __p + __sz) 972 return static_cast<_SizeT>(__r - __p); 980 __str_rfind(const _CharT *__p, _SizeT __sz, 989 for (const _CharT* __ps = __p + __pos; __ps != __p;) 992 return static_cast<_SizeT>(__ps - __p); [all …]
|
| H A D | new | 137 _LIBCPP_NEW_DELETE_VIS void operator delete(void* __p) _NOEXCEPT; 138 _LIBCPP_NEW_DELETE_VIS void operator delete(void* __p, const std::nothrow_t&) _NOEXCEPT; 141 _LIBCPP_NEW_DELETE_VIS void operator delete(void* __p, std::size_t __sz) _NOEXCEPT; 150 _LIBCPP_NEW_DELETE_VIS void operator delete[](void* __p) _NOEXCEPT; 151 _LIBCPP_NEW_DELETE_VIS void operator delete[](void* __p, const std::nothrow_t&) _NOEXCEPT; 154 _LIBCPP_NEW_DELETE_VIS void operator delete[](void* __p, std::size_t __sz) _NOEXCEPT; 157 inline _LIBCPP_INLINE_VISIBILITY void* operator new (std::size_t, void* __p) _NOEXCEPT {return __p… 158 inline _LIBCPP_INLINE_VISIBILITY void* operator new[](std::size_t, void* __p) _NOEXCEPT {return __p…
|
| H A D | thread | 164 void reset(pointer __p = nullptr); 169 __thread_specific_ptr<_Tp>::__at_thread_exit(void* __p) 171 delete static_cast<pointer>(__p); 198 pointer __p = get(); 200 return __p; 205 __thread_specific_ptr<_Tp>::reset(pointer __p) 208 pthread_setspecific(__key_, __p); 354 std::unique_ptr<_Fp> __p(static_cast<_Fp*>(__vp)); 356 __thread_execute(*__p, _Index()); 366 _VSTD::unique_ptr<_Gp> __p(new _Gp(__decay_copy(_VSTD::forward<_Fp>(__f)), [all …]
|
| H A D | vector | 780 iterator __make_iter(pointer __p) _NOEXCEPT; 782 const_iterator __make_iter(const_pointer __p) const _NOEXCEPT; 784 … pointer __swap_out_circular_buffer(__split_buffer<value_type, allocator_type&>& __v, pointer __p); 795 for (__i_node** __p = __c->end_; __p != __c->beg_; ) 797 --__p; 798 const_iterator* __i = static_cast<const_iterator*>((*__p)->__i_); 801 (*__p)->__c_ = nullptr; 802 if (--__c->end_ != __p) 803 memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*)); 899 …locator>::__swap_out_circular_buffer(__split_buffer<value_type, allocator_type&>& __v, pointer __p) [all …]
|
| H A D | cwctype | 172 inline _LIBCPP_INLINE_VISIBILITY wctype_t __libcpp_wctype(const char* __p) {return wctype(__p);} 174 inline _LIBCPP_INLINE_VISIBILITY wctype_t wctype(const char* __p) {return __libcpp_wctype(__p);} 204 inline _LIBCPP_INLINE_VISIBILITY wctrans_t __libcpp_wctrans(const char* __p) {return wctrans(__p);} 206 inline _LIBCPP_INLINE_VISIBILITY wctrans_t wctrans(const char* __p) {return __libcpp_wctrans(__p);}
|
| H A D | random | 2812 template<class _Engine, size_t __p, size_t __r> 2819 static_assert(__r <= __p, "discard_block_engine invalid parameters"); 2825 static _LIBCPP_CONSTEXPR const size_t block_size = __p; 2911 template<class _Engine, size_t __p, size_t __r> 2912 _LIBCPP_CONSTEXPR const size_t discard_block_engine<_Engine, __p, __r>::block_size; 2914 template<class _Engine, size_t __p, size_t __r> 2915 _LIBCPP_CONSTEXPR const size_t discard_block_engine<_Engine, __p, __r>::used_block; 2917 template<class _Engine, size_t __p, size_t __r> 2918 typename discard_block_engine<_Engine, __p, __r>::result_type 2919 discard_block_engine<_Engine, __p, __r>::operator()() [all …]
|
| H A D | map | 597 void operator()(pointer __p) _NOEXCEPT 600 __alloc_traits::destroy(__na_, _VSTD::addressof(__p->__value_.__cc.second)); 602 __alloc_traits::destroy(__na_, _VSTD::addressof(__p->__value_.__cc.first)); 603 if (__p) 604 __alloc_traits::deallocate(__na_, __p, 1); 1072 emplace_hint(const_iterator __p, _Args&& ...__args); 1079 pair<iterator, bool> insert(_Pp&& __p) 1080 {return __tree_.__insert_unique(_VSTD::forward<_Pp>(__p));} 1085 iterator insert(const_iterator __pos, _Pp&& __p) 1086 {return __tree_.__insert_unique(__pos.__i_, _VSTD::forward<_Pp>(__p));} [all …]
|
| /minix3/external/bsd/libc++/dist/libcxx/src/ |
| H A D | future.cpp | 116 __assoc_sub_state::set_exception(exception_ptr __p) in set_exception() argument 123 __exception_ = __p; in set_exception() 129 __assoc_sub_state::set_exception_at_thread_exit(exception_ptr __p) in set_exception_at_thread_exit() argument 136 __exception_ = __p; in set_exception_at_thread_exit() 253 promise<void>::set_exception(exception_ptr __p) in set_exception() argument 259 __state_->set_exception(__p); in set_exception() 273 promise<void>::set_exception_at_thread_exit(exception_ptr __p) in set_exception_at_thread_exit() argument 279 __state_->set_exception_at_thread_exit(__p); in set_exception_at_thread_exit()
|
| /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/ |
| H A D | DynArrayInit.cpp | 7 inline void* operator new[](unsigned long, void* __p) { return __p; } in operator new[]() argument
|
| /minix3/external/bsd/llvm/dist/clang/test/Analysis/ |
| H A D | new-with-exceptions.cpp | 10 inline void* operator new(size_t, void* __p) throw() in operator new() argument 12 return __p; in operator new()
|