| /freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | clamp.h | 26 _LIBCPP_LIFETIMEBOUND const _Tp& __lo, in clamp() argument 29 _LIBCPP_ASSERT_ARGUMENT_WITHIN_DOMAIN(!__comp(__hi, __lo), "Bad bounds passed to std::clamp"); in clamp() 30 return __comp(__v, __lo) ? __lo : __comp(__hi, __v) ? __hi : __v; in clamp() 36 _LIBCPP_LIFETIMEBOUND const _Tp& __lo, in clamp() argument 38 return std::clamp(__v, __lo, __hi, __less<>()); in clamp()
|
| /freebsd/contrib/llvm-project/libcxx/src/include/ryu/ |
| H A D | d2s_intrinsics.h | 58 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint64_t __ryu_shiftright128(const uint64_t __lo, const uint64_t __hi, const uint32_t __dist) { in __ryu_shiftright128() argument 67 return __shiftright128(__lo, __hi, static_cast<unsigned char>(__dist)); in __ryu_shiftright128() 82 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint64_t __ryu_shiftright128(const uint64_t __lo, const uint64_t __hi, const uint32_t __dist) { 89 auto __temp = __lo | ((unsigned __int128)__hi << 64); 127 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint64_t __ryu_shiftright128(const uint64_t __lo, const uint64_t __hi, const uint32_t __dist) { 132 return (__hi << (64 - __dist)) | (__lo >> __dist); 136 return (__hi << (64 - __dist)) | (static_cast<uint32_t>(__lo >> 32) >> (__dist - 32));
|
| /freebsd/contrib/llvm-project/libcxx/include/__numeric/ |
| H A D | midpoint.h | 68 constexpr _Fp __lo = numeric_limits<_Fp>::min() * 2; in midpoint() local 74 if (std::__fp_abs(__a) < __lo) in midpoint() 76 if (std::__fp_abs(__b) < __lo) in midpoint()
|
| /freebsd/contrib/llvm-project/libcxx/src/ryu/ |
| H A D | d2s.cpp | 123 const uint64_t __lo = __ryu_umul128(__m, __mul[0], &__tmp); 128 const uint64_t __lo2 = __lo + __mul[0]; 129 const uint64_t __mid2 = __mid + __mul[1] + (__lo2 < __lo); 134 const uint64_t __lo3 = __lo - __mul[0]; 135 const uint64_t __mid3 = __mid - __mul[1] - (__lo3 > __lo); 139 const uint64_t __lo3 = __lo + __lo; 140 const uint64_t __mid3 = __mid + __mid + (__lo3 < __lo);
|
| /freebsd/contrib/llvm-project/clang/lib/Headers/ |
| H A D | gpuintrin.h | 146 uint32_t __lo = (uint32_t)(__x & 0xFFFFFFFFull); in __gpu_read_first_lane_u64() local 148 ((uint64_t)__gpu_read_first_lane_u32(__lane_mask, __lo) & in __gpu_read_first_lane_u64() 173 uint32_t __lo = (uint32_t)(__x & 0xFFFFFFFF); in __gpu_shuffle_idx_u64() local 177 ((uint64_t)__gpu_shuffle_idx_u32(__mask, __idx, __lo, __width)); in __gpu_shuffle_idx_u64()
|
| H A D | immintrin.h | 184 unsigned int __lo, __hi; in _rdrand64_step() 185 unsigned int __res_lo = __builtin_ia32_rdrand32_step(&__lo); in _rdrand64_step() 188 *__p = ((unsigned long long)__hi << 32) | (unsigned long long)__lo; in _rdrand64_step()
|
| H A D | avxintrin.h | 4855 _mm256_set_m128 (__m128 __hi, __m128 __lo) in _mm256_set_m128() argument 4857 return (__m256) __builtin_shufflevector((__v4sf)__lo, (__v4sf)__hi, 0, 1, 2, 3, 4, 5, 6, 7); in _mm256_set_m128() 4876 _mm256_set_m128d (__m128d __hi, __m128d __lo) in _mm256_set_m128d() argument 4878 return (__m256d) __builtin_shufflevector((__v2df)__lo, (__v2df)__hi, 0, 1, 2, 3); in _mm256_set_m128d() 4896 _mm256_set_m128i (__m128i __hi, __m128i __lo) in _mm256_set_m128i() argument 4898 return (__m256i) __builtin_shufflevector((__v2di)__lo, (__v2di)__hi, 0, 1, 2, 3); in _mm256_set_m128i() 4919 _mm256_setr_m128 (__m128 __lo, __m128 __hi) in _mm256_setr_m128() argument 4921 return _mm256_set_m128(__hi, __lo); in _mm256_setr_m128() 4942 _mm256_setr_m128d (__m128d __lo, __m128d __hi) in _mm256_setr_m128d() argument 4944 return (__m256d)_mm256_set_m128d(__hi, __lo); in _mm256_setr_m128d() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | __locale | 187 transform(const char_type* __lo, const char_type* __hi) const { 188 return do_transform(__lo, __hi); 191 …LIBCPP_HIDE_FROM_ABI long hash(const char_type* __lo, const char_type* __hi) const { return do_has… 199 virtual string_type do_transform(const char_type* __lo, const char_type* __hi) const { 200 return string_type(__lo, __hi); 202 virtual long do_hash(const char_type* __lo, const char_type* __hi) const; 224 long collate<_CharT>::do_hash(const char_type* __lo, const char_type* __hi) const { 228 for (const char_type* __p = __lo; __p != __hi; ++__p) { 261 string_type do_transform(const char_type* __lo, const char_type* __hi) const override; 281 string_type do_transform(const char_type* __lo, const char_type* __hi) const override;
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | __locale | 199 transform(const char_type* __lo, const char_type* __hi) const { 200 return do_transform(__lo, __hi); 203 …LIBCPP_HIDE_FROM_ABI long hash(const char_type* __lo, const char_type* __hi) const { return do_has… 211 virtual string_type do_transform(const char_type* __lo, const char_type* __hi) const { 212 return string_type(__lo, __hi); 214 virtual long do_hash(const char_type* __lo, const char_type* __hi) const; 236 long collate<_CharT>::do_hash(const char_type* __lo, const char_type* __hi) const { 240 for (const char_type* __p = __lo; __p != __hi; ++__p) { 273 string_type do_transform(const char_type* __lo, const char_type* __hi) const override; 293 string_type do_transform(const char_type* __lo, const char_type* __hi) const override;
|
| /freebsd/contrib/llvm-project/libunwind/src/ |
| H A D | Registers.hpp | 2849 uint32_t __lo; member 2921 return _registers.__lo; in getRegister() 2957 _registers.__lo = value; in setRegister() 3184 uint64_t __lo; member 3236 return _registers.__lo; in getRegister() 3260 _registers.__lo = value; in setRegister()
|