Searched refs:code_point (Results 1 - 11 of 11) sorted by relevance

/art/test/ti-agent/
H A Dti_utf.h94 const uint32_t code_point = ((one & 0x0f) << 18) | ((two & 0x3f) << 12) local
100 surrogate_pair |= ((code_point >> 10) + 0xd7c0) & 0xffff;
102 surrogate_pair |= ((code_point & 0x03ff) + 0xdc00) << 16;
139 const uint32_t code_point = (ch << 10) + ch2 - 0x035fdc00; local
140 *utf8_out++ = (code_point >> 18) | 0xf0;
141 *utf8_out++ = ((code_point >> 12) & 0x3f) | 0x80;
142 *utf8_out++ = ((code_point >> 6) & 0x3f) | 0x80;
143 *utf8_out++ = (code_point & 0x3f) | 0x80;
/art/runtime/
H A Dutf-inl.h59 const uint32_t code_point = ((one & 0x0f) << 18) | ((two & 0x3f) << 12) local
65 surrogate_pair |= ((code_point >> 10) + 0xd7c0) & 0xffff;
67 surrogate_pair |= ((code_point & 0x03ff) + 0xdc00) << 16;
H A Dutf.cc150 const uint32_t code_point = (ch << 10) + ch2 - 0x035fdc00; local
151 *utf8_out++ = (code_point >> 18) | 0xf0;
152 *utf8_out++ = ((code_point >> 12) & 0x3f) | 0x80;
153 *utf8_out++ = ((code_point >> 6) & 0x3f) | 0x80;
154 *utf8_out++ = (code_point & 0x3f) | 0x80;
H A Dutf_test.cc284 const uint32_t code_point = (ch << 10) + ch2 - 0x035fdc00; local
285 *utf8_out++ = (code_point >> 18) | 0xf0;
286 *utf8_out++ = ((code_point >> 12) & 0x3f) | 0x80;
287 *utf8_out++ = ((code_point >> 6) & 0x3f) | 0x80;
288 *utf8_out++ = (code_point & 0x3f) | 0x80;
309 static void codePointToSurrogatePair(uint32_t code_point, uint16_t &first, uint16_t &second) { argument
310 first = (code_point >> 10) + 0xd7c0;
311 second = (code_point & 0x03ff) + 0xdc00;
/art/compiler/optimizing/
H A Dintrinsics_arm.cc1470 HInstruction* code_point = invoke->InputAt(1); local
1471 if (code_point->IsIntConstant()) {
1472 if (static_cast<uint32_t>(code_point->AsIntConstant()->GetValue()) >
1482 } else if (code_point->GetType() != Primitive::kPrimChar) {
H A Dintrinsics_arm64.cc1671 HInstruction* code_point = invoke->InputAt(1); local
1672 if (code_point->IsIntConstant()) {
1673 if (static_cast<uint32_t>(code_point->AsIntConstant()->GetValue()) > 0xFFFFU) {
1682 } else if (code_point->GetType() != Primitive::kPrimChar) {
H A Dintrinsics_arm_vixl.cc1853 HInstruction* code_point = invoke->InputAt(1); local
1854 if (code_point->IsIntConstant()) {
1855 if (static_cast<uint32_t>(Int32ConstantFrom(code_point)) >
1865 } else if (code_point->GetType() != Primitive::kPrimChar) {
H A Dintrinsics_mips.cc2203 HInstruction* code_point = invoke->InputAt(1); local
2204 if (code_point->IsIntConstant()) {
2205 if (!IsUint<16>(code_point->AsIntConstant()->GetValue())) {
2215 } else if (code_point->GetType() != Primitive::kPrimChar) {
H A Dintrinsics_mips64.cc1818 HInstruction* code_point = invoke->InputAt(1); local
1819 if (code_point->IsIntConstant()) {
1820 if (!IsUint<16>(code_point->AsIntConstant()->GetValue())) {
1830 } else if (code_point->GetType() != Primitive::kPrimChar) {
H A Dintrinsics_x86.cc1532 HInstruction* code_point = invoke->InputAt(1); local
1533 if (code_point->IsIntConstant()) {
1534 if (static_cast<uint32_t>(code_point->AsIntConstant()->GetValue()) >
1544 } else if (code_point->GetType() != Primitive::kPrimChar) {
H A Dintrinsics_x86_64.cc1697 HInstruction* code_point = invoke->InputAt(1); local
1698 if (code_point->IsIntConstant()) {
1699 if (static_cast<uint32_t>(code_point->AsIntConstant()->GetValue()) >
1709 } else if (code_point->GetType() != Primitive::kPrimChar) {

Completed in 235 milliseconds