Searched refs:bitwise_fp_cast (Results 1 – 8 of 8) sorted by relevance
/third_party/boost/boost/atomic/detail/ |
D | extra_fp_ops_emulated.hpp | 48 value_type old_val = atomics::detail::bitwise_fp_cast< value_type >(s); in fetch_negate() 50 s = atomics::detail::bitwise_fp_cast< storage_type >(new_val); in fetch_negate() 59 value_type old_val = atomics::detail::bitwise_fp_cast< value_type >(s); in negate() 61 s = atomics::detail::bitwise_fp_cast< storage_type >(new_val); in negate() 70 value_type old_val = atomics::detail::bitwise_fp_cast< value_type >(s); in add() 72 s = atomics::detail::bitwise_fp_cast< storage_type >(new_val); in add() 81 value_type old_val = atomics::detail::bitwise_fp_cast< value_type >(s); in sub() 83 s = atomics::detail::bitwise_fp_cast< storage_type >(new_val); in sub()
|
D | extra_fp_ops_generic.hpp | 64 old_val = atomics::detail::bitwise_fp_cast< value_type >(old_storage); in fetch_negate() 66 new_storage = atomics::detail::bitwise_fp_cast< storage_type >(new_val); in fetch_negate() 79 old_val = atomics::detail::bitwise_fp_cast< value_type >(old_storage); in negate() 81 new_storage = atomics::detail::bitwise_fp_cast< storage_type >(new_val); in negate() 109 …return atomics::detail::bitwise_fp_cast< value_type >(base_type::fetch_xor(storage, sign_mask, ord… in fetch_negate() 114 …return atomics::detail::bitwise_fp_cast< value_type >(base_type::bitwise_xor(storage, sign_mask, o… in negate() 141 old_val = atomics::detail::bitwise_fp_cast< value_type >(old_storage); in add() 143 new_storage = atomics::detail::bitwise_fp_cast< storage_type >(new_val); in add() 156 old_val = atomics::detail::bitwise_fp_cast< value_type >(old_storage); in sub() 158 new_storage = atomics::detail::bitwise_fp_cast< storage_type >(new_val); in sub()
|
D | fp_ops_emulated.hpp | 48 value_type old_val = atomics::detail::bitwise_fp_cast< value_type >(s); in fetch_add() 50 s = atomics::detail::bitwise_fp_cast< storage_type >(new_val); in fetch_add() 59 value_type old_val = atomics::detail::bitwise_fp_cast< value_type >(s); in fetch_sub() 61 s = atomics::detail::bitwise_fp_cast< storage_type >(new_val); in fetch_sub()
|
D | fp_ops_generic.hpp | 49 old_val = atomics::detail::bitwise_fp_cast< value_type >(old_storage); in fetch_add() 51 new_storage = atomics::detail::bitwise_fp_cast< storage_type >(new_val); in fetch_add() 64 old_val = atomics::detail::bitwise_fp_cast< value_type >(old_storage); in fetch_sub() 66 new_storage = atomics::detail::bitwise_fp_cast< storage_type >(new_val); in fetch_sub()
|
D | atomic_impl.hpp | 779 …atomic(value_arg_type v) BOOST_NOEXCEPT : base_type(atomics::detail::bitwise_fp_cast< storage_type… 787 …core_operations::store(this->storage(), atomics::detail::bitwise_fp_cast< storage_type >(v), order… in store() 795 …return atomics::detail::bitwise_fp_cast< value_type >(core_operations::load(this->storage(), order… in load() 810 …return atomics::detail::bitwise_fp_cast< value_type >(core_operations::exchange(this->storage(), a… in exchange() 893 …return atomics::detail::bitwise_fp_cast< value_type >(wait_operations::wait(this->storage(), atomi… in wait() 903 …age(), reinterpret_cast< storage_type& >(expected), atomics::detail::bitwise_fp_cast< storage_type… in compare_exchange_strong_impl() 911 storage_type old_value = atomics::detail::bitwise_fp_cast< storage_type >(expected); in compare_exchange_strong_impl() 912 …compare_exchange_strong(this->storage(), old_value, atomics::detail::bitwise_fp_cast< storage_type… in compare_exchange_strong_impl() 913 expected = atomics::detail::bitwise_fp_cast< value_type >(old_value); in compare_exchange_strong_impl() 920 …age(), reinterpret_cast< storage_type& >(expected), atomics::detail::bitwise_fp_cast< storage_type… in compare_exchange_weak_impl() [all …]
|
D | atomic_ref_impl.hpp | 756 …core_operations::store(this->storage(), atomics::detail::bitwise_fp_cast< storage_type >(v), order… in store() 764 …return atomics::detail::bitwise_fp_cast< value_type >(core_operations::load(this->storage(), order… in load() 779 …return atomics::detail::bitwise_fp_cast< value_type >(core_operations::exchange(this->storage(), a… in exchange() 862 …return atomics::detail::bitwise_fp_cast< value_type >(wait_operations::wait(this->storage(), atomi… in wait() 888 …age(), reinterpret_cast< storage_type& >(expected), atomics::detail::bitwise_fp_cast< storage_type… in compare_exchange_strong_impl() 896 storage_type old_value = atomics::detail::bitwise_fp_cast< storage_type >(expected); in compare_exchange_strong_impl() 897 …compare_exchange_strong(this->storage(), old_value, atomics::detail::bitwise_fp_cast< storage_type… in compare_exchange_strong_impl() 898 expected = atomics::detail::bitwise_fp_cast< value_type >(old_value); in compare_exchange_strong_impl() 905 …age(), reinterpret_cast< storage_type& >(expected), atomics::detail::bitwise_fp_cast< storage_type… in compare_exchange_weak_impl() 913 storage_type old_value = atomics::detail::bitwise_fp_cast< storage_type >(expected); in compare_exchange_weak_impl() [all …]
|
D | atomic_template.hpp | 766 …atomic(value_arg_type v) BOOST_NOEXCEPT : m_storage(atomics::detail::bitwise_fp_cast< storage_type… 774 … operations::store(m_storage.value, atomics::detail::bitwise_fp_cast< storage_type >(v), order); in store() 782 … return atomics::detail::bitwise_fp_cast< value_type >(operations::load(m_storage.value, order)); in load() 797 …return atomics::detail::bitwise_fp_cast< value_type >(operations::exchange(m_storage.value, atomic… in exchange() 882 …value, reinterpret_cast< storage_type& >(expected), atomics::detail::bitwise_fp_cast< storage_type… in compare_exchange_strong_impl() 890 storage_type old_value = atomics::detail::bitwise_fp_cast< storage_type >(expected); in compare_exchange_strong_impl() 891 …compare_exchange_strong(m_storage.value, old_value, atomics::detail::bitwise_fp_cast< storage_type… in compare_exchange_strong_impl() 892 expected = atomics::detail::bitwise_fp_cast< value_type >(old_value); in compare_exchange_strong_impl() 899 …value, reinterpret_cast< storage_type& >(expected), atomics::detail::bitwise_fp_cast< storage_type… in compare_exchange_weak_impl() 907 storage_type old_value = atomics::detail::bitwise_fp_cast< storage_type >(expected); in compare_exchange_weak_impl() [all …]
|
D | bitwise_fp_cast.hpp | 78 BOOST_FORCEINLINE To bitwise_fp_cast(From const& from) BOOST_NOEXCEPT in bitwise_fp_cast() function
|