Searched refs:__rotate (Results 1 - 5 of 5) sorted by relevance

/freebsd-current/contrib/llvm-project/libcxx/include/__algorithm/
H A Dranges_rotate.h36 namespace __rotate { namespace in namespace:ranges
41 auto __ret = std::__rotate<_RangeAlgPolicy>(std::move(__first), std::move(__middle), std::move(__last));
58 } // namespace __rotate
61 inline constexpr auto rotate = __rotate::__fn{};
H A Dstable_partition.h112 return std::__rotate<_AlgPolicy>(__first_false, __m, __second_false).first;
245 return std::__rotate<_AlgPolicy>(__first_false, __m, __second_false).first;
H A Drotate.h173 __rotate(_Iterator __first, _Iterator __middle, _Sentinel __last) { function
191 return std::__rotate<_ClassicAlgPolicy>(std::move(__first), std::move(__middle), std::move(__last)).first;
H A Dinplace_merge.h187 __middle = std::__rotate<_AlgPolicy>(__m1, __middle, __m2).first;
/freebsd-current/contrib/llvm-project/libcxx/include/__functional/
H A Dhash.h114 __x = __rotate(__x + __y + __v.first + std::__loadword<_Size>(__s + 8), 37) * __k1;
115 __y = __rotate(__y + __v.second + std::__loadword<_Size>(__s + 48), 42) * __k1;
118 __z = __rotate(__z + __w.first, 33) * __k1;
136 _LIBCPP_HIDE_FROM_ABI static _Size __rotate(_Size __val, int __shift) { function in struct:__murmur2_or_cityhash
190 __rotate(__a - __b, 43) + __rotate(__c, 30) + __d, __a + __rotate(__b ^ __k3, 20) - __c + __len);
198 __b = __rotate(__b + __a + __z, 21);
202 __b += __rotate(__a, 44);
223 _Size __b = __rotate(__
[all...]

Completed in 73 milliseconds