Searched defs:FIVE_BITS (Results 1 - 1 of 1) sorted by relevance

/frameworks/minikin/libs/minikin/
H A DLocale.cpp31 constexpr uint32_t FIVE_BITS = 0x1f; member in namespace:minikin
69 uint8_t first = (in >> 10) & FIVE_BITS;
70 uint8_t second = (in >> 5) & FIVE_BITS;
71 uint8_t third = in & FIVE_BITS;
108 const uint32_t second = ((packedScript >> 10) & FIVE_BITS) + REST_LETTER_BASE;
109 const uint32_t third = ((packedScript >> 5) & FIVE_BITS) + REST_LETTER_BASE;
110 const uint32_t fourth = (packedScript & FIVE_BITS) + REST_LETTER_BASE;

Completed in 178 milliseconds