Home
last modified time | relevance | path

Searched refs:codepoint (Results 1 – 1 of 1) sorted by relevance

/ark/runtime_core/libpandabase/tests/
Dutf_test.cpp26 static uint16_t U16_lead(uint32_t codepoint) in U16_lead() argument
28 return ((codepoint >> 10U) + 0xd7c0) & 0xffff; in U16_lead()
31 static uint16_t U16_tail(uint32_t codepoint) in U16_tail() argument
33 return (codepoint & 0x3ff) | 0xdc00; in U16_tail()