Home
last modified time | relevance | path

Searched refs:conditional_reverse_inplace (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/endian/test/
Dconversion_test.cpp178 x = big; be::conditional_reverse_inplace<be::order::big, be::order::big>(x); in test()
180 x = little; be::conditional_reverse_inplace<be::order::little, be::order::little>(x); in test()
182 x = native; be::conditional_reverse_inplace<be::order::native, be::order::native>(x); in test()
184 x = big; be::conditional_reverse_inplace<be::order::big, be::order::little>(x); in test()
186 x = big; be::conditional_reverse_inplace<be::order::big, be::order::native>(x); in test()
188 x = little; be::conditional_reverse_inplace<be::order::little, be::order::big>(x); in test()
190 x = little; be::conditional_reverse_inplace<be::order::little, be::order::native>(x); in test()
192 x = native; be::conditional_reverse_inplace<be::order::native, be::order::big>(x); in test()
194 x = native; be::conditional_reverse_inplace<be::order::native, be::order::little>(x); in test()
199 be::conditional_reverse_inplace(x, be::order::big, be::order::big); in test()
[all …]
Dspeed_test_functions.cpp41 conditional_reverse_inplace<order::native, order::big>(x); return x; in return_x_inplace_big_int16()
45 conditional_reverse_inplace<order::native, order::little>(x); return x; in return_x_inplace_little_int16()
64 conditional_reverse_inplace<order::native, order::big>(x); return x; in return_x_inplace_big_int32()
68 conditional_reverse_inplace<order::native, order::little>(x); return x; in return_x_inplace_little_int32()
87 conditional_reverse_inplace<order::native, order::big>(x); return x; in return_x_inplace_big_int64()
91 conditional_reverse_inplace<order::native, order::little>(x); return x; in return_x_inplace_little_int64()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/endian/include/boost/endian/
Dconversion.hpp137 inline void conditional_reverse_inplace(EndianReversibleInplace& x) BOOST_NOEXCEPT;
141 inline void conditional_reverse_inplace(EndianReversibleInplace& x,
212 boost::endian::conditional_reverse_inplace<order::big, order::native>( x ); in big_to_native_inplace()
218 boost::endian::conditional_reverse_inplace<order::native, order::big>( x ); in native_to_big_inplace()
224 boost::endian::conditional_reverse_inplace<order::little, order::native>( x ); in little_to_native_inplace()
230 boost::endian::conditional_reverse_inplace<order::native, order::little>( x ); in native_to_little_inplace()
251 inline void conditional_reverse_inplace( EndianReversibleInplace& x ) BOOST_NOEXCEPT in conditional_reverse_inplace() function
263 inline void conditional_reverse_inplace( EndianReversibleInplace& x, in conditional_reverse_inplace() function
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/endian/doc/endian/
Dconversion.adoc109 void conditional_reverse_inplace(EndianReversibleInplace& x) noexcept;
111 void conditional_reverse_inplace(EndianReversibleInplace& x,
387 Effects:: `conditional_reverse_inplace<order::big, order::native>(x)`.
396 Effects:: `conditional_reverse_inplace<order::native, order::big>(x)`.
405 Effects:: `conditional_reverse_inplace<order::little, order::native>(x)`.
414 Effects:: `conditional_reverse_inplace<order::native, order::little>(x)`.
418 void conditional_reverse_inplace(EndianReversibleInplace& x) noexcept;
428 void conditional_reverse_inplace(EndianReversibleInplace& x,
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/endian/example/
Dudt_conversion_example.cpp72 conditional_reverse_inplace<order::little, order::big>(x); in main()
75 conditional_reverse_inplace(x, order::big, order::little); in main()