| /freebsd/contrib/llvm-project/libcxx/include/__cstddef/ |
| H A D | byte.h | 58 _LIBCPP_HIDE_FROM_ABI constexpr byte& operator<<=(byte& __lhs, _Integer __shift) noexcept { 59 return __lhs = __lhs << __shift; 63 _LIBCPP_HIDE_FROM_ABI constexpr byte operator<<(byte __lhs, _Integer __shift) noexcept { 64 return static_cast<byte>(static_cast<unsigned char>(static_cast<unsigned int>(__lhs) << __shift)); 68 _LIBCPP_HIDE_FROM_ABI constexpr byte& operator>>=(byte& __lhs, _Integer __shift) noexcept { 69 return __lhs = __lhs >> __shift; 73 _LIBCPP_HIDE_FROM_ABI constexpr byte operator>>(byte __lhs, _Integer __shift) noexcept { 74 return static_cast<byte>(static_cast<unsigned char>(static_cast<unsigned int>(__lhs) >> __shift));
|
| /freebsd/contrib/bmake/mk/ |
| H A D | setopts.sh | 102 __shift=$# 166 __shift=`expr $__shift - $#` 170 ${_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/__functional/ |
| H A D | hash.h | 136 _LIBCPP_HIDE_FROM_ABI static _Size __rotate(_Size __val, int __shift) { 137 return __shift == 0 ? __val : ((__val >> __shift) | (__val << (64 - __shift))); 140 _LIBCPP_HIDE_FROM_ABI static _Size __rotate_by_at_least_1(_Size __val, int __shift) { 141 return (__val >> __shift) | (__val << (64 - __shift));
|
| /freebsd/contrib/llvm-project/libcxx/include/__format/ |
| H A D | format_arg_store.h | 221 int __shift = 0; in __create_packed_storage() local 225 if (__shift != 0) in __create_packed_storage() 226 __types |= static_cast<uint64_t>(__arg.__type_) << __shift; in __create_packed_storage() 230 __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/__cxx03/__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 | 82 int __shift = std::__countr_zero(__c); 93 return __a << __shift;
|
| /freebsd/contrib/llvm-project/libcxx/src/ryu/ |
| H A D | f2s.cpp | 116 …BI inline uint32_t __mulShift(const uint32_t __m, const uint64_t __factor, const int32_t __shift) { in __mulShift() argument 117 _LIBCPP_ASSERT_INTERNAL(__shift > 32, ""); in __mulShift() 134 const int32_t __s = __shift - 32; in __mulShift() 138 const uint64_t __shiftedSum = __sum >> (__shift - 32); in __mulShift()
|
| /freebsd/contrib/llvm-project/libcxx/src/experimental/ |
| H A D | time_zone.cpp | 129 bool __shift = false; in __format() local 132 if (__shift) { in __format() 161 __shift = false; in __format() 170 __shift = true; in __format() 181 if (__shift) in __format()
|