| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /*
- * Copyright 2010-2019 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bx#license-bsd-2-clause
- */
- #include "test.h"
- #include <bx/uint32_t.h>
- TEST_CASE("StrideAlign")
- {
- REQUIRE(0 == bx::strideAlign(0, 12) );
- for (uint32_t ii = 0; ii < 12; ++ii)
- {
- REQUIRE(12 == bx::strideAlign(ii+1, 12) );
- }
- REQUIRE(0 == bx::strideAlign<16>(0, 12) );
- for (uint32_t ii = 0; ii < 12; ++ii)
- {
- REQUIRE(48 == bx::strideAlign<16>(ii+1, 12) );
- }
- uint32_t offset = 11;
- offset = bx::strideAlign(offset, 32);
- REQUIRE(offset == 32);
- offset = bx::strideAlign(offset, 24);
- REQUIRE(offset == 48);
- }
- TEST_CASE("uint32_cnt")
- {
- REQUIRE( 0 == bx::uint32_cnttz(UINT32_C(1) ) );
- REQUIRE(31 == bx::uint32_cntlz(UINT32_C(1) ) );
- REQUIRE( 0 == bx::uint64_cnttz(UINT64_C(1) ) );
- REQUIRE(63 == bx::uint64_cntlz(UINT64_C(1) ) );
- REQUIRE( 1 == bx::uint32_cntbits(1) );
- REQUIRE(16 == bx::uint32_cntbits(UINT16_MAX) );
- REQUIRE(32 == bx::uint32_cntbits(UINT32_MAX) );
- }
- TEST_CASE("uint32_part")
- {
- REQUIRE(UINT32_C(0x55555555) == bx::uint32_part1by1(UINT16_MAX) );
- REQUIRE(UINT32_C(0x09249249) == bx::uint32_part1by2(0x3ff) );
- }
- TEST_CASE("halfTo/FromFloat", "")
- {
- for (uint32_t ii = 0; ii < 0x7c00; ++ii)
- {
- const uint16_t orig = uint16_t(ii);
- const float htf = bx::halfToFloat(orig);
- const uint16_t hff = bx::halfFromFloat(htf);
- REQUIRE(orig == hff);
- }
- for (uint32_t ii = 0x8000; ii < 0xfc00; ++ii)
- {
- const uint16_t orig = uint16_t(ii);
- const float htf = bx::halfToFloat(orig);
- const uint16_t hff = bx::halfFromFloat(htf);
- REQUIRE(orig == hff);
- }
- }
- TEST_CASE("uint32_testpow2", "")
- {
- uint32_t shift = 0;
- for (uint32_t ii = 0; ii < UINT32_MAX; ++ii)
- {
- if (bx::uint32_testpow2(ii) )
- {
- REQUIRE(ii == 1u << shift);
- ++shift;
- }
- }
- }
- TEST_CASE("uint32_roX", "")
- {
- REQUIRE(bx::uint32_rol(0x80000000, 1) == 1);
- REQUIRE(bx::uint32_ror(1, 1) == 0x80000000);
- }
- TEST_CASE("uint64_roX", "")
- {
- REQUIRE(bx::uint64_rol(0x8000000000000000, 1) == 1);
- REQUIRE(bx::uint64_ror(1, 1) == 0x8000000000000000);
- }
|