Home
last modified time | relevance | path

Searched refs:SkCTZ_portable (Results 1 - 3 of 3) sorted by relevance

/third_party/skia/src/core/
H A DSkMathPriv.h180 constexpr int SkCTZ_portable(uint32_t x) { in SkCTZ_portable() function
184 static_assert(32 == SkCTZ_portable(0));
185 static_assert( 0 == SkCTZ_portable(1));
186 static_assert(30 == SkCTZ_portable(1 << 30));
187 static_assert( 2 == SkCTZ_portable((1 << 30) | (1 << 24) | (1 << 2)));
188 static_assert( 0 == SkCTZ_portable(~0U));
212 return SkCTZ_portable(mask); in SkCTZ()
/third_party/skia/bench/
H A DMathBench.cpp480 accum += SkCTZ_portable(fData[i]);
/third_party/skia/tests/
H A DMathTest.cpp56 int porta = SkCTZ_portable(mask); in test_ctz()

Completed in 3 milliseconds