Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dinstruction_simplifier_mips.cc76 size_t component_shift = DataType::SizeShift(packed_type); in TryExtractArrayAccessIndex() local
86 if (another_component_shift == component_shift) { in TryExtractArrayAccessIndex()
94 if (another_component_shift == component_shift) { in TryExtractArrayAccessIndex()
101 if (another_component_shift == component_shift) { in TryExtractArrayAccessIndex()
112 HIntConstant* shift = graph->GetIntConstant(component_shift); in TryExtractArrayAccessIndex()
Dinstruction_simplifier_shared.cc296 size_t component_shift = DataType::SizeShift(packed_type); in TryExtractVecArrayAccessAddress() local
308 if (another_data_offset == data_offset && another_component_shift == component_shift) { in TryExtractVecArrayAccessAddress()
316 if (another_data_offset == data_offset && another_component_shift == component_shift) { in TryExtractVecArrayAccessAddress()
329 HIntConstant* shift = graph->GetIntConstant(component_shift); in TryExtractVecArrayAccessAddress()
/art/runtime/mirror/
Darray.cc152 const auto component_shift = klass->GetComponentSizeShift(); in CopyOf() local
154 Alloc<true>(self, klass, new_length, component_shift, allocator_type); // Invalidates klass. in CopyOf()
158 std::min(h_this->GetLength(), new_length) << component_shift); in CopyOf()