Home
last modified time | relevance | path

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

/art/runtime/jni/
Djni_internal.cc199 const uint32_t code_point_bits = code_point - 0x10000u; in operator ()() local
200 *value++ = 0xd800u | ((code_point_bits >> 10) & 0x3ffu); in operator ()()
201 *value++ = 0xdc00u | (code_point_bits & 0x3ffu); in operator ()()