/freebsd/contrib/llvm-project/libcxx/include/__compare/ |
H A D | ordering.h | 46 _LIBCPP_HIDE_FROM_ABI explicit constexpr partial_ordering(_OrdResult __v) noexcept : __value_(_ValueT(__v)) {} 48 _LIBCPP_HIDE_FROM_ABI explicit constexpr partial_ordering(_NCmpResult __v) noexcept : __value_(_ValueT(__v)) {} 64 _LIBCPP_HIDE_FROM_ABI friend constexpr bool operator==(partial_ordering __v, _CmpUnspecifiedParam) noexcept { in __is_ordered() 65 return __v.__is_ordered() && __v.__value_ == 0; 68 _LIBCPP_HIDE_FROM_ABI friend constexpr bool operator<(partial_ordering __v, _CmpUnspecifiedParam) noexcept { 69 return __v.__is_ordered() && __v 54 partial_ordering(_OrdResult __v) partial_ordering() argument 58 partial_ordering(_NCmpResult __v) partial_ordering() argument 143 weak_ordering(_OrdResult __v) weak_ordering() argument 227 strong_ordering(_OrdResult __v) strong_ordering() argument [all...] |
/freebsd/contrib/llvm-project/libcxx/include/__functional/ |
H A D | hash.h | 102 pair<_Size, _Size> __v = __weak_hash_len_32_with_seeds(__s + __len - 64, __len, __z); 109 __x = __rotate(__x + __y + __v.first + std::__loadword<_Size>(__s + 8), 37) * __k1; 110 __y = __rotate(__y + __v.second + std::__loadword<_Size>(__s + 48), 42) * __k1; 112 __y += __v.first + std::__loadword<_Size>(__s + 40); 114 __v = __weak_hash_len_32_with_seeds(__s, __v.second * __k1, __x + __w.first); 120 return __hash_len_16(__hash_len_16(__v.first, __w.first) + __shift_mix(__y) * __k1 + __z, 121 __hash_len_16(__v.second, __w.second) + __x); 141 …ABI _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK static _Size __hash_len_16(_Size __u, _Size __v) { 143 _Size __a = (__u ^ __v) * __mul; 145 _Size __b = (__v ^ __a) * __mul; [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_linux.h | 143 void **__v; \ 144 __asm__("mrs %0, tpidr_el0" : "=r"(__v)); \ 145 __v; \ 150 void **__v; \ 151 __asm__("mrc p15, 0, %0, c13, c0, 3" : "=r"(__v)); \ 152 __v; \ 159 register void **__v asm("v1"); \ 165 : "=r"(__v)); \ 166 __v; \ 171 void **__v; \ [all...] |
/freebsd/contrib/llvm-project/libcxx/src/include/ryu/ |
H A D | common.h | 51 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint32_t __decimalLength9(const uint32_t __v) { in __decimalLength9() argument 52 // Function precondition: __v is not a 10-digit number. in __decimalLength9() 55 _LIBCPP_ASSERT_INTERNAL(__v < 1000000000, ""); in __decimalLength9() 56 if (__v >= 100000000) { return 9; } in __decimalLength9() 57 if (__v >= 10000000) { return 8; } in __decimalLength9() 58 if (__v >= 1000000) { return 7; } in __decimalLength9() 59 if (__v >= 100000) { return 6; } in __decimalLength9() 60 if (__v >= 10000) { return 5; } in __decimalLength9() 61 if (__v >= 1000) { return 4; } in __decimalLength9() 62 if (__v > in __decimalLength9() [all...] |
/freebsd/contrib/llvm-project/libcxx/src/ryu/ |
H A D | d2s.cpp | 152 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint32_t __decimalLength17(const uint64_t __v) { in __decimalLength17() argument 155 // Function precondition: __v is not an 18, 19, or 20-digit number. in __decimalLength17() 157 _LIBCPP_ASSERT_INTERNAL(__v < 100000000000000000u, ""); in __decimalLength17() 158 if (__v >= 10000000000000000u) { return 17; } in __decimalLength17() 159 if (__v >= 1000000000000000u) { return 16; } in __decimalLength17() 160 if (__v >= 100000000000000u) { return 15; } in __decimalLength17() 161 if (__v >= 10000000000000u) { return 14; } in __decimalLength17() 162 if (__v >= 1000000000000u) { return 13; } in __decimalLength17() 163 if (__v >= 100000000000u) { return 12; } in __decimalLength17() 164 if (__v > in __decimalLength17() 355 __to_chars(char * const _First,char * const _Last,const __floating_decimal_64 __v,chars_format _Fmt,const double __f) __to_chars() argument 672 __d2d_small_int(const uint64_t __ieeeMantissa,const uint32_t __ieeeExponent,__floating_decimal_64 * const __v) __d2d_small_int() argument 758 __floating_decimal_64 __v; __d2s_buffered_n() local [all...] |
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | wasm_simd128.h | 59 __v128_u __v; in wasm_v128_load() member 61 return ((const struct __wasm_v128_load_struct *)__mem)->__v; in wasm_v128_load() 67 uint8_t __v; in wasm_v128_load8_splat() member 69 uint8_t __v = ((const struct __wasm_v128_load8_splat_struct *)__mem)->__v; in wasm_v128_load8_splat() local 70 return (v128_t)(__u8x16){__v, __v, __v, __v, __v, __v, __v, __v, in wasm_v128_load8_splat() 71 __v, __v, __v, __v, __v, __v, __v, __v}; in wasm_v128_load8_splat() 77 uint16_t __v; in wasm_v128_load16_splat() member 79 uint16_t __v = ((const struct __wasm_v128_load16_splat_struct *)__mem)->__v; in wasm_v128_load16_splat() local 80 return (v128_t)(__u16x8){__v, __v, __v, __v, __v, __v, __v, __v}; in wasm_v128_load16_splat() 86 uint32_t __v; in wasm_v128_load32_splat() member [all …]
|
H A D | immintrin.h | 452 unsigned short __v; in _loadbe_i16() member 454 return (short)__builtin_bswap16(((const struct __loadu_i16*)__P)->__v); in _loadbe_i16() 470 unsigned short __v; in _storebe_i16() member 472 ((struct __storeu_i16*)__P)->__v = __builtin_bswap16((unsigned short)__D); in _storebe_i16() 487 unsigned int __v; in _loadbe_i32() member 489 return (int)__builtin_bswap32(((const struct __loadu_i32*)__P)->__v); in _loadbe_i32() 505 unsigned int __v; in _storebe_i32() member 507 ((struct __storeu_i32*)__P)->__v = __builtin_bswap32((unsigned int)__D); in _storebe_i32() 523 unsigned long long __v; in _loadbe_i64() member 525 return (long long)__builtin_bswap64(((const struct __loadu_i64*)__P)->__v); in _loadbe_i64() [all …]
|
H A D | __clang_cuda_texture_intrinsics.h | 639 __device__ static __DestT __run(__SrcT __v); 640 template <> __device__ static __DestT __run<1>(__SrcT __v) { return {__v.x}; } 641 template <> __device__ static __DestT __run<2>(__SrcT __v) { 642 return {__v.x, __v.y}; 644 template <> __device__ static __DestT __run<3>(__SrcT __v) { 645 return {__v.x, __v.y, __v.z}; 647 template <> __device__ static __DestT __run<4>(__SrcT __v) { 648 return {__v.x, __v.y, __v.z, __v.w};
|
/freebsd/contrib/llvm-project/libcxx/include/__charconv/ |
H A D | traits.h | 51 static _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI int __width(_Tp __v) { 52 auto __t = (32 - std::__libcpp_clz(static_cast<type>(__v | 1))) * 1233 >> 12; 53 return __t - (__v < __itoa::__pow10_32[__t]) + 1; 56 static _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI char* __convert(char* __p, _Tp __v) { 57 return __itoa::__base_10_u32(__p, __v); 77 static _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI int __width(_Tp __v) { 78 auto __t = (64 - std::__libcpp_clz(static_cast<type>(__v | 1))) * 1233 >> 12; 79 return __t - (__v < __itoa::__pow10_64[__t]) + 1; 82 static _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI char* __convert(char* __p, _Tp __v) { 83 return __itoa::__base_10_u64(__p, __v); [all …]
|
/freebsd/crypto/openssh/ |
H A D | sshbuf.h | 324 const u_int64_t __v = (v); \ 325 ((u_char *)(p))[0] = (__v >> 56) & 0xff; \ 326 ((u_char *)(p))[1] = (__v >> 48) & 0xff; \ 327 ((u_char *)(p))[2] = (__v >> 40) & 0xff; \ 328 ((u_char *)(p))[3] = (__v >> 32) & 0xff; \ 329 ((u_char *)(p))[4] = (__v >> 24) & 0xff; \ 330 ((u_char *)(p))[5] = (__v >> 16) & 0xff; \ 331 ((u_char *)(p))[6] = (__v >> 8) & 0xff; \ 332 ((u_char *)(p))[7] = __v & 0xff; \ 336 const u_int32_t __v = (v); \ [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__atomic/ |
H A D | atomic_flag.h | 52 wait(bool __v, memory_order __m = memory_order_seq_cst) const volatile _NOEXCEPT { 53 std::__atomic_wait(*this, _LIBCPP_ATOMIC_FLAG_TYPE(__v), __m); 56 wait(bool __v, memory_order __m = memory_order_seq_cst) const _NOEXCEPT { 57 std::__atomic_wait(*this, _LIBCPP_ATOMIC_FLAG_TYPE(__v), __m); 148 atomic_flag_wait(const volatile atomic_flag* __o, bool __v) _NOEXCEPT { 149 __o->wait(__v); 153 atomic_flag_wait(const atomic_flag* __o, bool __v) _NOEXCEPT { 154 __o->wait(__v); 158 atomic_flag_wait_explicit(const volatile atomic_flag* __o, bool __v, memory_order __m) _NOEXCEPT { 159 __o->wait(__v, __m); [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | clamp.h | 25 clamp(_LIBCPP_LIFETIMEBOUND const _Tp& __v, in clamp() argument 30 return __comp(__v, __lo) ? __lo : __comp(__hi, __v) ? __hi : __v; in clamp() 35 clamp(_LIBCPP_LIFETIMEBOUND const _Tp& __v, in clamp() argument 38 return std::clamp(__v, __lo, __hi, __less<>()); in clamp()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | valarray | 420 _LIBCPP_HIDE_FROM_ABI _Tp* begin(valarray<_Tp>& __v); 423 _LIBCPP_HIDE_FROM_ABI const _Tp* begin(const valarray<_Tp>& __v); 426 _LIBCPP_HIDE_FROM_ABI _Tp* end(valarray<_Tp>& __v); 429 _LIBCPP_HIDE_FROM_ABI const _Tp* end(const valarray<_Tp>& __v); 796 valarray(const valarray& __v); 798 _LIBCPP_HIDE_FROM_ABI valarray(valarray&& __v) _NOEXCEPT; 808 valarray& operator=(const valarray& __v); 810 _LIBCPP_HIDE_FROM_ABI valarray& operator=(valarray&& __v) _NOEXCEPT; 819 _LIBCPP_HIDE_FROM_ABI valarray& operator=(const __val_expr<_ValExpr>& __v); 867 _LIBCPP_HIDE_FROM_ABI valarray& operator*=(const _Expr& __v); [all …]
|
H A D | vector | 872 __swap_out_circular_buffer(__split_buffer<value_type, allocator_type&>& __v); 874 __swap_out_circular_buffer(__split_buffer<value_type, allocator_type&>& __v, pointer __p); 934 …_LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI explicit _ConstructTransaction(vector& __v, si… 935 : __v_(__v), __pos_(__v.__end_), __new_end_(__v.__end_ + __n) { 1044 // __swap_out_circular_buffer relocates the objects in [__begin_, __end_) into the front of __v and… 1045 // *this and __v. It is assumed that __v provides space for exactly (__end_ - __begin_) objects in … 1049 …or<_Tp, _Allocator>::__swap_out_circular_buffer(__split_buffer<value_type, allocator_type&>& __v) { 1051 auto __new_begin = __v.__begin_ - (__end_ - __begin_); 1054 __v.__begin_ = __new_begin; 1056 std::swap(this->__begin_, __v.__begin_); [all …]
|
H A D | __tree | 520 _LIBCPP_HIDE_FROM_ABI static key_type const& __get_key(_Tp const& __v) { return __v; } 521 …_ABI static __container_value_type const& __get_value(__node_value_type const& __v) { return __v; } 523 …_FROM_ABI static __container_value_type&& __move(__node_value_type& __v) { return std::move(__v); } 557 …_ABI static pair<key_type&&, mapped_type&&> __move(__node_value_type& __v) { return __v.__move(); } 1097 _LIBCPP_HIDE_FROM_ABI pair<iterator, bool> __insert_unique(const __container_value_type& __v) { 1098 return __emplace_unique_key_args(_NodeTypes::__get_key(__v), __v); 1101 …CPP_HIDE_FROM_ABI iterator __insert_unique(const_iterator __p, const __container_value_type& __v) { 1102 return __emplace_hint_unique_key_args(__p, _NodeTypes::__get_key(__v), __v).first; 1105 _LIBCPP_HIDE_FROM_ABI pair<iterator, bool> __insert_unique(__container_value_type&& __v) { 1106 return __emplace_unique_key_args(_NodeTypes::__get_key(__v), std::move(__v)); [all …]
|
H A D | bitset | 193 _LIBCPP_HIDE_FROM_ABI explicit _LIBCPP_CONSTEXPR __bitset(unsigned long long __v) _NOEXCEPT; 208 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 void operator&=(const __bitset& __v) _NOEXCEPT; 209 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 void operator|=(const __bitset& __v) _NOEXCEPT; 210 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 void operator^=(const __bitset& __v) _NOEXCEPT; 226 void __init(unsigned long long __v, false_type) _NOEXCEPT; 227 _LIBCPP_HIDE_FROM_ABI void __init(unsigned long long __v, true_type) _NOEXCEPT; 251 void __bitset<_N_words, _Size>::__init(unsigned long long __v, false_type) _NOEXCEPT { 254 …for (size_t __i = 0; __i < sizeof(__t) / sizeof(__t[0]); ++__i, __v >>= __bits_per_word, __sz -= _… 256 __t[__i] = static_cast<__storage_type>(__v) & (1ULL << __sz) - 1; 258 __t[__i] = static_cast<__storage_type>(__v); [all …]
|
H A D | optional | 682 _LIBCPP_HIDE_FROM_ABI constexpr optional(_Up&& __v) : __base(in_place, std::forward<_Up>(__v)) {} 685 …IBCPP_HIDE_FROM_ABI constexpr explicit optional(_Up&& __v) : __base(in_place, std::forward<_Up>(__… 690 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 optional(const optional<_Up>& __v) { 691 this->__construct_from(__v); 695 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 explicit optional(const optional<_Up>& __v) { 696 this->__construct_from(__v); 701 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 optional(optional<_Up>&& __v) { 702 this->__construct_from(std::move(__v)); 705 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 explicit optional(optional<_Up>&& __v) { 706 this->__construct_from(std::move(__v)); [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__random/ |
H A D | poisson_distribution.h | 183 double __v = __difmuk / __tx; in operator() 184 if (std::abs(__v) > 0.25) in operator() 185 __px = __tx * std::log(1 + __v) - __difmuk - __del; in operator() 187 __px = __tx * __v * __v * in operator() 188 (((((((.1250060 * __v + -.1384794) * __v + .1421878) * __v + -.1661269) * __v + .2000118) * __v in operator() 218 double __v = __difmuk / __tx; operator() local [all...] |
/freebsd/contrib/llvm-project/libcxx/include/experimental/__simd/ |
H A D | scalar.h | 40 _LIBCPP_HIDE_FROM_ABI void __set([[maybe_unused]] size_t __idx, _Tp __v) noexcept { 42 __data = __v; 54 static _LIBCPP_HIDE_FROM_ABI _SimdStorage __broadcast(_Tp __v) noexcept { return {__v}; } 76 static _LIBCPP_HIDE_FROM_ABI _MaskStorage __broadcast(bool __v) noexcept { return {__v}; }
|
H A D | vec_ext.h | 45 _LIBCPP_HIDE_FROM_ABI void __set(size_t __idx, _Tp __v) noexcept { 47 __data[__idx] = __v; 60 static _LIBCPP_HIDE_FROM_ABI _SimdStorage __broadcast(_Tp __v) noexcept { 63 __result.__set(__i, __v); 95 static _LIBCPP_HIDE_FROM_ABI _MaskStorage __broadcast(bool __v) noexcept { 97 auto __all_bits_v = experimental::__set_all_bits<_Tp>(__v);
|
H A D | reference.h | 42 _LIBCPP_HIDE_FROM_ABI void __set(_Vp __v) { in __set() argument 44 __s_.__set(__idx_, experimental::__set_all_bits<_Tp>(__v)); in __set() 46 __s_.__set(__idx_, __v); in __set() 58 _LIBCPP_HIDE_FROM_ABI __simd_reference operator=(_Up&& __v) && noexcept { 59 __set(static_cast<value_type>(std::forward<_Up>(__v)));
|
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/ |
H A D | integral_constant.h | 20 template <class _Tp, _Tp __v> 22 static _LIBCPP_CONSTEXPR const _Tp value = __v; 31 template <class _Tp, _Tp __v> 32 _LIBCPP_CONSTEXPR const _Tp integral_constant<_Tp, __v>::value;
|
/freebsd/usr.bin/kdump/ |
H A D | kdump.h | 38 uint64_t __v; \ 45 __v = (uint64_t)(uint32_t)(i)[0] | \ 48 __v = (uint64_t)*(i); \ 50 printf("%c%jd", (c), (intmax_t)__v); \ 52 printf("%c%#jx", (c), (uintmax_t)__v); \
|
/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | temp_value.h | 29 typename aligned_storage<sizeof(_Tp), _LIBCPP_ALIGNOF(_Tp)>::type __v; member 32 _Tp __v; 39 return reinterpret_cast<_Tp*>(std::addressof(__v)); in __addr() 41 return std::addressof(__v); in __addr() 31 union { _Tp __v; }; global() member
|
/freebsd/contrib/llvm-project/libcxx/include/__expected/ |
H A D | expected.h | 107 : __v(std::forward<_Args>(__args)...) {} 112 : __v(std::invoke(std::forward<_Func>(__f), std::forward<_Args>(__args)...)) {} 114 _LIBCPP_NO_UNIQUE_ADDRESS _Tp __v; 121 : __v(std::forward<_Args>(__args)...) {} 126 : __v(std::invoke(std::forward<_Func>(__f), std::forward<_Args>(__args)...)) {} 128 _Tp __v; 324 std::destroy_at(&__union_.__v); 332 std::destroy_at(&__union_.__v); 339 std::construct_at(&__union_.__v, in_place, std::forward<_Args>(__args)...); 347 std::construct_at(&__union_.__v, unexpect, std::forward<_Args>(__args)...); [all …]
|