Searched refs:conditional_reverse_inplace (Results 1 – 5 of 5) sorted by relevance
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/endian/test/ |
D | conversion_test.cpp | 178 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 …]
|
D | speed_test_functions.cpp | 41 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/ |
D | conversion.hpp | 137 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/ |
D | conversion.adoc | 109 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/ |
D | udt_conversion_example.cpp | 72 conditional_reverse_inplace<order::little, order::big>(x); in main() 75 conditional_reverse_inplace(x, order::big, order::little); in main()
|