Searched defs:threeLetterBase (Results 1 - 1 of 1) sorted by last modified time

/frameworks/minikin/libs/minikin/
H A DFontLanguage.cpp52 uint8_t threeLetterBase) {
58 return ((uint16_t)(c[0] - threeLetterBase) << 10) |
59 (uint16_t)(c[1] - threeLetterBase) << 5 |
60 (uint16_t)(c[2] - threeLetterBase);
65 uint8_t threeLetterBase) {
75 out[0] = first + threeLetterBase;
76 out[1] = second + threeLetterBase;
77 out[2] = third + threeLetterBase;
51 packLanguageOrRegion(const char* c, size_t length, uint8_t twoLetterBase, uint8_t threeLetterBase) argument
64 unpackLanguageOrRegion(uint16_t in, char* out, uint8_t twoLetterBase, uint8_t threeLetterBase) argument

Completed in 59 milliseconds