Searched refs:__shift (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | cstddef | 105 _LIBCPP_HIDE_FROM_ABI constexpr byte& operator<<=(byte& __lhs, _Integer __shift) noexcept { 106 return __lhs = __lhs << __shift; 110 _LIBCPP_HIDE_FROM_ABI constexpr byte operator<<(byte __lhs, _Integer __shift) noexcept { 111 return static_cast<byte>(static_cast<unsigned char>(static_cast<unsigned int>(__lhs) << __shift)); 115 _LIBCPP_HIDE_FROM_ABI constexpr byte& operator>>=(byte& __lhs, _Integer __shift) noexcept { 116 return __lhs = __lhs >> __shift; 120 _LIBCPP_HIDE_FROM_ABI constexpr byte operator>>(byte __lhs, _Integer __shift) noexcept { 121 return static_cast<byte>(static_cast<unsigned char>(static_cast<unsigned int>(__lhs) >> __shift));
|
/freebsd/contrib/bmake/mk/ |
H A D | setopts.sh | 107 __shift=$# 171 __shift=`expr $__shift - $#` 175 ${_SETOPTS_DELAY:+:} shift $__shift
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/ |
H A D | tmmintrin.h | 98 const __v16qu __shift = vec_splats((unsigned char)((__count - 16) * 8)); in _mm_alignr_epi8() local 100 return (__m128i)vec_sro((__v16qu)__A, __shift); in _mm_alignr_epi8() 102 return (__m128i)vec_slo((__v16qu)__A, __shift); in _mm_alignr_epi8() 125 const __v4su __shift = {__count << 3, 0, 0, 0}; in _mm_alignr_pi8() local 126 __C = (__v2du)vec_sro((__v16qu)__C, (__v16qu)__shift); in _mm_alignr_pi8() 128 const __v4su __shift = {0, 0, 0, __count << 3}; in _mm_alignr_pi8() local 129 __C = (__v2du)vec_slo((__v16qu)__C, (__v16qu)__shift); in _mm_alignr_pi8() 420 const __v4su __shift = vec_splats((unsigned int)14); in _mm_mulhrs_epi16() local 421 __C = vec_sr(__C, __shift); in _mm_mulhrs_epi16() 422 __D = vec_sr(__D, __shift); in _mm_mulhrs_epi16() [all …]
|
H A D | emmintrin.h | 1562 __v16qu __shift = vec_splats((unsigned char)(__N * 8)); in _mm_bsrli_si128() local 1564 __result = vec_sro((__v16qu)__A, __shift); in _mm_bsrli_si128() 1566 __result = vec_slo((__v16qu)__A, __shift); in _mm_bsrli_si128()
|
/freebsd/contrib/llvm-project/libcxx/include/__format/ |
H A D | format_arg_store.h | 210 int __shift = 0; in __create_packed_storage() local 214 if (__shift != 0) in __create_packed_storage() 215 __types |= static_cast<uint64_t>(__arg.__type_) << __shift; in __create_packed_storage() 219 __shift += __packed_arg_t_bits; in __create_packed_storage()
|
H A D | parser_std_format_spec.h | 222 uint32_t __shift = static_cast<uint32_t>(__t); in __create_type_mask() local 223 if (__shift == 0) in __create_type_mask() 226 if (__shift > 31) in __create_type_mask() 229 return 1 << __shift; in __create_type_mask()
|
/freebsd/contrib/llvm-project/libcxx/include/__functional/ |
H A D | hash.h | 131 _LIBCPP_HIDE_FROM_ABI static _Size __rotate(_Size __val, int __shift) { 132 return __shift == 0 ? __val : ((__val >> __shift) | (__val << (64 - __shift))); 135 _LIBCPP_HIDE_FROM_ABI static _Size __rotate_by_at_least_1(_Size __val, int __shift) { 136 return (__val >> __shift) | (__val << (64 - __shift));
|
/freebsd/contrib/llvm-project/libcxx/include/__numeric/ |
H A D | gcd_lcm.h | 81 int __shift = std::min(__az, __bz); 95 return __a << __shift;
|
/freebsd/contrib/llvm-project/libcxx/src/ryu/ |
H A D | f2s.cpp | 114 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint32_t __mulShift(const uint32_t __m, const uint64_t __factor, const int32_t __shift) { in __mulShift() argument 115 _LIBCPP_ASSERT_INTERNAL(__shift > 32, ""); in __mulShift() 132 const int32_t __s = __shift - 32; in __mulShift() 136 const uint64_t __shiftedSum = __sum >> (__shift - 32); in __mulShift()
|
/freebsd/contrib/llvm-project/libcxx/src/experimental/ |
H A D | time_zone.cpp | 120 bool __shift = false; in __format() local 123 if (__shift) { in __format() 152 __shift = false; in __format() 161 __shift = true; in __format() 172 if (__shift) in __format()
|