Lines Matching refs:dePop32
114 /* Test simple inputs for dePop32(). */
115 DE_TEST_ASSERT(dePop32(0u) == 0);
116 DE_TEST_ASSERT(dePop32(~0u) == 32);
117 DE_TEST_ASSERT(dePop32(0xFF) == 8);
118 DE_TEST_ASSERT(dePop32(0xFF00FF) == 16);
119 DE_TEST_ASSERT(dePop32(0x3333333) == 14);
120 DE_TEST_ASSERT(dePop32(0x33333333) == 16);
122 /* dePop32(): Check exp2(N) values and inverses. */
125 DE_TEST_ASSERT(dePop32(1u<<numBits) == 1);
126 DE_TEST_ASSERT(dePop32(~(1u<<numBits)) == 31);