HomeSort by relevance Sort by last modified time
    Searched refs:dePop32 (Results 1 - 5 of 5) sorted by null

  /external/deqp/framework/delibs/debase/
deInt32Test.c 89 /* Test simple inputs for dePop32(). */
90 DE_TEST_ASSERT(dePop32(0) == 0);
91 DE_TEST_ASSERT(dePop32(~0) == 32);
92 DE_TEST_ASSERT(dePop32(0xFF) == 8);
93 DE_TEST_ASSERT(dePop32(0xFF00FF) == 16);
94 DE_TEST_ASSERT(dePop32(0x3333333) == 14);
95 DE_TEST_ASSERT(dePop32(0x33333333) == 16);
97 /* dePop32(): Check exp2(N) values and inverses. */
100 DE_TEST_ASSERT(dePop32(1<<numBits) == 1);
101 DE_TEST_ASSERT(dePop32(~(1<<numBits)) == 31)
    [all...]
deInt32.h 324 DE_INLINE int dePop32 (deUint32 a)
342 return dePop32((deUint32)(a & 0xffffffffull)) + dePop32((deUint32)(a >> 32));
  /external/deqp/framework/delibs/dethread/win32/
deThreadWin32.c 172 dst->numLogicalCores += dePop32(cur->ProcessorMask);
  /external/deqp/modules/gles31/functional/
es31fShaderIntegerFunctionTests.cpp     [all...]
  /external/deqp/modules/glshared/
glsUniformBlockCase.cpp 70 DE_ASSERT(dePop32(fmt.flags & (PRECISION_LOW|PRECISION_MEDIUM|PRECISION_HIGH)) <= 1);
    [all...]

Completed in 656 milliseconds