Home
last modified time | relevance | path

Searched refs:SkCTZ (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/src/core/
DSkMathPriv.h193 static inline int SkCTZ(uint32_t mask) { in SkCTZ() function
206 static inline int SkCTZ(uint32_t mask) { in SkCTZ() function
211 static inline int SkCTZ(uint32_t mask) { in SkCTZ() function
/third_party/skia/src/utils/
DSkBitSet.h102 const size_t bitIndex = i * kChunkBits + SkCTZ(chunk); in findFirst()
116 const size_t bitIndex = i * kChunkBits + SkCTZ(chunk); in findFirstUnset()
/third_party/skia/tests/
DMathTest.cpp43 REPORTER_ASSERT(reporter, 32 == SkCTZ(0)); in test_ctz()
44 REPORTER_ASSERT(reporter, 0 == SkCTZ(1)); in test_ctz()
45 REPORTER_ASSERT(reporter, 30 == SkCTZ(1 << 30)); in test_ctz()
46 REPORTER_ASSERT(reporter, 2 == SkCTZ((1 << 30) | (1 << 24) | (1 << 2))); in test_ctz()
47 REPORTER_ASSERT(reporter, 0 == SkCTZ(~0U)); in test_ctz()
55 int intri = SkCTZ(mask); in test_ctz()
/third_party/skia/bench/
DMathBench.cpp487 accum += SkCTZ(fData[i]); in onDraw()