Searched refs:codepoint (Results 1 – 1 of 1) sorted by relevance
26 static uint16_t U16_lead(uint32_t codepoint) in U16_lead() argument28 return ((codepoint >> 10U) + 0xd7c0) & 0xffff; in U16_lead()31 static uint16_t U16_tail(uint32_t codepoint) in U16_tail() argument33 return (codepoint & 0x3ff) | 0xdc00; in U16_tail()