Searched refs:code_point_bits (Results 1 – 1 of 1) sorted by relevance
199 const uint32_t code_point_bits = code_point - 0x10000u; in operator ()() local200 *value++ = 0xd800u | ((code_point_bits >> 10) & 0x3ffu); in operator ()()201 *value++ = 0xdc00u | (code_point_bits & 0x3ffu); in operator ()()