Home
last modified time | relevance | path

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

/dports/audio/libopenmpt/libopenmpt-0.6.0+release.autotools/src/mpt/endian/tests/
H A Dtests_endian_floatingpoint.hpp46 MPT_TEST_EXPECT_EQUAL(IEEE754binary32BE(1.0f).GetInt32(), 0x3f800000u);
48 …MPT_TEST_EXPECT_EQUAL(IEEE754binary32BE(mpt::as_byte(0x3f), mpt::as_byte(0x80), mpt::as_byte(0x00)…
50 …MPT_TEST_EXPECT_EQUAL(IEEE754binary32BE(1.0f), IEEE754binary32BE(mpt::as_byte(0x3f), mpt::as_byte(…
/dports/audio/libopenmpt/libopenmpt-0.6.0+release.autotools/src/openmpt/base/
H A DEndian.hpp42 using IEEE754binary32BE = mpt::IEEE754binary_types<mpt::float_traits<float32>::is_ieee754_binary32n… typedef
58 using float32be_fast = mpt::IEEE754binary32BE;
/dports/audio/libopenmpt/libopenmpt-0.6.0+release.autotools/src/mpt/endian/
H A Dfloatingpoint.hpp379 using IEEE754binary32BE = IEEE754binary32EmulatedBE; typedef
386 using IEEE754binary32BE = IEEE754binary32EmulatedBE; typedef
393 using IEEE754binary32BE = IEEE754binary32Native<>; typedef
399 using IEEE754binary32BE = IEEE754binary_types<mpt::float_traits<float32>::is_ieee754_binary32ne, mp… typedef
404 static_assert(sizeof(IEEE754binary32BE) == 4);
425 using float32be_fast = IEEE754binary32BE;
447 using type = IEEE754binary32BE;
/dports/audio/libopenmpt/libopenmpt-0.6.0+release.autotools/src/mpt/io_read/
H A Dfilereader.hpp299 IEEE754binary32BE target; in ReadFloatBE()
/dports/audio/libopenmpt/libopenmpt-0.6.0+release.autotools/test/
H A Dtest.cpp3557 IEEE754binary32BE floatbits = IEEE754binary32BE((static_cast<float>(i) / 65536.0f) - 0.5f); in TestSampleConversion()