Home
last modified time | relevance | path

Searched refs:__lo (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dclamp.h26 _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 Dd2s_intrinsics.h58 [[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 Dmidpoint.h68 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 Dd2s.cpp122 const uint64_t __lo = __ryu_umul128(__m, __mul[0], &__tmp);
127 const uint64_t __lo2 = __lo + __mul[0];
128 const uint64_t __mid2 = __mid + __mul[1] + (__lo2 < __lo);
133 const uint64_t __lo3 = __lo - __mul[0];
134 const uint64_t __mid3 = __mid - __mul[1] - (__lo3 > __lo);
138 const uint64_t __lo3 = __lo + __lo;
139 const uint64_t __mid3 = __mid + __mid + (__lo3 < __lo);
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Davxintrin.h4843 _mm256_set_m128 (__m128 __hi, __m128 __lo) in _mm256_set_m128() argument
4845 return (__m256) __builtin_shufflevector((__v4sf)__lo, (__v4sf)__hi, 0, 1, 2, 3, 4, 5, 6, 7); in _mm256_set_m128()
4864 _mm256_set_m128d (__m128d __hi, __m128d __lo) in _mm256_set_m128d() argument
4866 return (__m256d) __builtin_shufflevector((__v2df)__lo, (__v2df)__hi, 0, 1, 2, 3); in _mm256_set_m128d()
4884 _mm256_set_m128i (__m128i __hi, __m128i __lo) in _mm256_set_m128i() argument
4886 return (__m256i) __builtin_shufflevector((__v2di)__lo, (__v2di)__hi, 0, 1, 2, 3); in _mm256_set_m128i()
4907 _mm256_setr_m128 (__m128 __lo, __m128 __hi) in _mm256_setr_m128() argument
4909 return _mm256_set_m128(__hi, __lo); in _mm256_setr_m128()
4930 _mm256_setr_m128d (__m128d __lo, __m128d __hi) in _mm256_setr_m128d() argument
4932 return (__m256d)_mm256_set_m128d(__hi, __lo); in _mm256_setr_m128d()
[all …]
H A Dimmintrin.h305 unsigned int __lo, __hi; in _rdrand64_step()
306 unsigned int __res_lo = __builtin_ia32_rdrand32_step(&__lo); in _rdrand64_step()
309 *__p = ((unsigned long long)__hi << 32) | (unsigned long long)__lo; in _rdrand64_step()
/freebsd/contrib/llvm-project/libcxx/include/
H A D__locale189 transform(const char_type* __lo, const char_type* __hi) const {
190 return do_transform(__lo, __hi);
193 …LIBCPP_HIDE_FROM_ABI long hash(const char_type* __lo, const char_type* __hi) const { return do_has…
201 virtual string_type do_transform(const char_type* __lo, const char_type* __hi) const {
202 return string_type(__lo, __hi);
204 virtual long do_hash(const char_type* __lo, const char_type* __hi) const;
226 long collate<_CharT>::do_hash(const char_type* __lo, const char_type* __hi) const {
230 for (const char_type* __p = __lo; __p != __hi; ++__p) {
263 string_type do_transform(const char_type* __lo, const char_type* __hi) const override;
283 string_type do_transform(const char_type* __lo, const char_type* __hi) const override;
/freebsd/contrib/llvm-project/libunwind/src/
H A DRegisters.hpp2849 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()