Searched refs:code_point (Results 1 - 10 of 10) 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/libdexfile/dex/
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.cc155 const uint32_t code_point = (ch << 10) + ch2 - 0x035fdc00; local
156 *utf8_out++ = (code_point >> 18) | 0xf0;
157 *utf8_out++ = ((code_point >> 12) & 0x3f) | 0x80;
158 *utf8_out++ = ((code_point >> 6) & 0x3f) | 0x80;
159 *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_arm64.cc1721 HInstruction* code_point = invoke->InputAt(1); local
1722 if (code_point->IsIntConstant()) {
1723 if (static_cast<uint32_t>(code_point->AsIntConstant()->GetValue()) > 0xFFFFU) {
1732 } else if (code_point->GetType() != DataType::Type::kUint16) {
H A Dintrinsics_arm_vixl.cc1969 HInstruction* code_point = invoke->InputAt(1); local
1970 if (code_point->IsIntConstant()) {
1971 if (static_cast<uint32_t>(Int32ConstantFrom(code_point)) >
1981 } else if (code_point->GetType() != DataType::Type::kUint16) {
H A Dintrinsics_mips.cc2205 HInstruction* code_point = invoke->InputAt(1); local
2206 if (code_point->IsIntConstant()) {
2207 if (!IsUint<16>(code_point->AsIntConstant()->GetValue())) {
2217 } else if (code_point->GetType() != DataType::Type::kUint16) {
H A Dintrinsics_mips64.cc1775 HInstruction* code_point = invoke->InputAt(1); local
1776 if (code_point->IsIntConstant()) {
1777 if (!IsUint<16>(code_point->AsIntConstant()->GetValue())) {
1787 } else if (code_point->GetType() != DataType::Type::kUint16) {
H A Dintrinsics_x86.cc1526 HInstruction* code_point = invoke->InputAt(1); local
1527 if (code_point->IsIntConstant()) {
1528 if (static_cast<uint32_t>(code_point->AsIntConstant()->GetValue()) >
1538 } else if (code_point->GetType() != DataType::Type::kUint16) {
H A Dintrinsics_x86_64.cc1695 HInstruction* code_point = invoke->InputAt(1); local
1696 if (code_point->IsIntConstant()) {
1697 if (static_cast<uint32_t>(code_point->AsIntConstant()->GetValue()) >
1707 } else if (code_point->GetType() != DataType::Type::kUint16) {

Completed in 125 milliseconds