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

  /external/skia/include/core/
SkUtils.h 62 int SkUTF8_LeadByteToCount(unsigned c);
64 #define SkUTF8_LeadByteToCount(c) ((((0xE5 << 24) >> ((unsigned)c >> 4 << 1)) & 3) + 1)
70 return SkUTF8_LeadByteToCount(*(const uint8_t*)utf8);
  /external/skia/src/core/
SkUtils.cpp 168 int SkUTF8_LeadByteToCount(unsigned c)
189 utf8 += SkUTF8_LeadByteToCount(c);
204 utf8 += SkUTF8_LeadByteToCount(*(const uint8_t*)utf8);

Completed in 22 milliseconds