OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SkUTF8_LeadByteToCount
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/skia/include/core/
SkUtils.h
46
int
SkUTF8_LeadByteToCount
(unsigned c);
48
#define
SkUTF8_LeadByteToCount
(c) ((((0xE5 << 24) >> ((unsigned)c >> 4 << 1)) & 3) + 1)
53
return
SkUTF8_LeadByteToCount
(*(const uint8_t*)utf8);
/external/skia/include/core/
SkUtils.h
46
int
SkUTF8_LeadByteToCount
(unsigned c);
48
#define
SkUTF8_LeadByteToCount
(c) ((((0xE5 << 24) >> ((unsigned)c >> 4 << 1)) & 3) + 1)
53
return
SkUTF8_LeadByteToCount
(*(const uint8_t*)utf8);
/external/chromium_org/third_party/skia/src/core/
SkUtils.cpp
146
int
SkUTF8_LeadByteToCount
(unsigned c) {
164
utf8 +=
SkUTF8_LeadByteToCount
(c);
177
utf8 +=
SkUTF8_LeadByteToCount
(*(const uint8_t*)utf8);
/external/skia/src/core/
SkUtils.cpp
146
int
SkUTF8_LeadByteToCount
(unsigned c) {
164
utf8 +=
SkUTF8_LeadByteToCount
(c);
177
utf8 +=
SkUTF8_LeadByteToCount
(*(const uint8_t*)utf8);
Completed in 32 milliseconds