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

  /external/skia/src/gl/
SkGLTextCache.cpp 15 fStrikeWidthShift = SkNextLog2(fStrikeWidth);
16 fStrikeHeightShift = SkNextLog2(fStrikeHeight);
157 size_t index = SkNextLog2(glyph.fHeight);
176 size_t index = SkNextLog2(glyph.fHeight);
SkGL.cpp 313 max->fX = SkFixedToScalar(bitmap->width() << (16 - SkNextLog2(nw)));
314 max->fY = SkFixedToScalar(oh << (16 - SkNextLog2(nh)));
SkGLDevice.cpp 470 max.set(SkFixedToScalar(w << (16 - SkNextLog2(bm.rowBytesAsPixels()))),
471 SkFixedToScalar(h << (16 - SkNextLog2(h))));
  /external/skia/include/core/
SkMath.h 153 SkNextLog2(1) -> 0
154 SkNextLog2(2) -> 1
155 SkNextLog2(3) -> 2
156 SkNextLog2(4) -> 2
157 SkNextLog2(5) -> 3
159 static inline int SkNextLog2(uint32_t value) {
  /external/skia/src/images/
SkImageDecoder_libpng.cpp 638 int bits = SkNextLog2(colorCount);

Completed in 314 milliseconds